diff --git a/.gitignore b/.gitignore index 2d773071..c2f5477a 100644 --- a/.gitignore +++ b/.gitignore @@ -24,4 +24,6 @@ spark-warehouse /**/job-override.properties /**/*.log +.svn +/**/.svn diff --git a/dhp-broker-application/.svn/entries b/dhp-broker-application/.svn/entries deleted file mode 100644 index 48082f72..00000000 --- a/dhp-broker-application/.svn/entries +++ /dev/null @@ -1 +0,0 @@ -12 diff --git a/dhp-broker-application/.svn/format b/dhp-broker-application/.svn/format deleted file mode 100644 index 48082f72..00000000 --- a/dhp-broker-application/.svn/format +++ /dev/null @@ -1 +0,0 @@ -12 diff --git a/dhp-broker-application/.svn/pristine/00/0032a116a51956fa833f19f41a8a3db8cc84d895.svn-base b/dhp-broker-application/.svn/pristine/00/0032a116a51956fa833f19f41a8a3db8cc84d895.svn-base deleted file mode 100644 index ebccd578..00000000 --- a/dhp-broker-application/.svn/pristine/00/0032a116a51956fa833f19f41a8a3db8cc84d895.svn-base +++ /dev/null @@ -1,56 +0,0 @@ -package eu.dnetlib.lbs.openaire; - -import java.util.Date; -import java.util.List; - -import org.apache.commons.lang3.StringUtils; -import org.apache.commons.lang3.math.NumberUtils; -import org.elasticsearch.index.query.BoolQueryBuilder; -import org.elasticsearch.index.query.Operator; -import org.elasticsearch.index.query.QueryBuilders; -import org.elasticsearch.index.search.MatchQuery.ZeroTermsQuery; - -import eu.dnetlib.lbs.utils.DateParser; - -public class ElasticSearchQueryUtils { - - public static void addMapConditionForTrust(final BoolQueryBuilder mapQuery, final String field, final Range trust) { - final double min = NumberUtils.toDouble(trust.getMin(), 0); - final double max = NumberUtils.toDouble(trust.getMax(), 1); - mapQuery.must(QueryBuilders.rangeQuery(field).from(min).to(max)); - } - - public static void addMapCondition(final BoolQueryBuilder mapQuery, final String field, final String value) { - if (StringUtils.isNotBlank(value)) { - mapQuery.must(QueryBuilders.matchQuery(field, value).operator(Operator.AND).zeroTermsQuery(ZeroTermsQuery.ALL)); - } - } - - public static void addMapCondition(final BoolQueryBuilder mapQuery, final String field, final List list) { - if (list != null && list.size() > 0) { - final BoolQueryBuilder listQuery = QueryBuilders.boolQuery(); - for (final String s : list) { - listQuery.should(QueryBuilders.matchQuery(field, s).operator(Operator.AND).zeroTermsQuery(ZeroTermsQuery.ALL)); - } - mapQuery.must(listQuery); - } - } - - public static void addMapConditionForDates(final BoolQueryBuilder mapQuery, final String field, final List list) { - if (list != null && list.size() > 0) { - final BoolQueryBuilder listQuery = QueryBuilders.boolQuery(); - for (final Range range : list) { - final long min = calculateTime(range.getMin(), 0); - final long max = calculateTime(range.getMax(), Long.MAX_VALUE); - - listQuery.should(QueryBuilders.rangeQuery(field).from(min).to(max)); - } - mapQuery.must(listQuery); - } - } - - public static long calculateTime(final String s, final long defaultValue) { - final Date date = DateParser.parse(s); - return date != null ? date.getTime() : defaultValue; - } -} diff --git a/dhp-broker-application/.svn/pristine/00/0033b7c8cd5d64ef07cc8435a095379dcbc1431d.svn-base b/dhp-broker-application/.svn/pristine/00/0033b7c8cd5d64ef07cc8435a095379dcbc1431d.svn-base deleted file mode 100644 index 4e46fbd0..00000000 --- a/dhp-broker-application/.svn/pristine/00/0033b7c8cd5d64ef07cc8435a095379dcbc1431d.svn-base +++ /dev/null @@ -1,46 +0,0 @@ -package eu.dnetlib.lbs.controllers.objects; - -public class BufferStatus implements Comparable { - - private final String name; - private final long size; - private final long lost; - private final long skipped; - private final long invalid; - - public BufferStatus(final String name, final long size, final long lost, final long skipped, final long invalid) { - this.name = name; - this.size = size; - this.lost = lost; - this.skipped = skipped; - this.invalid = invalid; - } - - public String getName() { - return this.name; - } - - public long getSize() { - return this.size; - } - - public long getLost() { - return this.lost; - } - - public long getSkipped() { - return this.skipped; - } - - public long getInvalid() { - return this.invalid; - } - - @Override - public int compareTo(final BufferStatus o) { - if (this.name == null) { return -1; } - if (o.name == null) { return 1; } - return this.name.compareTo(o.name); - } - -} diff --git a/dhp-broker-application/.svn/pristine/00/004ccc58de5662f93077d9db9a6277fe5a90f036.svn-base b/dhp-broker-application/.svn/pristine/00/004ccc58de5662f93077d9db9a6277fe5a90f036.svn-base deleted file mode 100644 index efc03097..00000000 --- a/dhp-broker-application/.svn/pristine/00/004ccc58de5662f93077d9db9a6277fe5a90f036.svn-base +++ /dev/null @@ -1,50 +0,0 @@ -package eu.dnetlib.lbs.controllers; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.DeleteMapping; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; - -import eu.dnetlib.lbs.LiteratureBrokerServiceConfiguration; -import eu.dnetlib.lbs.elasticsearch.Notification; -import eu.dnetlib.lbs.elasticsearch.NotificationRepository; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; - -@RestController -@RequestMapping("/api/notifications") -@Api(tags = LiteratureBrokerServiceConfiguration.TAG_NOTIFICATIONS) -public class NotificationsController extends AbstractLbsController { - - @Autowired - private NotificationRepository notificationRepository; - - @ApiOperation("Return a notification by ID") - @GetMapping("/{id}") - public Notification getNotification(@PathVariable final String id) { - return notificationRepository.findById(id).get(); - } - - @ApiOperation("Delete a notification by ID") - @DeleteMapping("/{id}") - public void deleteNotification(@PathVariable final String id) { - notificationRepository.deleteById(id); - } - - @ApiOperation("Save a notification by ID") - @PostMapping("/{id}") - public Notification saveNotification(@RequestBody final Notification notification) { - return notificationRepository.save(notification); - } - - @ApiOperation("Delete all notifications") - @DeleteMapping("") - public void deleteAllNotifications() { - notificationRepository.deleteAll(); - } - -} diff --git a/dhp-broker-application/.svn/pristine/00/00975414b082fc19212ecacd6146e4d3908b4c5e.svn-base b/dhp-broker-application/.svn/pristine/00/00975414b082fc19212ecacd6146e4d3908b4c5e.svn-base deleted file mode 100644 index 38e2b847..00000000 --- a/dhp-broker-application/.svn/pristine/00/00975414b082fc19212ecacd6146e4d3908b4c5e.svn-base +++ /dev/null @@ -1,24 +0,0 @@ -package eu.dnetlib.lbs.elasticsearch; - -import org.springframework.data.domain.Page; -import org.springframework.data.domain.Pageable; -import org.springframework.data.elasticsearch.repository.ElasticsearchRepository; - -public interface NotificationRepository extends ElasticsearchRepository { - // TODO: use the @Query annotation if necessary - // See: http://docs.spring.io/spring-data/elasticsearch/docs/current/reference/html/ - - Iterable findBySubscriptionId(String subscriptionId); - - @Override - Page findAll(Pageable pageable); - - Page findByEventId(String topic, Pageable pageable); - - long deleteByDateBefore(long date); - - long countBySubscriptionId(String subscriptionId); - - void deleteBySubscriptionId(String subscriptionId); - -} diff --git a/dhp-broker-application/.svn/pristine/0a/0a3701659fe69e0027bfbfbd3bfabe2b825e5429.svn-base b/dhp-broker-application/.svn/pristine/0a/0a3701659fe69e0027bfbfbd3bfabe2b825e5429.svn-base deleted file mode 100644 index 63c436e4..00000000 --- a/dhp-broker-application/.svn/pristine/0a/0a3701659fe69e0027bfbfbd3bfabe2b825e5429.svn-base +++ /dev/null @@ -1,108 +0,0 @@ -

Topic typologies

- -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - -
IDNameProducer IDTopic expressionTopic regexRequired map fields
No topic types
{{t.id}}{{t.name}}{{t.producerId}}{{t.expression}}{{t.regex}}{{t.mapKeys}}
- - diff --git a/dhp-broker-application/.svn/pristine/0a/0a7611517a47075de9327eabdc2157c7c698f636.svn-base b/dhp-broker-application/.svn/pristine/0a/0a7611517a47075de9327eabdc2157c7c698f636.svn-base deleted file mode 100644 index d1535ff2..00000000 --- a/dhp-broker-application/.svn/pristine/0a/0a7611517a47075de9327eabdc2157c7c698f636.svn-base +++ /dev/null @@ -1,45 +0,0 @@ -package eu.dnetlib.lbs.integration; - -import org.junit.Ignore; -import org.junit.Test; -import org.springframework.web.client.RestTemplate; - -import eu.dnetlib.broker.objects.OpenAireEventPayload; -import eu.dnetlib.lbs.openaire.ScrollPage; - -public class ScrollTest { - - private static final String baseUrl = "http://..."; - // private static final String baseUrl = "http://broker1-dev-dnet.d4science.org:8080"; // DEV - // private static final String baseUrl = "http://lbs.openaire.eu:8080"; // PRODUCTION - - private static final String subscriptionId = "sub-c9767c84-3597-462b-803b-2d3e09de44c4"; - - @Test - @Ignore - public void testScroll() { - - int total = 0; - - ScrollPage page = getPage(baseUrl + "/api/openaireBroker/scroll/notifications/start/ " + subscriptionId); - total += page.getValues().size(); - - while (!page.isCompleted()) { - page = getPage(baseUrl + "/api/openaireBroker/scroll/notifications/ " + page.getId()); - total += page.getValues().size(); - for (final OpenAireEventPayload p : page.getValues()) { - // DO SOMETHING - } - } - - System.out.println("\nTOTAL: " + total); - } - - private ScrollPage getPage(final String url) { - System.out.println(url); - final ScrollPage p = new RestTemplate().getForObject(url, ScrollPage.class); - System.out.println("Page size: " + p.getValues().size()); - return p; - } - -} diff --git a/dhp-broker-application/.svn/pristine/0b/0b11ab2267351dbe7a1bdf9d6e90b1ccaf78d8c9.svn-base b/dhp-broker-application/.svn/pristine/0b/0b11ab2267351dbe7a1bdf9d6e90b1ccaf78d8c9.svn-base deleted file mode 100644 index e536f79d..00000000 --- a/dhp-broker-application/.svn/pristine/0b/0b11ab2267351dbe7a1bdf9d6e90b1ccaf78d8c9.svn-base +++ /dev/null @@ -1,126 +0,0 @@ -package eu.dnetlib.lbs.topics; - -import java.util.Set; -import java.util.function.Predicate; -import java.util.regex.Pattern; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.Id; -import javax.persistence.Table; - -import org.apache.commons.lang3.StringUtils; - -import com.google.common.base.Joiner; -import com.google.common.base.Splitter; -import com.google.common.collect.Sets; - -import eu.dnetlib.lbs.elasticsearch.Event; - -@Entity(name = "topic_types") -@Table(name = "topic_types") -public class TopicType { - - @Id - @Column(name = "id") - private String id; - - @Column(name = "name", nullable = false, unique = true) - private String name; - - @Column(name = "expression", length = 4096, unique = true, nullable = false) - private String expression; - - @Column(name = "regex", length = 4096, unique = true, nullable = false) - private String regex; - - @Column(name = "producerId", length = 4096) - private String producerId; - - @Column(name = "mapKeys", length = 4096) - private String mapKeys; - - public TopicType() {} - - public TopicType(final String id, final String name, final String expression, final String producerId, final String mapKeys) { - this.id = id; - this.name = name; - this.expression = expression; - this.producerId = producerId; - this.mapKeys = mapKeys; - updateRegex(); - } - - public TopicType(final String id, final String name, final String expression, final String producerId, final Set mapKeys) { - this(id, name, expression, producerId, Joiner.on(",").join(mapKeys)); - } - - public String getId() { - return this.id; - } - - public void setId(final String id) { - this.id = id; - } - - public String getName() { - return this.name; - } - - public void setName(final String name) { - this.name = name; - } - - public String getProducerId() { - return this.producerId; - } - - public void setProducerId(final String producerId) { - this.producerId = producerId; - } - - public String getMapKeys() { - return this.mapKeys; - } - - public void setMapKeys(final Set mapKeys) { - this.mapKeys = Joiner.on(",").join(mapKeys); - } - - public Set getMapKeysAsSet() { - return Sets.newHashSet(Splitter.on(",").trimResults().omitEmptyStrings().split(this.mapKeys)); - } - - public void setMapKeys(final String mapKeys) { - this.mapKeys = mapKeys; - } - - public String getExpression() { - return this.expression; - } - - public void setExpression(final String expression) { - this.expression = expression; - updateRegex(); - } - - private void updateRegex() { - this.regex = "^" + this.expression.replaceAll("<[a-zA-Z0-9._-]+>", "[a-zA-Z0-9._-]+").replaceAll("\\/", "\\\\/").trim() + "$"; - } - - public String getRegex() { - return this.regex; - } - - public Predicate asValidator() { - final Predicate p = Pattern.compile(getRegex()).asPredicate(); - final Set keys = getMapKeysAsSet(); - return e -> e != null - && StringUtils.isNotBlank(e.getTopic()) - && p.test(e.getTopic()) - && (StringUtils.isBlank(TopicType.this.producerId) || - TopicType.this.producerId.equals(e.getProducerId())) - && e.getMap().keySet().containsAll(keys); - } - -} diff --git a/dhp-broker-application/.svn/pristine/0b/0ba611e0d91af36e62a8dec51028f9da9d074985.svn-base b/dhp-broker-application/.svn/pristine/0b/0ba611e0d91af36e62a8dec51028f9da9d074985.svn-base deleted file mode 100644 index d1267dfc..00000000 --- a/dhp-broker-application/.svn/pristine/0b/0ba611e0d91af36e62a8dec51028f9da9d074985.svn-base +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - {{description}} {{alert}} - - diff --git a/dhp-broker-application/.svn/pristine/11/11a68f3ba52270300c16b36b3dfe39f1180075b1.svn-base b/dhp-broker-application/.svn/pristine/11/11a68f3ba52270300c16b36b3dfe39f1180075b1.svn-base deleted file mode 100644 index 97816739..00000000 --- a/dhp-broker-application/.svn/pristine/11/11a68f3ba52270300c16b36b3dfe39f1180075b1.svn-base +++ /dev/null @@ -1,104 +0,0 @@ -package eu.dnetlib.lbs.events.input; - -import java.io.IOException; - -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; - -import com.rabbitmq.client.AMQP; -import com.rabbitmq.client.Channel; -import com.rabbitmq.client.Connection; -import com.rabbitmq.client.ConnectionFactory; -import com.rabbitmq.client.DefaultConsumer; -import com.rabbitmq.client.Envelope; - -import eu.dnetlib.lbs.elasticsearch.Event; -import eu.dnetlib.lbs.utils.LbsQueue; - -public class RabbitMQConsumer implements Runnable { - - private final String queue; - private final String host; - private final int port; - private final String username; - private final String password; - private final LbsQueue localQueue; - - private static final Log log = LogFactory.getLog(RabbitMQConsumer.class); - - public RabbitMQConsumer(final String queue, final String host, final int port, final String username, final String password, - final LbsQueue localQueue) { - super(); - this.queue = queue; - this.host = host; - this.port = port; - this.username = username; - this.password = password; - this.localQueue = localQueue; - } - - @Override - public void run() { - final ConnectionFactory factory = new ConnectionFactory(); - factory.setHost(this.host); - factory.setPort(this.port); - factory.setUsername(this.username); - factory.setPassword(this.password); - factory.setAutomaticRecoveryEnabled(true); - - log.info("Starting rabbitMQ consumer: " + Thread.currentThread().getName()); - - try { - final Connection connection = factory.newConnection(); - final Channel channel = connection.createChannel(); - final DefaultConsumer consumer = new DefaultConsumer(channel) { - - @Override - public void handleDelivery(final String consumerTag, - final Envelope envelope, - final AMQP.BasicProperties properties, - final byte[] body) - throws IOException { - - try { - getLocalQueue().offer(new String(body, "UTF-8")); - } catch (final Throwable e) { - log.error("Error processing event", e); - } finally { - getChannel().basicAck(envelope.getDeliveryTag(), false); - } - } - }; - - channel.queueDeclare(this.queue, true, false, false, null); - channel.basicConsume(this.queue, false, consumer); - } catch (final Exception e) { - log.error("Error creating consumer", e); - } - } - - public String getQueue() { - return this.queue; - } - - public String getHost() { - return this.host; - } - - public int getPort() { - return this.port; - } - - public String getUsername() { - return this.username; - } - - public String getPassword() { - return this.password; - } - - public LbsQueue getLocalQueue() { - return this.localQueue; - } - -} diff --git a/dhp-broker-application/.svn/pristine/13/137c70495c3fc853b70dd691c1da39790ba7ce48.svn-base b/dhp-broker-application/.svn/pristine/13/137c70495c3fc853b70dd691c1da39790ba7ce48.svn-base deleted file mode 100644 index 330a9699..00000000 --- a/dhp-broker-application/.svn/pristine/13/137c70495c3fc853b70dd691c1da39790ba7ce48.svn-base +++ /dev/null @@ -1,84 +0,0 @@ -package eu.dnetlib.lbs.controllers; - -import java.util.Arrays; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.UUID; -import java.util.function.Predicate; -import java.util.regex.Pattern; - -import org.apache.commons.lang3.StringUtils; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.DeleteMapping; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; - -import eu.dnetlib.lbs.LiteratureBrokerServiceConfiguration; -import eu.dnetlib.lbs.topics.TopicType; -import eu.dnetlib.lbs.topics.TopicTypeRepository; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; - -@RestController -@RequestMapping("/api/topic-types") -@Api(tags = LiteratureBrokerServiceConfiguration.TAG_TOPIC_TYPES) -public class TopicsController extends AbstractLbsController { - - @Autowired - private TopicTypeRepository topicTypeRepo; - - private final Predicate verifyExpression = - Pattern.compile("^([a-zA-Z0-9._-]+|<[a-zA-Z0-9._-]+>)(\\/([a-zA-Z0-9._-]+|<[a-zA-Z0-9._-]+>))+$").asPredicate(); - - @ApiOperation("Return the list of topic types") - @GetMapping("") - public Iterable listTopicTypes() { - return topicTypeRepo.findAll(); - } - - @ApiOperation("Register a new topic type") - @PostMapping("/add") - public TopicType registerTopicType(@RequestParam final String name, - @RequestParam final String expression, - @RequestParam final String producerId, - @RequestParam final String mapKeys) { - - if (StringUtils.isBlank(name)) { throw new IllegalArgumentException("name is empty"); } - if (StringUtils.isBlank(expression)) { throw new IllegalArgumentException("expression is empty"); } - if (!verifyExpression.test(expression)) { throw new IllegalArgumentException("Invalid expression: " + expression); } - - final String id = "tt-" + UUID.randomUUID(); - final TopicType type = new TopicType(id, name, expression, producerId, mapKeys); - - topicTypeRepo.save(type); - - return type; - } - - @ApiOperation("Return a topic type by ID") - @GetMapping("/{id}") - public TopicType getTopicType(@PathVariable final String id) { - return topicTypeRepo.findById(id).get(); - } - - @ApiOperation("Delete a topic type by ID") - @DeleteMapping("/{id}") - public List deleteTopicType(@PathVariable final String id) { - topicTypeRepo.deleteById(id); - return Arrays.asList("Done."); - } - - @ApiOperation("Delete all topic types") - @DeleteMapping("") - public Map clearTopicTypes() { - final Map res = new HashMap<>(); - topicTypeRepo.deleteAll(); - res.put("deleted", "all"); - return res; - } -} diff --git a/dhp-broker-application/.svn/pristine/13/13be95c9941755249e14aa1fd187462bf297f6da.svn-base b/dhp-broker-application/.svn/pristine/13/13be95c9941755249e14aa1fd187462bf297f6da.svn-base deleted file mode 100644 index 75b69940..00000000 --- a/dhp-broker-application/.svn/pristine/13/13be95c9941755249e14aa1fd187462bf297f6da.svn-base +++ /dev/null @@ -1,116 +0,0 @@ -package eu.dnetlib.lbs.elasticsearch; - -import java.util.Map; - -import org.springframework.data.annotation.Id; -import org.springframework.data.elasticsearch.annotations.Document; -import org.springframework.data.elasticsearch.annotations.Field; -import org.springframework.data.elasticsearch.annotations.FieldType; - -@Document(indexName = "#{elasticSearchProperties.eventsIndexName}", type = "#{elasticSearchProperties.eventsIndexType}") -public class Event { - - @Id - private String eventId; - - @Field(type = FieldType.Keyword) - private String producerId; - - @Field(type = FieldType.Keyword) - private String topic; - - @Field(type = FieldType.Text) - private String payload; - - @Field(type = FieldType.Long) - private Long creationDate; - - @Field(type = FieldType.Long) - private Long expiryDate; - - @Field(type = FieldType.Boolean) - private boolean instantMessage; - - @Field(type = FieldType.Nested) - private Map map; - - public Event() {} - - public Event(final String producerId, final String eventId, final String topic, final String payload, final Long creationDate, final Long expiryDate, - final boolean instantMessage, - final Map map) { - this.producerId = producerId; - this.eventId = eventId; - this.topic = topic; - this.payload = payload; - this.creationDate = creationDate; - this.expiryDate = expiryDate; - this.instantMessage = instantMessage; - this.map = map; - } - - public String getProducerId() { - return producerId; - } - - public void setProducerId(final String producerId) { - this.producerId = producerId; - } - - public String getEventId() { - return eventId; - } - - public void setEventId(final String eventId) { - this.eventId = eventId; - } - - public String getTopic() { - return topic; - } - - public void setTopic(final String topic) { - this.topic = topic; - } - - public String getPayload() { - return payload; - } - - public void setPayload(final String payload) { - this.payload = payload; - } - - public Long getCreationDate() { - return creationDate; - } - - public void setCreationDate(final Long creationDate) { - this.creationDate = creationDate; - } - - public Long getExpiryDate() { - return expiryDate; - } - - public void setExpiryDate(final Long expiryDate) { - this.expiryDate = expiryDate; - } - - public boolean isInstantMessage() { - return instantMessage; - } - - public void setInstantMessage(final boolean instantMessage) { - this.instantMessage = instantMessage; - } - - public Map getMap() { - return map; - } - - public void setMap(final Map map) { - this.map = map; - } - -} diff --git a/dhp-broker-application/.svn/pristine/15/15566f142ee230832c88a56d44d9c276f429b850.svn-base b/dhp-broker-application/.svn/pristine/15/15566f142ee230832c88a56d44d9c276f429b850.svn-base deleted file mode 100644 index f17f8c05..00000000 --- a/dhp-broker-application/.svn/pristine/15/15566f142ee230832c88a56d44d9c276f429b850.svn-base +++ /dev/null @@ -1,105 +0,0 @@ -package eu.dnetlib.lbs.clients; - -import java.util.Date; -import java.util.Objects; - -import org.apache.lucene.search.join.ScoreMode; -import org.elasticsearch.action.search.SearchType; -import org.elasticsearch.index.query.BoolQueryBuilder; -import org.elasticsearch.index.query.QueryBuilders; -import org.junit.Ignore; -import org.junit.Test; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.data.domain.PageRequest; -import org.springframework.data.elasticsearch.annotations.Document; -import org.springframework.data.elasticsearch.core.ElasticsearchOperations; -import org.springframework.data.elasticsearch.core.SearchHit; -import org.springframework.data.elasticsearch.core.mapping.IndexCoordinates; -import org.springframework.data.elasticsearch.core.query.NativeSearchQuery; -import org.springframework.data.elasticsearch.core.query.NativeSearchQueryBuilder; -import org.springframework.data.util.CloseableIterator; - -import eu.dnetlib.lbs.elasticsearch.Event; -import eu.dnetlib.lbs.subscriptions.MapCondition; -import eu.dnetlib.lbs.subscriptions.NotificationFrequency; -import eu.dnetlib.lbs.subscriptions.NotificationMode; -import eu.dnetlib.lbs.subscriptions.Subscription; -import eu.dnetlib.lbs.utils.DateParser; - -@Ignore -// @RunWith(SpringJUnit4ClassRunner.class) -// @ContextConfiguration(locations = { "classpath:/applicationContext-test-queries.xml" }) -public class IndexClientTest { - - private static final String topic = "ENRICH/MORE/PID"; - private static final Date fromDate = DateParser.parse("2016-01-31"); - - private static final String indexName = Event.class.getAnnotation(Document.class).indexName(); - - @Autowired - private ElasticsearchOperations esOperations; - - @Test - public void testSearchTopic() { - System.out.println("Start searching"); - - final NativeSearchQuery searchQuery = new NativeSearchQueryBuilder() - .withQuery(QueryBuilders.boolQuery() - .must(QueryBuilders.matchQuery("topic", topic)) - .must(QueryBuilders.rangeQuery("creationDate").from(fromDate))) - .withSearchType(SearchType.DEFAULT) - .withPageable(PageRequest.of(0, 10)) - .build(); - - int count = 0; - final CloseableIterator> it = esOperations.searchForStream(searchQuery, Event.class, IndexCoordinates.of(indexName)); - - while (it.hasNext()) { - System.out.println(" > " + it.next()); - count++; - } - System.out.println("SIZE: " + count); - - } - - @Test - @Ignore - public void testSearchSubscription() { - System.out.println("Start searching"); - - final Subscription s = new Subscription(); - s.setSubscriptionId("sub-db0b35d4-1b0f-4660-a849-34fbec8fb6f7"); - s.setSubscriber("artini@isti.cnr.it"); - s.setTopic("ENRICH/MORE/OPENACCESS_VERSION"); - s.setFrequency(NotificationFrequency.daily); - s.setMode(NotificationMode.MOCK); - s.setConditions( - "[{\"field\":\"target_datasource_name\",\"fieldType\":\"STRING\",\"operator\":\"EXACT\",\"listParams\":[{\"value\":\"Research Papers in Economics\"}]},{\"field\":\"trust\",\"fieldType\":\"FLOAT\",\"operator\":\"RANGE\",\"listParams\":[{\"value\":\"0\",\"otherValue\":\"1\"}]}]"); - - final BoolQueryBuilder mapQuery = QueryBuilders.boolQuery(); - - s.getConditionsAsList().stream() - .map(MapCondition::asQueryBuilder) - .filter(Objects::nonNull) - .forEach(mapQuery::must); - - final NativeSearchQuery searchQuery = new NativeSearchQueryBuilder() - .withQuery(QueryBuilders.boolQuery() - .must(QueryBuilders.matchQuery("topic", s.getTopic())) - .must(QueryBuilders.rangeQuery("creationDate").from(s.getLastNotificationDate())) - .must(QueryBuilders.nestedQuery("map", mapQuery, ScoreMode.None))) - .withSearchType(SearchType.DEFAULT) - - .withPageable(PageRequest.of(0, 10)) - .build(); - - int count = 0; - final CloseableIterator> it = esOperations.searchForStream(searchQuery, Event.class, IndexCoordinates.of(indexName)); - while (it.hasNext()) { - System.out.println(" > " + it.next()); - count++; - } - System.out.println("SIZE: " + count); - - } -} diff --git a/dhp-broker-application/.svn/pristine/18/1869a22f1e0a8f7765b17908d669555e3538c1c7.svn-base b/dhp-broker-application/.svn/pristine/18/1869a22f1e0a8f7765b17908d669555e3538c1c7.svn-base deleted file mode 100644 index db583b7c..00000000 --- a/dhp-broker-application/.svn/pristine/18/1869a22f1e0a8f7765b17908d669555e3538c1c7.svn-base +++ /dev/null @@ -1,1000 +0,0 @@ - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1610666\",\"titles\":[\"Longitudinal trends in organophosphate incidents reported to the National Pesticide Information Center, 1995–2007\"],\"abstracts\":[\"Background Regulatory decisions to phase-out the availability and use of common organophosphate pesticides among the general public were announced in 2000 and continued through 2004. Based on revised risk assessments, chlorpyrifos and diazinon were determined to pose unacceptable risks. To determine the impact of these decisions, organophosphate (OP) exposure incidents reported to the National Pesticide Information Center (NPIC) were analyzed for longitudinal trends. Methods Non-occupational human exposure incidents reported to NPIC were grouped into pre- (1995–2000) and post-announcement periods (2001–2007). The number of total OP exposure incidents, as well as reports for chlorpyrifos, diazinon and malathion, were analyzed for significant differences between these two periods. The number of informational inquiries from the general public was analyzed over time as well. Results The number of average annual OP-related exposure incidents reported to NPIC decreased significantly between the pre- and post-announcement periods (p \\u003c 0.001). A significant decrease in the number of chlorpyrifos and diazinon reports was observed over time (p \\u003c 0.001). No significant difference in the number of incident reports for malathion was observed (p \\u003d 0.4), which was not phased-out of residential use. Similar to exposure incidents, the number of informational inquiries received by NPIC declined over time following the phase-out announcement. Conclusion Consistent with other findings, the number of chlorpyrifos and diazinon exposure incidents reported to NPIC significantly decreased following public announcement and targeted regulatory action.\"],\"language\":\"eng\",\"subjects\":[\"Research\"],\"creators\":[\"Stone, David L.\",\"Sudakin, Daniel L.\",\"Jenkins, Jeffrey J.\"],\"publicationdate\":\"2009-04-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Environmental Health\",\"issn\":\"\",\"eissn\":\"1476-069X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1476-069X-8-18\",\"type\":\"doi\"},{\"value\":\"PMC2673208\",\"type\":\"pmc\"},{\"value\":\"19379510\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2673208\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.ehjournal.net/content/8/1/18\",\"license\":\"OPEN\",\"hostedby\":\"Environmental Health\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ehjournal.net/content/8/1/18\",\"license\":\"OPEN\",\"hostedby\":\"Environmental Health\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.ehjournal.net/content/8/1/18\",\"id\":\"oai:doaj.org/article:c373b50a0c0e450b9bfbc84c92a44a6d\"},\"trust\":0.61907697}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1610666"},"target_publication_author_list":{"type":"LIST_STRING","value":["Stone, David L.","Sudakin, Daniel L.","Jenkins, Jeffrey J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:c373b50a0c0e450b9bfbc84c92a44a6d"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research"]},"trust":{"type":"FLOAT","value":0.61907697},"target_publication_title":{"type":"STRING","value":"Longitudinal trends in organophosphate incidents reported to the National Pesticide Information Center, 1995–2007"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dugi-doc.udg.edu:10256/8856\",\"titles\":[\"La dona pagesa, l\\u0027oblidada de l\\u0027explotació familiar agrària: una aproximació a les comarques gironines\"],\"abstracts\":[\"The 1982 Agrarian Census is used as the basis of a study of the role of farm wives in family farms in the province of Girona. In spite of the shortcomings of the Agrarian Census, outlined in the first part of the article, this census is the most reliable and detailed source available to identify and evaluate the specific role and share of work of the different members on a family farm. The study clearly demonstrates, on the one hand, the deep-rooted cultural pattern of professional discrimination of farm wives, and, on the other hand, t6eir important role in agriculture, especially in the most dynamic farm units in Girona\",\"A partir del Cens Agrari de 1982 s\\u0027analitza el lloc que ocupa la dona pagesa dins les explotacions agràries familiars de la província de Girona. Tot i les limitacions del Cens Agrari, posades de manifest en la primera part de l\\u0027article, aquest cens és la principal font disponible per conèixer i poder avaluar el treball i el grau d\\u0027ocupació dels diferents membres dins les explotacions agràries familiars. L\\u0027estudi posa de manifest el pes de la norma cultural en la marginació professional de la dona pagesa, com també l\\u0027important paper que juga aquesta en el treball agrícola i, en especial, en les explotacions més dinàmiques del camp gironí\",\"A partir del Censo Agrario de 1982 se analiza el lugar que ocupa la mujer campesina en las explotaciones agrarias familiares de la provincia de Gerona. A pesar de las limitaciones del Censo Agrario, que se exponen en la primera parte del artículo, este censo es la principal fuente disponible para conocer y poder evaluar el trabajo y el grado de ocupación de los distintos miembros de la familia en las explotaciones agrarias familiares. El estudio pone de manifiesto el peso de la ‘pauta cultural’ en la marginación profesional de la mujer campesina, así como el importante papel que ésta tiene en el trabajo agrícola y, especialmente, en las explotaciones más dinámicas del campo gerundense\"],\"language\":\"cat\",\"subjects\":[\"Pageses\",\"Women farmers\",\"Women peasants\",\"Dones en el medi rural\",\"Rural women\"],\"creators\":[\"Salamaña I Serra, Isabel\"],\"publicationdate\":\"1992-01-01\",\"publisher\":\"Universitat Autònoma de Barcelona. Deptartament de Geografia\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DUGiDocs – Universitat de Girona\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10256/8856\",\"license\":\"OPEN\",\"hostedby\":\"DUGiDocs – Universitat de Girona\",\"instancetype\":\"Article\"},{\"url\":\"http://ddd.uab.cat/record/17287\",\"license\":\"OPEN\",\"hostedby\":\"Dipòsit Digital de Documents de la UAB\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://ddd.uab.cat/record/17287\",\"license\":\"OPEN\",\"hostedby\":\"Dipòsit Digital de Documents de la UAB\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Dipòsit Digital de Documents de la UAB\",\"url\":\"http://ddd.uab.cat/record/17287\",\"id\":\"oai:ddd.uab.cat:17287\"},\"trust\":0.12052941}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DUGiDocs – Universitat de Girona"},"target_publication_id":{"type":"STRING","value":"oai:dugi-doc.udg.edu:10256/8856"},"target_publication_author_list":{"type":"LIST_STRING","value":["Salamaña I Serra, Isabel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ddd.uab.cat:17287"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::186a157b2992e7daed3677ce8e9fe40f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Pageses","Women farmers","Women peasants","Dones en el medi rural","Rural women"]},"trust":{"type":"FLOAT","value":0.12052941},"target_publication_title":{"type":"STRING","value":"La dona pagesa, l\u0027oblidada de l\u0027explotació familiar agrària: una aproximació a les comarques gironines"},"provenance_datasource_name":{"type":"STRING","value":"Dipòsit Digital de Documents de la UAB"},"target_dateofacceptance":{"type":"DATE","value":"1992-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6c8dba7d0df1c4a79dd07646be9a26c8"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ddd.uab.cat:17287\",\"titles\":[\"La dona pagesa, l\\u0027oblidada de l\\u0027explotació familiar agrària : una aproximació a les comarques gironines\"],\"abstracts\":[],\"language\":\"cat\",\"subjects\":[],\"creators\":[\"Salamaña I Serra, Isabel\"],\"publicationdate\":\"1992-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Dipòsit Digital de Documents de la UAB\"],\"pids\":[],\"instances\":[{\"url\":\"http://ddd.uab.cat/record/17287\",\"license\":\"OPEN\",\"hostedby\":\"Dipòsit Digital de Documents de la UAB\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10256/8856\",\"license\":\"OPEN\",\"hostedby\":\"DUGiDocs – Universitat de Girona\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10256/8856\",\"license\":\"OPEN\",\"hostedby\":\"DUGiDocs – Universitat de Girona\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DUGiDocs – Universitat de Girona\",\"url\":\"http://hdl.handle.net/10256/8856\",\"id\":\"oai:dugi-doc.udg.edu:10256/8856\"},\"trust\":0.16980779}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Dipòsit Digital de Documents de la UAB"},"target_publication_id":{"type":"STRING","value":"oai:ddd.uab.cat:17287"},"target_publication_author_list":{"type":"LIST_STRING","value":["Salamaña I Serra, Isabel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dugi-doc.udg.edu:10256/8856"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6c8dba7d0df1c4a79dd07646be9a26c8"},"trust":{"type":"FLOAT","value":0.16980779},"target_publication_title":{"type":"STRING","value":"La dona pagesa, l\u0027oblidada de l\u0027explotació familiar agrària : una aproximació a les comarques gironines"},"provenance_datasource_name":{"type":"STRING","value":"DUGiDocs – Universitat de Girona"},"target_dateofacceptance":{"type":"DATE","value":"1992-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::186a157b2992e7daed3677ce8e9fe40f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:ddd.uab.cat:17287\",\"titles\":[\"La dona pagesa, l\\u0027oblidada de l\\u0027explotació familiar agrària : una aproximació a les comarques gironines\"],\"abstracts\":[\"The 1982 Agrarian Census is used as the basis of a study of the role of farm wives in family farms in the province of Girona. In spite of the shortcomings of the Agrarian Census, outlined in the first part of the article, this census is the most reliable and detailed source available to identify and evaluate the specific role and share of work of the different members on a family farm. The study clearly demonstrates, on the one hand, the deep-rooted cultural pattern of professional discrimination of farm wives, and, on the other hand, t6eir important role in agriculture, especially in the most dynamic farm units in Girona\",\"A partir del Cens Agrari de 1982 s\\u0027analitza el lloc que ocupa la dona pagesa dins les explotacions agràries familiars de la província de Girona. Tot i les limitacions del Cens Agrari, posades de manifest en la primera part de l\\u0027article, aquest cens és la principal font disponible per conèixer i poder avaluar el treball i el grau d\\u0027ocupació dels diferents membres dins les explotacions agràries familiars. L\\u0027estudi posa de manifest el pes de la norma cultural en la marginació professional de la dona pagesa, com també l\\u0027important paper que juga aquesta en el treball agrícola i, en especial, en les explotacions més dinàmiques del camp gironí\",\"A partir del Censo Agrario de 1982 se analiza el lugar que ocupa la mujer campesina en las explotaciones agrarias familiares de la provincia de Gerona. A pesar de las limitaciones del Censo Agrario, que se exponen en la primera parte del artículo, este censo es la principal fuente disponible para conocer y poder evaluar el trabajo y el grado de ocupación de los distintos miembros de la familia en las explotaciones agrarias familiares. El estudio pone de manifiesto el peso de la ‘pauta cultural’ en la marginación profesional de la mujer campesina, así como el importante papel que ésta tiene en el trabajo agrícola y, especialmente, en las explotaciones más dinámicas del campo gerundense\"],\"language\":\"cat\",\"subjects\":[],\"creators\":[\"Salamaña I Serra, Isabel\"],\"publicationdate\":\"1992-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Dipòsit Digital de Documents de la UAB\"],\"pids\":[],\"instances\":[{\"url\":\"http://ddd.uab.cat/record/17287\",\"license\":\"OPEN\",\"hostedby\":\"Dipòsit Digital de Documents de la UAB\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"The 1982 Agrarian Census is used as the basis of a study of the role of farm wives in family farms in the province of Girona. In spite of the shortcomings of the Agrarian Census, outlined in the first part of the article, this census is the most reliable and detailed source available to identify and evaluate the specific role and share of work of the different members on a family farm. The study clearly demonstrates, on the one hand, the deep-rooted cultural pattern of professional discrimination of farm wives, and, on the other hand, t6eir important role in agriculture, especially in the most dynamic farm units in Girona\",\"A partir del Cens Agrari de 1982 s\\u0027analitza el lloc que ocupa la dona pagesa dins les explotacions agràries familiars de la província de Girona. Tot i les limitacions del Cens Agrari, posades de manifest en la primera part de l\\u0027article, aquest cens és la principal font disponible per conèixer i poder avaluar el treball i el grau d\\u0027ocupació dels diferents membres dins les explotacions agràries familiars. L\\u0027estudi posa de manifest el pes de la norma cultural en la marginació professional de la dona pagesa, com també l\\u0027important paper que juga aquesta en el treball agrícola i, en especial, en les explotacions més dinàmiques del camp gironí\",\"A partir del Censo Agrario de 1982 se analiza el lugar que ocupa la mujer campesina en las explotaciones agrarias familiares de la provincia de Gerona. A pesar de las limitaciones del Censo Agrario, que se exponen en la primera parte del artículo, este censo es la principal fuente disponible para conocer y poder evaluar el trabajo y el grado de ocupación de los distintos miembros de la familia en las explotaciones agrarias familiares. El estudio pone de manifiesto el peso de la ‘pauta cultural’ en la marginación profesional de la mujer campesina, así como el importante papel que ésta tiene en el trabajo agrícola y, especialmente, en las explotaciones más dinámicas del campo gerundense\"]},\"provenance\":{\"repositoryName\":\"DUGiDocs – Universitat de Girona\",\"url\":\"http://hdl.handle.net/10256/8856\",\"id\":\"oai:dugi-doc.udg.edu:10256/8856\"},\"trust\":0.6952297}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Dipòsit Digital de Documents de la UAB"},"target_publication_id":{"type":"STRING","value":"oai:ddd.uab.cat:17287"},"target_publication_author_list":{"type":"LIST_STRING","value":["Salamaña I Serra, Isabel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dugi-doc.udg.edu:10256/8856"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6c8dba7d0df1c4a79dd07646be9a26c8"},"trust":{"type":"FLOAT","value":0.6952297},"target_publication_title":{"type":"STRING","value":"La dona pagesa, l\u0027oblidada de l\u0027explotació familiar agrària : una aproximació a les comarques gironines"},"provenance_datasource_name":{"type":"STRING","value":"DUGiDocs – Universitat de Girona"},"target_dateofacceptance":{"type":"DATE","value":"1992-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::186a157b2992e7daed3677ce8e9fe40f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00252365v1\",\"titles\":[\"The reactive element effect (R.E.E.) : a tentative classification\"],\"abstracts\":[\"The oxidation resistance of many high temperature materials, especially gas turbine materials, can be enhanced by applying protective coatings. In this study, aluminide and chromaluminide coatings were applied on a number of superalloys, viz., IN738, René 80, B1900, IN100 and IN713, using both high and low activity pack cementation process, and subjected to cyclic oxidation. Oxidation behaviour of the coated material was found to be dependent on the type of pack used, i.e. low or high activity pack and also on the composition of the base alloy. It is well established that small additions of so-called \\\"reactive elements\\\" increase the oxidation resistance of alumina former superalloys. The beneficial effects of these \\\"reactive elements\\\" are currently regarded as being of two kinds : 1) an improvement in oxide to metal adhesion, and 2) a reduction in oxidation rate for some systems. The results on the effect of certain alloying elements, such as Mo, Ta, Ti and Hf on the oxidation behaviour of these aluminide coatings are presented in this paper and a classification of the \\\"reactive elements\\\" is proposed.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Maximilien N Gandu-Muamba, J.\",\"Streiff, Roland\"],\"publicationdate\":\"1993-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jp4:1993927\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00252365\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00252365\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00252365\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00252365\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00252365\"},\"trust\":0.6476336}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00252365v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Maximilien N Gandu-Muamba, J.","Streiff, Roland"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00252365"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.6476336},"target_publication_title":{"type":"STRING","value":"The reactive element effect (R.E.E.) : a tentative classification"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1993-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00252365\",\"titles\":[\"The reactive element effect (R.E.E.) : a tentative classification\"],\"abstracts\":[\"The oxidation resistance of many high temperature materials, especially gas turbine materials, can be enhanced by applying protective coatings. In this study, aluminide and chromaluminide coatings were applied on a number of superalloys, viz., IN738, René 80, B1900, IN100 and IN713, using both high and low activity pack cementation process, and subjected to cyclic oxidation. Oxidation behaviour of the coated material was found to be dependent on the type of pack used, i.e. low or high activity pack and also on the composition of the base alloy. It is well established that small additions of so-called \\\"reactive elements\\\" increase the oxidation resistance of alumina former superalloys. The beneficial effects of these \\\"reactive elements\\\" are currently regarded as being of two kinds : 1) an improvement in oxide to metal adhesion, and 2) a reduction in oxidation rate for some systems. The results on the effect of certain alloying elements, such as Mo, Ta, Ti and Hf on the oxidation behaviour of these aluminide coatings are presented in this paper and a classification of the \\\"reactive elements\\\" is proposed.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\"],\"creators\":[\"Maximilien N Gandu-Muamba, J.\",\"Streiff, Roland\"],\"publicationdate\":\"1993-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jp4:1993927\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00252365\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00252365\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00252365\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00252365\",\"id\":\"oai:HAL:jpa-00252365v1\"},\"trust\":0.9437692}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00252365"},"target_publication_author_list":{"type":"LIST_STRING","value":["Maximilien N Gandu-Muamba, J.","Streiff, Roland"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00252365v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens"]},"trust":{"type":"FLOAT","value":0.9437692},"target_publication_title":{"type":"STRING","value":"The reactive element effect (R.E.E.) : a tentative classification"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1993-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/410137\",\"titles\":[\"Final report\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"PPO/PRI AGRO Toegepaste Plantenecologie\",\"PPO/PRI AGRO Toegepaste Plantenecologie\"],\"creators\":[\"Burg, W. J.\",\"Yusuf, S. W.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"Plant Research International\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/179393\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"External research report\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/410137\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/410137\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/410137\",\"id\":\"wur:oai:library.wur.nl:wurpubs/410137\"},\"trust\":0.033677757}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/410137"},"target_publication_author_list":{"type":"LIST_STRING","value":["Burg, W. J.","Yusuf, S. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/410137"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["PPO/PRI AGRO Toegepaste Plantenecologie","PPO/PRI AGRO Toegepaste Plantenecologie"]},"trust":{"type":"FLOAT","value":0.033677757},"target_publication_title":{"type":"STRING","value":"Final report"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:0707.2661\",\"titles\":[\"Experimental analysis of the Strato-rotational Instability in a cylindrical Couette flow\"],\"abstracts\":[\" This study is devoted to the experimental analysis of the Strato-rotational\\nInstability (SRI). This instability affects the classical cylindrical Couette\\nflow when the fluid is stably stratified in the axial direction. In agreement\\nwith recent theoretical and numerical analyses, we describe for the first time\\nin detail the destabilization of the stratified flow below the Rayleigh line\\n(i.e. the stability threshold without stratification). We confirm that the\\nunstable modes of the SRI are non axisymmetric, oscillatory, and take place as\\nsoon as the azimuthal linear velocity decreases along the radial direction.\\nThis new instability is relevant for accretion disks.\\n\",\"Comment: 4 pages, 4 figures. PRL in press 2007\"],\"language\":\"eng\",\"subjects\":[\"Astrophysics\"],\"creators\":[\"Bars, M. Le\",\"Gal, P. Le\"],\"publicationdate\":\"2007-07-18\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1103/PhysRevLett.99.064502\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/0707.2661\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00157389\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00157389\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00157389\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00157389\"},\"trust\":0.7339056}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:0707.2661"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bars, M. Le","Gal, P. Le"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00157389"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Astrophysics"]},"trust":{"type":"FLOAT","value":0.7339056},"target_publication_title":{"type":"STRING","value":"Experimental analysis of the Strato-rotational Instability in a cylindrical Couette flow"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2007-07-18"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:0707.2661\",\"titles\":[\"Experimental analysis of the Strato-rotational Instability in a cylindrical Couette flow\"],\"abstracts\":[\" This study is devoted to the experimental analysis of the Strato-rotational\\nInstability (SRI). This instability affects the classical cylindrical Couette\\nflow when the fluid is stably stratified in the axial direction. In agreement\\nwith recent theoretical and numerical analyses, we describe for the first time\\nin detail the destabilization of the stratified flow below the Rayleigh line\\n(i.e. the stability threshold without stratification). We confirm that the\\nunstable modes of the SRI are non axisymmetric, oscillatory, and take place as\\nsoon as the azimuthal linear velocity decreases along the radial direction.\\nThis new instability is relevant for accretion disks.\\n\",\"Comment: 4 pages, 4 figures. PRL in press 2007\"],\"language\":\"eng\",\"subjects\":[\"Astrophysics\"],\"creators\":[\"Bars, M. Le\",\"Gal, P. Le\"],\"publicationdate\":\"2007-07-18\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1103/PhysRevLett.99.064502\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/0707.2661\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00157389\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00157389\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00157389\",\"id\":\"oai:HAL:hal-00157389v1\"},\"trust\":0.5706302}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:0707.2661"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bars, M. Le","Gal, P. Le"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00157389v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Astrophysics"]},"trust":{"type":"FLOAT","value":0.5706302},"target_publication_title":{"type":"STRING","value":"Experimental analysis of the Strato-rotational Instability in a cylindrical Couette flow"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2007-07-18"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00157389\",\"titles\":[\"Experimental Analysis of the Strato-Rotational Instability in a cylindrical Couette flow\"],\"abstracts\":[\"This study is devoted to the experimental analysis of the Strato-rotational Instability (SRI). This instability affects the classical cylindrical Couette flow when the fluid is stably stratified in the axial direction. In agreement with recent theoretical and numerical analyses, we describe for the first time in detail the destabilization of the stratified flow below the Rayleigh line (i.e. the stability threshold without stratification). We confirm that the unstable modes of the SRI are non axisymmetric, oscillatory, and take place as soon as the azimuthal linear velocity decreases along the radial direction. This new instability is relevant for accretion disks.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:PHYS:PHYS_FLU-DYN] Physics/Physics/Fluid Dynamics\",\"[PHYS:PHYS:PHYS_FLU-DYN] Physique/Physique/Dynamique des Fluides\",\"Strato-Rotational Instability\",\"stratified fluid\",\"Couette flow\",\"accretion disks\"],\"creators\":[\"Le Bars, Michael\",\"Le Gal, Patrice\"],\"publicationdate\":\"2007-08-10\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1103/PhysRevLett.99.064502\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00157389\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/0707.2661\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/0707.2661\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0707.2661\",\"id\":\"oai:arXiv.org:0707.2661\"},\"trust\":0.70907813}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00157389"},"target_publication_author_list":{"type":"LIST_STRING","value":["Le Bars, Michael","Le Gal, Patrice"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0707.2661"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:PHYS:PHYS_FLU-DYN] Physics/Physics/Fluid Dynamics","[PHYS:PHYS:PHYS_FLU-DYN] Physique/Physique/Dynamique des Fluides","Strato-Rotational Instability","stratified fluid","Couette flow","accretion disks"]},"trust":{"type":"FLOAT","value":0.70907813},"target_publication_title":{"type":"STRING","value":"Experimental Analysis of the Strato-Rotational Instability in a cylindrical Couette flow"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2007-08-10"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00157389\",\"titles\":[\"Experimental Analysis of the Strato-Rotational Instability in a cylindrical Couette flow\"],\"abstracts\":[\"This study is devoted to the experimental analysis of the Strato-rotational Instability (SRI). This instability affects the classical cylindrical Couette flow when the fluid is stably stratified in the axial direction. In agreement with recent theoretical and numerical analyses, we describe for the first time in detail the destabilization of the stratified flow below the Rayleigh line (i.e. the stability threshold without stratification). We confirm that the unstable modes of the SRI are non axisymmetric, oscillatory, and take place as soon as the azimuthal linear velocity decreases along the radial direction. This new instability is relevant for accretion disks.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:PHYS:PHYS_FLU-DYN] Physics/Physics/Fluid Dynamics\",\"[PHYS:PHYS:PHYS_FLU-DYN] Physique/Physique/Dynamique des Fluides\",\"Strato-Rotational Instability\",\"stratified fluid\",\"Couette flow\",\"accretion disks\"],\"creators\":[\"Le Bars, Michael\",\"Le Gal, Patrice\"],\"publicationdate\":\"2007-08-10\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1103/PhysRevLett.99.064502\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00157389\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00157389\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00157389\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00157389\",\"id\":\"oai:HAL:hal-00157389v1\"},\"trust\":0.19024467}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00157389"},"target_publication_author_list":{"type":"LIST_STRING","value":["Le Bars, Michael","Le Gal, Patrice"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00157389v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:PHYS:PHYS_FLU-DYN] Physics/Physics/Fluid Dynamics","[PHYS:PHYS:PHYS_FLU-DYN] Physique/Physique/Dynamique des Fluides","Strato-Rotational Instability","stratified fluid","Couette flow","accretion disks"]},"trust":{"type":"FLOAT","value":0.19024467},"target_publication_title":{"type":"STRING","value":"Experimental Analysis of the Strato-Rotational Instability in a cylindrical Couette flow"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2007-08-10"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00157389v1\",\"titles\":[\"Experimental Analysis of the Strato-Rotational Instability in a cylindrical Couette flow\"],\"abstracts\":[\"This study is devoted to the experimental analysis of the Strato-rotational Instability (SRI). This instability affects the classical cylindrical Couette flow when the fluid is stably stratified in the axial direction. In agreement with recent theoretical and numerical analyses, we describe for the first time in detail the destabilization of the stratified flow below the Rayleigh line (i.e. the stability threshold without stratification). We confirm that the unstable modes of the SRI are non axisymmetric, oscillatory, and take place as soon as the azimuthal linear velocity decreases along the radial direction. This new instability is relevant for accretion disks.\"],\"language\":\"eng\",\"subjects\":[\"Strato-Rotational Instability\",\"stratified fluid\",\"Couette flow\",\"accretion disks\",\"PACS: 47.20.Ft; 47.20.Qr; 97.10.Gz\",\"[PHYS.PHYS.PHYS-FLU-DYN] Physics/Physics/Fluid Dynamics\"],\"creators\":[\"Le Bars, Michael\",\"Le Gal, Patrice\"],\"publicationdate\":\"2007-08-10\",\"publisher\":\"American Physical Society\",\"embargoenddate\":\"\",\"contributor\":[\"Institut de Recherche sur les Phénomènes Hors Equilibre (IRPHE) ; CNRS - Ecole Centrale de Marseille - Université de Provence - Aix-Marseille I - Université de la Méditerranée - Aix-Marseille II\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1103/PhysRevLett.99.064502\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00157389\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/0707.2661\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/0707.2661\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0707.2661\",\"id\":\"oai:arXiv.org:0707.2661\"},\"trust\":0.29478902}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00157389v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Le Bars, Michael","Le Gal, Patrice"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0707.2661"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Strato-Rotational Instability","stratified fluid","Couette flow","accretion disks","PACS: 47.20.Ft; 47.20.Qr; 97.10.Gz","[PHYS.PHYS.PHYS-FLU-DYN] Physics/Physics/Fluid Dynamics"]},"trust":{"type":"FLOAT","value":0.29478902},"target_publication_title":{"type":"STRING","value":"Experimental Analysis of the Strato-Rotational Instability in a cylindrical Couette flow"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2007-08-10"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00157389v1\",\"titles\":[\"Experimental Analysis of the Strato-Rotational Instability in a cylindrical Couette flow\"],\"abstracts\":[\"This study is devoted to the experimental analysis of the Strato-rotational Instability (SRI). This instability affects the classical cylindrical Couette flow when the fluid is stably stratified in the axial direction. In agreement with recent theoretical and numerical analyses, we describe for the first time in detail the destabilization of the stratified flow below the Rayleigh line (i.e. the stability threshold without stratification). We confirm that the unstable modes of the SRI are non axisymmetric, oscillatory, and take place as soon as the azimuthal linear velocity decreases along the radial direction. This new instability is relevant for accretion disks.\"],\"language\":\"eng\",\"subjects\":[\"Strato-Rotational Instability\",\"stratified fluid\",\"Couette flow\",\"accretion disks\",\"PACS: 47.20.Ft; 47.20.Qr; 97.10.Gz\",\"[PHYS.PHYS.PHYS-FLU-DYN] Physics/Physics/Fluid Dynamics\"],\"creators\":[\"Le Bars, Michael\",\"Le Gal, Patrice\"],\"publicationdate\":\"2007-08-10\",\"publisher\":\"American Physical Society\",\"embargoenddate\":\"\",\"contributor\":[\"Institut de Recherche sur les Phénomènes Hors Equilibre (IRPHE) ; CNRS - Ecole Centrale de Marseille - Université de Provence - Aix-Marseille I - Université de la Méditerranée - Aix-Marseille II\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1103/PhysRevLett.99.064502\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00157389\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00157389\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00157389\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00157389\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00157389\"},\"trust\":0.7695273}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00157389v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Le Bars, Michael","Le Gal, Patrice"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00157389"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Strato-Rotational Instability","stratified fluid","Couette flow","accretion disks","PACS: 47.20.Ft; 47.20.Qr; 97.10.Gz","[PHYS.PHYS.PHYS-FLU-DYN] Physics/Physics/Fluid Dynamics"]},"trust":{"type":"FLOAT","value":0.7695273},"target_publication_title":{"type":"STRING","value":"Experimental Analysis of the Strato-Rotational Instability in a cylindrical Couette flow"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2007-08-10"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1349982\",\"titles\":[\"Competency, confidence and conflicting evidence: key issues affecting health visitors\\u0027 use of research evidence in practice\"],\"abstracts\":[\"BACKGROUND: Health visitors play a pivotal position in providing parents with up-to-date evidence-based care on child health. The recent controversy over the safety of the MMR vaccine has drawn attention to the difficulties they face when new research which raises doubts about current guidelines and practices is published. In the aftermath of the MMR controversy, this paper investigates the sources health visitors use to find out about new research evidence on immunisation and examines barriers and facilitators to using evidence in practice. It also assesses health visitors\\u0027 confidence in using research evidence. METHODS: Health visitors were recruited from the 2007 UK Community Practitioners\\u0027 and Health Visitors\\u0027 Association conference. All delegates were eligible to complete the questionnaire if in their current professional role they advise parents about childhood immunisation or administer vaccines to children. Of 228 who were eligible, 185 completed the survey (81.1%). RESULTS: These health visitors used a wide range of resources to find out about new research evidence on childhood immunisation. Popular sources included information leaflets and publications, training days, nursing journals and networking with colleagues. A lack of time was cited as the main barrier to searching for new evidence. The most common reason given for not using research in practice was a perception of conflicting research evidence. Understanding the evidence was a key facilitator. Health visitors expressed less confidence about searching and explaining research on childhood immunisation than evidence on weaning and a baby\\u0027s sleep position. CONCLUSION: Even motivated health visitors feel they lack the time and, in some cases, the skills to locate and appraise research evidence. This research suggests that of the provision of already-appraised research would help to keep busy health professionals informed, up-to-date and confident in responding to public concerns, particularly when there is apparently conflicting evidence. Health visitors\\u0027 relative lack of confidence about research on immunisation suggests there is still a job to be done in rebuilding confidence in evidence on childhood immunisation. Further research on what makes evidence more comprehensible, convincing and useable would contribute to understanding how to bridge the gulf between evidence and practice.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hilton, S.\",\"Bedford, H.\",\"Calnan, M.\",\"Hunt, K.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1349982/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"},{\"url\":\"http://www.biomedcentral.com/1472-6955/8/4\",\"license\":\"OPEN\",\"hostedby\":\"BMC Nursing\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.biomedcentral.com/1472-6955/8/4\",\"license\":\"OPEN\",\"hostedby\":\"BMC Nursing\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.biomedcentral.com/1472-6955/8/4\",\"id\":\"oai:doaj.org/article:dbdb1a5a455e4c71b56d93994bc70bee\"},\"trust\":0.30510086}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1349982"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hilton, S.","Bedford, H.","Calnan, M.","Hunt, K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:dbdb1a5a455e4c71b56d93994bc70bee"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"trust":{"type":"FLOAT","value":0.30510086},"target_publication_title":{"type":"STRING","value":"Competency, confidence and conflicting evidence: key issues affecting health visitors\u0027 use of research evidence in practice"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1349982\",\"titles\":[\"Competency, confidence and conflicting evidence: key issues affecting health visitors\\u0027 use of research evidence in practice\"],\"abstracts\":[\"BACKGROUND: Health visitors play a pivotal position in providing parents with up-to-date evidence-based care on child health. The recent controversy over the safety of the MMR vaccine has drawn attention to the difficulties they face when new research which raises doubts about current guidelines and practices is published. In the aftermath of the MMR controversy, this paper investigates the sources health visitors use to find out about new research evidence on immunisation and examines barriers and facilitators to using evidence in practice. It also assesses health visitors\\u0027 confidence in using research evidence. METHODS: Health visitors were recruited from the 2007 UK Community Practitioners\\u0027 and Health Visitors\\u0027 Association conference. All delegates were eligible to complete the questionnaire if in their current professional role they advise parents about childhood immunisation or administer vaccines to children. Of 228 who were eligible, 185 completed the survey (81.1%). RESULTS: These health visitors used a wide range of resources to find out about new research evidence on childhood immunisation. Popular sources included information leaflets and publications, training days, nursing journals and networking with colleagues. A lack of time was cited as the main barrier to searching for new evidence. The most common reason given for not using research in practice was a perception of conflicting research evidence. Understanding the evidence was a key facilitator. Health visitors expressed less confidence about searching and explaining research on childhood immunisation than evidence on weaning and a baby\\u0027s sleep position. CONCLUSION: Even motivated health visitors feel they lack the time and, in some cases, the skills to locate and appraise research evidence. This research suggests that of the provision of already-appraised research would help to keep busy health professionals informed, up-to-date and confident in responding to public concerns, particularly when there is apparently conflicting evidence. Health visitors\\u0027 relative lack of confidence about research on immunisation suggests there is still a job to be done in rebuilding confidence in evidence on childhood immunisation. Further research on what makes evidence more comprehensible, convincing and useable would contribute to understanding how to bridge the gulf between evidence and practice.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hilton, S.\",\"Bedford, H.\",\"Calnan, M.\",\"Hunt, K.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"10.1186/1472-6955-8-4\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1349982/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1186/1472-6955-8-4\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2679743\",\"id\":\"oai:europepmc.org:1852208\"},\"trust\":0.84812194}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1349982"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hilton, S.","Bedford, H.","Calnan, M.","Hunt, K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1852208"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.84812194},"target_publication_title":{"type":"STRING","value":"Competency, confidence and conflicting evidence: key issues affecting health visitors\u0027 use of research evidence in practice"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1349982\",\"titles\":[\"Competency, confidence and conflicting evidence: key issues affecting health visitors\\u0027 use of research evidence in practice\"],\"abstracts\":[\"BACKGROUND: Health visitors play a pivotal position in providing parents with up-to-date evidence-based care on child health. The recent controversy over the safety of the MMR vaccine has drawn attention to the difficulties they face when new research which raises doubts about current guidelines and practices is published. In the aftermath of the MMR controversy, this paper investigates the sources health visitors use to find out about new research evidence on immunisation and examines barriers and facilitators to using evidence in practice. It also assesses health visitors\\u0027 confidence in using research evidence. METHODS: Health visitors were recruited from the 2007 UK Community Practitioners\\u0027 and Health Visitors\\u0027 Association conference. All delegates were eligible to complete the questionnaire if in their current professional role they advise parents about childhood immunisation or administer vaccines to children. Of 228 who were eligible, 185 completed the survey (81.1%). RESULTS: These health visitors used a wide range of resources to find out about new research evidence on childhood immunisation. Popular sources included information leaflets and publications, training days, nursing journals and networking with colleagues. A lack of time was cited as the main barrier to searching for new evidence. The most common reason given for not using research in practice was a perception of conflicting research evidence. Understanding the evidence was a key facilitator. Health visitors expressed less confidence about searching and explaining research on childhood immunisation than evidence on weaning and a baby\\u0027s sleep position. CONCLUSION: Even motivated health visitors feel they lack the time and, in some cases, the skills to locate and appraise research evidence. This research suggests that of the provision of already-appraised research would help to keep busy health professionals informed, up-to-date and confident in responding to public concerns, particularly when there is apparently conflicting evidence. Health visitors\\u0027 relative lack of confidence about research on immunisation suggests there is still a job to be done in rebuilding confidence in evidence on childhood immunisation. Further research on what makes evidence more comprehensible, convincing and useable would contribute to understanding how to bridge the gulf between evidence and practice.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hilton, S.\",\"Bedford, H.\",\"Calnan, M.\",\"Hunt, K.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"PMC2679743\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1349982/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2679743\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2679743\",\"id\":\"oai:europepmc.org:1852208\"},\"trust\":0.84812194}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1349982"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hilton, S.","Bedford, H.","Calnan, M.","Hunt, K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1852208"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.84812194},"target_publication_title":{"type":"STRING","value":"Competency, confidence and conflicting evidence: key issues affecting health visitors\u0027 use of research evidence in practice"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1349982\",\"titles\":[\"Competency, confidence and conflicting evidence: key issues affecting health visitors\\u0027 use of research evidence in practice\"],\"abstracts\":[\"BACKGROUND: Health visitors play a pivotal position in providing parents with up-to-date evidence-based care on child health. The recent controversy over the safety of the MMR vaccine has drawn attention to the difficulties they face when new research which raises doubts about current guidelines and practices is published. In the aftermath of the MMR controversy, this paper investigates the sources health visitors use to find out about new research evidence on immunisation and examines barriers and facilitators to using evidence in practice. It also assesses health visitors\\u0027 confidence in using research evidence. METHODS: Health visitors were recruited from the 2007 UK Community Practitioners\\u0027 and Health Visitors\\u0027 Association conference. All delegates were eligible to complete the questionnaire if in their current professional role they advise parents about childhood immunisation or administer vaccines to children. Of 228 who were eligible, 185 completed the survey (81.1%). RESULTS: These health visitors used a wide range of resources to find out about new research evidence on childhood immunisation. Popular sources included information leaflets and publications, training days, nursing journals and networking with colleagues. A lack of time was cited as the main barrier to searching for new evidence. The most common reason given for not using research in practice was a perception of conflicting research evidence. Understanding the evidence was a key facilitator. Health visitors expressed less confidence about searching and explaining research on childhood immunisation than evidence on weaning and a baby\\u0027s sleep position. CONCLUSION: Even motivated health visitors feel they lack the time and, in some cases, the skills to locate and appraise research evidence. This research suggests that of the provision of already-appraised research would help to keep busy health professionals informed, up-to-date and confident in responding to public concerns, particularly when there is apparently conflicting evidence. Health visitors\\u0027 relative lack of confidence about research on immunisation suggests there is still a job to be done in rebuilding confidence in evidence on childhood immunisation. Further research on what makes evidence more comprehensible, convincing and useable would contribute to understanding how to bridge the gulf between evidence and practice.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hilton, S.\",\"Bedford, H.\",\"Calnan, M.\",\"Hunt, K.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"19379494\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1349982/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"19379494\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2679743\",\"id\":\"oai:europepmc.org:1852208\"},\"trust\":0.84812194}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1349982"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hilton, S.","Bedford, H.","Calnan, M.","Hunt, K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1852208"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.84812194},"target_publication_title":{"type":"STRING","value":"Competency, confidence and conflicting evidence: key issues affecting health visitors\u0027 use of research evidence in practice"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1349982\",\"titles\":[\"Competency, confidence and conflicting evidence: key issues affecting health visitors\\u0027 use of research evidence in practice\"],\"abstracts\":[\"BACKGROUND: Health visitors play a pivotal position in providing parents with up-to-date evidence-based care on child health. The recent controversy over the safety of the MMR vaccine has drawn attention to the difficulties they face when new research which raises doubts about current guidelines and practices is published. In the aftermath of the MMR controversy, this paper investigates the sources health visitors use to find out about new research evidence on immunisation and examines barriers and facilitators to using evidence in practice. It also assesses health visitors\\u0027 confidence in using research evidence. METHODS: Health visitors were recruited from the 2007 UK Community Practitioners\\u0027 and Health Visitors\\u0027 Association conference. All delegates were eligible to complete the questionnaire if in their current professional role they advise parents about childhood immunisation or administer vaccines to children. Of 228 who were eligible, 185 completed the survey (81.1%). RESULTS: These health visitors used a wide range of resources to find out about new research evidence on childhood immunisation. Popular sources included information leaflets and publications, training days, nursing journals and networking with colleagues. A lack of time was cited as the main barrier to searching for new evidence. The most common reason given for not using research in practice was a perception of conflicting research evidence. Understanding the evidence was a key facilitator. Health visitors expressed less confidence about searching and explaining research on childhood immunisation than evidence on weaning and a baby\\u0027s sleep position. CONCLUSION: Even motivated health visitors feel they lack the time and, in some cases, the skills to locate and appraise research evidence. This research suggests that of the provision of already-appraised research would help to keep busy health professionals informed, up-to-date and confident in responding to public concerns, particularly when there is apparently conflicting evidence. Health visitors\\u0027 relative lack of confidence about research on immunisation suggests there is still a job to be done in rebuilding confidence in evidence on childhood immunisation. Further research on what makes evidence more comprehensible, convincing and useable would contribute to understanding how to bridge the gulf between evidence and practice.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hilton, S.\",\"Bedford, H.\",\"Calnan, M.\",\"Hunt, K.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"10.1186/1472-6955-8-4\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1349982/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1186/1472-6955-8-4\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2679743\",\"id\":\"oai:europepmc.org:1852208\"},\"trust\":0.84812194}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1349982"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hilton, S.","Bedford, H.","Calnan, M.","Hunt, K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1852208"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.84812194},"target_publication_title":{"type":"STRING","value":"Competency, confidence and conflicting evidence: key issues affecting health visitors\u0027 use of research evidence in practice"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1349982\",\"titles\":[\"Competency, confidence and conflicting evidence: key issues affecting health visitors\\u0027 use of research evidence in practice\"],\"abstracts\":[\"BACKGROUND: Health visitors play a pivotal position in providing parents with up-to-date evidence-based care on child health. The recent controversy over the safety of the MMR vaccine has drawn attention to the difficulties they face when new research which raises doubts about current guidelines and practices is published. In the aftermath of the MMR controversy, this paper investigates the sources health visitors use to find out about new research evidence on immunisation and examines barriers and facilitators to using evidence in practice. It also assesses health visitors\\u0027 confidence in using research evidence. METHODS: Health visitors were recruited from the 2007 UK Community Practitioners\\u0027 and Health Visitors\\u0027 Association conference. All delegates were eligible to complete the questionnaire if in their current professional role they advise parents about childhood immunisation or administer vaccines to children. Of 228 who were eligible, 185 completed the survey (81.1%). RESULTS: These health visitors used a wide range of resources to find out about new research evidence on childhood immunisation. Popular sources included information leaflets and publications, training days, nursing journals and networking with colleagues. A lack of time was cited as the main barrier to searching for new evidence. The most common reason given for not using research in practice was a perception of conflicting research evidence. Understanding the evidence was a key facilitator. Health visitors expressed less confidence about searching and explaining research on childhood immunisation than evidence on weaning and a baby\\u0027s sleep position. CONCLUSION: Even motivated health visitors feel they lack the time and, in some cases, the skills to locate and appraise research evidence. This research suggests that of the provision of already-appraised research would help to keep busy health professionals informed, up-to-date and confident in responding to public concerns, particularly when there is apparently conflicting evidence. Health visitors\\u0027 relative lack of confidence about research on immunisation suggests there is still a job to be done in rebuilding confidence in evidence on childhood immunisation. Further research on what makes evidence more comprehensible, convincing and useable would contribute to understanding how to bridge the gulf between evidence and practice.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hilton, S.\",\"Bedford, H.\",\"Calnan, M.\",\"Hunt, K.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"PMC2679743\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1349982/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2679743\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2679743\",\"id\":\"oai:europepmc.org:1852208\"},\"trust\":0.84812194}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1349982"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hilton, S.","Bedford, H.","Calnan, M.","Hunt, K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1852208"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.84812194},"target_publication_title":{"type":"STRING","value":"Competency, confidence and conflicting evidence: key issues affecting health visitors\u0027 use of research evidence in practice"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1349982\",\"titles\":[\"Competency, confidence and conflicting evidence: key issues affecting health visitors\\u0027 use of research evidence in practice\"],\"abstracts\":[\"BACKGROUND: Health visitors play a pivotal position in providing parents with up-to-date evidence-based care on child health. The recent controversy over the safety of the MMR vaccine has drawn attention to the difficulties they face when new research which raises doubts about current guidelines and practices is published. In the aftermath of the MMR controversy, this paper investigates the sources health visitors use to find out about new research evidence on immunisation and examines barriers and facilitators to using evidence in practice. It also assesses health visitors\\u0027 confidence in using research evidence. METHODS: Health visitors were recruited from the 2007 UK Community Practitioners\\u0027 and Health Visitors\\u0027 Association conference. All delegates were eligible to complete the questionnaire if in their current professional role they advise parents about childhood immunisation or administer vaccines to children. Of 228 who were eligible, 185 completed the survey (81.1%). RESULTS: These health visitors used a wide range of resources to find out about new research evidence on childhood immunisation. Popular sources included information leaflets and publications, training days, nursing journals and networking with colleagues. A lack of time was cited as the main barrier to searching for new evidence. The most common reason given for not using research in practice was a perception of conflicting research evidence. Understanding the evidence was a key facilitator. Health visitors expressed less confidence about searching and explaining research on childhood immunisation than evidence on weaning and a baby\\u0027s sleep position. CONCLUSION: Even motivated health visitors feel they lack the time and, in some cases, the skills to locate and appraise research evidence. This research suggests that of the provision of already-appraised research would help to keep busy health professionals informed, up-to-date and confident in responding to public concerns, particularly when there is apparently conflicting evidence. Health visitors\\u0027 relative lack of confidence about research on immunisation suggests there is still a job to be done in rebuilding confidence in evidence on childhood immunisation. Further research on what makes evidence more comprehensible, convincing and useable would contribute to understanding how to bridge the gulf between evidence and practice.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hilton, S.\",\"Bedford, H.\",\"Calnan, M.\",\"Hunt, K.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"19379494\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1349982/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"19379494\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2679743\",\"id\":\"oai:europepmc.org:1852208\"},\"trust\":0.84812194}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1349982"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hilton, S.","Bedford, H.","Calnan, M.","Hunt, K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1852208"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.84812194},"target_publication_title":{"type":"STRING","value":"Competency, confidence and conflicting evidence: key issues affecting health visitors\u0027 use of research evidence in practice"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1852208\",\"titles\":[\"Competency, confidence and conflicting evidence: key issues affecting health visitors\\u0027 use of research evidence in practice\"],\"abstracts\":[\"Background Health visitors play a pivotal position in providing parents with up-to-date evidence-based care on child health. The recent controversy over the safety of the MMR vaccine has drawn attention to the difficulties they face when new research which raises doubts about current guidelines and practices is published. In the aftermath of the MMR controversy, this paper investigates the sources health visitors use to find out about new research evidence on immunisation and examines barriers and facilitators to using evidence in practice. It also assesses health visitors\\u0027 confidence in using research evidence. Methods Health visitors were recruited from the 2007 UK Community Practitioners\\u0027 and Health Visitors\\u0027 Association conference. All delegates were eligible to complete the questionnaire if in their current professional role they advise parents about childhood immunisation or administer vaccines to children. Of 228 who were eligible, 185 completed the survey (81.1%). Results These health visitors used a wide range of resources to find out about new research evidence on childhood immunisation. Popular sources included information leaflets and publications, training days, nursing journals and networking with colleagues. A lack of time was cited as the main barrier to searching for new evidence. The most common reason given for not using research in practice was a perception of conflicting research evidence. Understanding the evidence was a key facilitator. Health visitors expressed less confidence about searching and explaining research on childhood immunisation than evidence on weaning and a baby\\u0027s sleep position. Conclusion Even motivated health visitors feel they lack the time and, in some cases, the skills to locate and appraise research evidence. This research suggests that of the provision of already-appraised research would help to keep busy health professionals informed, up-to-date and confident in responding to public concerns, particularly when there is apparently conflicting evidence. Health visitors\\u0027 relative lack of confidence about research on immunisation suggests there is still a job to be done in rebuilding confidence in evidence on childhood immunisation. Further research on what makes evidence more comprehensible, convincing and useable would contribute to understanding how to bridge the gulf between evidence and practice.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Hilton, Shona\",\"Bedford, Helen\",\"Calnan, Michael\",\"Hunt, Kate\"],\"publicationdate\":\"2009-04-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"BMC Nursing\",\"issn\":\"\",\"eissn\":\"1472-6955\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1472-6955-8-4\",\"type\":\"doi\"},{\"value\":\"PMC2679743\",\"type\":\"pmc\"},{\"value\":\"19379494\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2679743\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.biomedcentral.com/1472-6955/8/4\",\"license\":\"OPEN\",\"hostedby\":\"BMC Nursing\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.biomedcentral.com/1472-6955/8/4\",\"license\":\"OPEN\",\"hostedby\":\"BMC Nursing\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.biomedcentral.com/1472-6955/8/4\",\"id\":\"oai:doaj.org/article:dbdb1a5a455e4c71b56d93994bc70bee\"},\"trust\":0.56589353}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1852208"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hilton, Shona","Bedford, Helen","Calnan, Michael","Hunt, Kate"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:dbdb1a5a455e4c71b56d93994bc70bee"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.56589353},"target_publication_title":{"type":"STRING","value":"Competency, confidence and conflicting evidence: key issues affecting health visitors\u0027 use of research evidence in practice"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1852208\",\"titles\":[\"Competency, confidence and conflicting evidence: key issues affecting health visitors\\u0027 use of research evidence in practice\"],\"abstracts\":[\"Background Health visitors play a pivotal position in providing parents with up-to-date evidence-based care on child health. The recent controversy over the safety of the MMR vaccine has drawn attention to the difficulties they face when new research which raises doubts about current guidelines and practices is published. In the aftermath of the MMR controversy, this paper investigates the sources health visitors use to find out about new research evidence on immunisation and examines barriers and facilitators to using evidence in practice. It also assesses health visitors\\u0027 confidence in using research evidence. Methods Health visitors were recruited from the 2007 UK Community Practitioners\\u0027 and Health Visitors\\u0027 Association conference. All delegates were eligible to complete the questionnaire if in their current professional role they advise parents about childhood immunisation or administer vaccines to children. Of 228 who were eligible, 185 completed the survey (81.1%). Results These health visitors used a wide range of resources to find out about new research evidence on childhood immunisation. Popular sources included information leaflets and publications, training days, nursing journals and networking with colleagues. A lack of time was cited as the main barrier to searching for new evidence. The most common reason given for not using research in practice was a perception of conflicting research evidence. Understanding the evidence was a key facilitator. Health visitors expressed less confidence about searching and explaining research on childhood immunisation than evidence on weaning and a baby\\u0027s sleep position. Conclusion Even motivated health visitors feel they lack the time and, in some cases, the skills to locate and appraise research evidence. This research suggests that of the provision of already-appraised research would help to keep busy health professionals informed, up-to-date and confident in responding to public concerns, particularly when there is apparently conflicting evidence. Health visitors\\u0027 relative lack of confidence about research on immunisation suggests there is still a job to be done in rebuilding confidence in evidence on childhood immunisation. Further research on what makes evidence more comprehensible, convincing and useable would contribute to understanding how to bridge the gulf between evidence and practice.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Hilton, Shona\",\"Bedford, Helen\",\"Calnan, Michael\",\"Hunt, Kate\"],\"publicationdate\":\"2009-04-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"BMC Nursing\",\"issn\":\"\",\"eissn\":\"1472-6955\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1472-6955-8-4\",\"type\":\"doi\"},{\"value\":\"PMC2679743\",\"type\":\"pmc\"},{\"value\":\"19379494\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2679743\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://discovery.ucl.ac.uk/1349982/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1349982/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"UCL Discovery\",\"url\":\"http://discovery.ucl.ac.uk/1349982/\",\"id\":\"oai:eprints.ucl.ac.uk.OAI2:1349982\"},\"trust\":0.8012011}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1852208"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hilton, Shona","Bedford, Helen","Calnan, Michael","Hunt, Kate"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.ucl.ac.uk.OAI2:1349982"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.8012011},"target_publication_title":{"type":"STRING","value":"Competency, confidence and conflicting evidence: key issues affecting health visitors\u0027 use of research evidence in practice"},"provenance_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_dateofacceptance":{"type":"DATE","value":"2009-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/337263\",\"titles\":[\"The prospects for whole-farm risk management: evaluating the impact of a deregulation of agricultural markets\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Agrarische bedrijfseconomie\",\"Business Economics\",\"MGS\",\"MGS\"],\"creators\":[\"Asseldonk, M. A. P. M.\",\"Meuwissen, M. P. M.\",\"Huirne, R. B. M.\",\"Hardaker, J. B.\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/336664\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/337263\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/337263\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/337263\",\"id\":\"wur:oai:library.wur.nl:wurpubs/337263\"},\"trust\":0.72761005}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/337263"},"target_publication_author_list":{"type":"LIST_STRING","value":["Asseldonk, M. A. P. M.","Meuwissen, M. P. M.","Huirne, R. B. M.","Hardaker, J. B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/337263"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Agrarische bedrijfseconomie","Business Economics","MGS","MGS"]},"trust":{"type":"FLOAT","value":0.72761005},"target_publication_title":{"type":"STRING","value":"The prospects for whole-farm risk management: evaluating the impact of a deregulation of agricultural markets"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00622217v1\",\"titles\":[\"Higher Order Radiosity : Using Higher Order Methods in Computer Graphics\"],\"abstracts\":[\"International audience\",\"The light ambiance of a virtual scene is the key of realistic computer generated images. But the computation of the whole light exchanges between elements of a complex scene constitutes a real challenge in computer graphics. Usually, in real-time video games for example, the modelisation of these exchanges remains quite simple. And achieve a realistic representation of lighting requires to solve the global illumination problem which means to compute all light exchanges.\"],\"language\":\"eng\",\"subjects\":[\"Higher Order Methods\",\"Dynamic Radiosity\",\"Temporal Coherence\",\"[INFO.INFO-CL] Computer Science/Computation and Language\"],\"creators\":[\"Biri, Venceslas\"],\"publicationdate\":\"2004-06-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire d\\u0027Informatique Gaspard-Monge (LIGM) ; Université Paris-Est Marne-la-Vallée (UPEMLV) - École des Ponts ParisTech (ENPC) - Fédération de Recherche Bézout - ESIEE - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal-upec-upem.archives-ouvertes.fr/hal-00622217\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal-upec-upem.archives-ouvertes.fr/hal-00622217\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-upec-upem.archives-ouvertes.fr/hal-00622217\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-upec-upem.archives-ouvertes.fr/hal-00622217\",\"id\":\"oai:hal-upec-upem.archives-ouvertes.fr:hal-00622217\"},\"trust\":0.29669893}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00622217v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Biri, Venceslas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal-upec-upem.archives-ouvertes.fr:hal-00622217"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Higher Order Methods","Dynamic Radiosity","Temporal Coherence","[INFO.INFO-CL] Computer Science/Computation and Language"]},"trust":{"type":"FLOAT","value":0.29669893},"target_publication_title":{"type":"STRING","value":"Higher Order Radiosity : Using Higher Order Methods in Computer Graphics"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal-upec-upem.archives-ouvertes.fr:hal-00622217\",\"titles\":[\"Higher Order Radiosity : Using Higher Order Methods in Computer Graphics\"],\"abstracts\":[\"The light ambiance of a virtual scene is the key of realistic computer generated images. But the computation of the whole light exchanges between elements of a complex scene constitutes a real challenge in computer graphics. Usually, in real-time video games for example, the modelisation of these exchanges remains quite simple. And achieve a realistic representation of lighting requires to solve the global illumination problem which means to compute all light exchanges.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_CL] Computer Science/Computation and Language\",\"[INFO:INFO_CL] Informatique/Informatique et langage\",\"Higher Order Methods\",\"Dynamic Radiosity\",\"Temporal Coherence\"],\"creators\":[\"Biri, Venceslas\"],\"publicationdate\":\"2004-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal-upec-upem.archives-ouvertes.fr/hal-00622217\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal-upec-upem.archives-ouvertes.fr/hal-00622217\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal-upec-upem.archives-ouvertes.fr/hal-00622217\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal-upec-upem.archives-ouvertes.fr/hal-00622217\",\"id\":\"oai:HAL:hal-00622217v1\"},\"trust\":0.82989836}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal-upec-upem.archives-ouvertes.fr:hal-00622217"},"target_publication_author_list":{"type":"LIST_STRING","value":["Biri, Venceslas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00622217v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_CL] Computer Science/Computation and Language","[INFO:INFO_CL] Informatique/Informatique et langage","Higher Order Methods","Dynamic Radiosity","Temporal Coherence"]},"trust":{"type":"FLOAT","value":0.82989836},"target_publication_title":{"type":"STRING","value":"Higher Order Radiosity : Using Higher Order Methods in Computer Graphics"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1796266\",\"titles\":[\"Changes in weight loss, body composition and cardiovascular disease risk after altering macronutrient distributions during a regular exercise program in obese women\"],\"abstracts\":[\"Background This study\\u0027s purpose investigated the impact of different macronutrient distributions and varying caloric intakes along with regular exercise for metabolic and physiological changes related to weight loss. Methods One hundred forty-one sedentary, obese women (38.7 ± 8.0 yrs, 163.3 ± 6.9 cm, 93.2 ± 16.5 kg, 35.0 ± 6.2 kg•m-2, 44.8 ± 4.2% fat) were randomized to either no diet + no exercise control group (CON) a no diet + exercise control (ND), or one of four diet + exercise groups (high-energy diet [HED], very low carbohydrate, high protein diet [VLCHP], low carbohydrate, moderate protein diet [LCMP] and high carbohydrate, low protein [HCLP]) in addition to beginning a 3x•week-1 supervised resistance training program. After 0, 1, 10 and 14 weeks, all participants completed testing sessions which included anthropometric, body composition, energy expenditure, fasting blood samples, aerobic and muscular fitness assessments. Data were analyzed using repeated measures ANOVA with an alpha of 0.05 with LSD post-hoc analysis when appropriate. Results All dieting groups exhibited adequate compliance to their prescribed diet regimen as energy and macronutrient amounts and distributions were close to prescribed amounts. Those groups that followed a diet and exercise program reported significantly greater anthropometric (waist circumference and body mass) and body composition via DXA (fat mass and % fat) changes. Caloric restriction initially reduced energy expenditure, but successfully returned to baseline values after 10 weeks of dieting and exercising. Significant fitness improvements (aerobic capacity and maximal strength) occurred in all exercising groups. No significant changes occurred in lipid panel constituents, but serum insulin and HOMA-IR values decreased in the VLCHP group. Significant reductions in serum leptin occurred in all caloric restriction + exercise groups after 14 weeks, which were unchanged in other non-diet/non-exercise groups. Conclusions Overall and over the entire test period, all diet groups which restricted their caloric intake and exercised experienced similar responses to each other. Regular exercise and modest caloric restriction successfully promoted anthropometric and body composition improvements along with various markers of muscular fitness. Significant increases in relative energy expenditure and reductions in circulating leptin were found in response to all exercise and diet groups. Macronutrient distribution may impact circulating levels of insulin and overall ability to improve strength levels in obese women who follow regular exercise.\"],\"language\":\"eng\",\"subjects\":[\"Research\"],\"creators\":[\"Kerksick, Chad M.\",\"Wismann-Bunn, Jennifer\",\"Fogt, Donovan\",\"Thomas, Ashli R.\",\"Taylor, Lem\",\"Campbell, Bill I.\",\"Wilborn, Colin D.\",\"Harvey, Travis\",\"Roberts, Mike D.\",\"La Bounty, Paul\"],\"publicationdate\":\"2010-11-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Nutrition Journal\",\"issn\":\"\",\"eissn\":\"1475-2891\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1475-2891-9-59\",\"type\":\"doi\"},{\"value\":\"PMC3000832\",\"type\":\"pmc\"},{\"value\":\"21092228\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3000832\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.nutritionj.com/content/9/1/59\",\"license\":\"OPEN\",\"hostedby\":\"Nutrition Journal\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.nutritionj.com/content/9/1/59\",\"license\":\"OPEN\",\"hostedby\":\"Nutrition Journal\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.nutritionj.com/content/9/1/59\",\"id\":\"oai:doaj.org/article:c199e3354d144b078b47dd3439d11596\"},\"trust\":0.8098694}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1796266"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kerksick, Chad M.","Wismann-Bunn, Jennifer","Fogt, Donovan","Thomas, Ashli R.","Taylor, Lem","Campbell, Bill I.","Wilborn, Colin D.","Harvey, Travis","Roberts, Mike D.","La Bounty, Paul"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:c199e3354d144b078b47dd3439d11596"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research"]},"trust":{"type":"FLOAT","value":0.8098694},"target_publication_title":{"type":"STRING","value":"Changes in weight loss, body composition and cardiovascular disease risk after altering macronutrient distributions during a regular exercise program in obese women"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2010-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2418366\",\"titles\":[\"JAK-STAT and AKT pathway-coupled genes in erythroid progenitor cells through ontogeny\"],\"abstracts\":[\"Background It has been reported that the phosphatidylinositol 3-kinase (PI3K)-AKT signaling pathway regulates erythropoietin (EPO)-induced survival, proliferation, and maturation of early erythroid progenitors. Erythroid cell proliferation and survival have also been related to activation of the JAK-STAT pathway. The goal of this study was to observe the function of EPO activation of JAK-STAT and PI3K/AKT pathways in the development of erythroid progenitors from hematopoietic CD34+ progenitor cells, as well as to distinguish early EPO target genes in human erythroid progenitors during ontogeny. Methods Hematopoietic CD34+ progenitor cells, isolated from fetal and adult hematopoietic tissues, were differentiated into erythroid progenitor cells. We have used microarray analysis to examine JAK-STAT and PI3K/AKT related genes, as well as broad gene expression modulation in these human erythroid progenitor cells. Results In microarray studies, a total of 1755 genes were expressed in fetal liver, 3844 in cord blood, 1770 in adult bone marrow, and 1325 genes in peripheral blood-derived erythroid progenitor cells. The erythroid progenitor cells shared 1011 common genes. Using the Ingenuity Pathways Analysis software, we evaluated the network pathways of genes linked to hematological system development, cellular growth and proliferation. The KITLG, EPO, GATA1, PIM1 and STAT3 genes represent the major connection points in the hematological system development linked genes. Some JAK-STAT signaling pathway-linked genes were steadily upregulated throughout ontogeny (PIM1, SOCS2, MYC, PTPN11), while others were downregulated (PTPN6, PIAS, SPRED2). In addition, some JAK-STAT pathway related genes are differentially expressed only in some stages of ontogeny (STATs, GRB2, CREBB). Beside the continuously upregulated (AKT1, PPP2CA, CHUK, NFKB1) and downregulated (FOXO1, PDPK1, PIK3CG) genes in the PI3K-AKT signaling pathway, we also observed intermittently regulated gene expression (NFKBIA, YWHAH). Conclusions This broad overview of gene expression in erythropoiesis revealed transcription factors differentially expressed in some stages of ontogenesis. Finally, our results show that EPO-mediated proliferation and survival of erythroid progenitors occurs mainly through modulation of JAK-STAT pathway associated STATs, GRB2 and PIK3 genes, as well as AKT pathway-coupled NFKBIA and YWHAH genes.\"],\"language\":\"eng\",\"subjects\":[\"Research\",\"Erythroid progenitors\",\"Microarray\",\"Ontogeny\",\"JAK-STAT pathway\",\"AKT pathway\"],\"creators\":[\"Cokic, Vladan P.\",\"Bhattacharya, Bhaskar\",\"Beleslin-Cokic, Bojana B.\",\"Noguchi, Constance T.\",\"Puri, Raj K.\",\"Schechter, Alan N.\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Translational Medicine\",\"issn\":\"\",\"eissn\":\"1479-5876\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1479-5876-10-116\",\"type\":\"doi\"},{\"value\":\"PMC3412720\",\"type\":\"pmc\"},{\"value\":\"22676255\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3412720\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.translational-medicine.com/content/10/1/116\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Translational Medicine\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.translational-medicine.com/content/10/1/116\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Translational Medicine\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.translational-medicine.com/content/10/1/116\",\"id\":\"oai:doaj.org/article:5823fab0d1d04104a2d97e67d8b20402\"},\"trust\":0.4395815}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2418366"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cokic, Vladan P.","Bhattacharya, Bhaskar","Beleslin-Cokic, Bojana B.","Noguchi, Constance T.","Puri, Raj K.","Schechter, Alan N."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:5823fab0d1d04104a2d97e67d8b20402"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research","Erythroid progenitors","Microarray","Ontogeny","JAK-STAT pathway","AKT pathway"]},"trust":{"type":"FLOAT","value":0.4395815},"target_publication_title":{"type":"STRING","value":"JAK-STAT and AKT pathway-coupled genes in erythroid progenitor cells through ontogeny"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.up.ac.za:2263/30740\",\"titles\":[\"Reflections on the development of professional identity in professional psychology training…\"],\"abstracts\":[\"Welcome, you are about to witness and be a part of a discussion between the author of this research report (myself) and a powerful South African institution that regulates academic psychology as well as psychology practice. I am referring to the Health Professions Council of South Africa, more specifically the Board of Psychology. I have chosen to present this research report in the form of an imaginary conversation between the Board of Psychology and myself regarding my professional identity development. More specifically, what this small study aimed to look at was how my experience of professional identity developed and evolved over time during my postgraduate training in psychology. The main reason for this particular form of presentation is that it is congruent with the research position that I have adopted as my lens for this research project, namely the Narrative Metaphor. As we go further and further into the discussion between the Health Professions Council’s Board of Psychology and myself, you the reader and as such, a participant in and of this text may begin to understand what this text may be about and make meaning of what is presented based on your own frame of reference. There may be a multiplicity of meanings that evolve out of this text because each reader of this text will interpret what is being said differently based on their personal frames of reference. Copyright\"],\"language\":\"und\",\"subjects\":[\"Narrative\",\"Self-narrative\",\"Self-story\",\"Experience\",\"Reflection\",\"Self-reflection study\",\"Supervision\",\"Story\",\"Professional identity development\"],\"creators\":[\"Seedat, Ruqayya\"],\"publicationdate\":\"2009-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UPSpace at the University of Pretoria\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2263/30740\",\"license\":\"OPEN\",\"hostedby\":\"UPSpace at the University of Pretoria\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"http://upetd.up.ac.za/thesis/available/etd-04082010-195820/\",\"license\":\"OPEN\",\"hostedby\":\"University of Pretoria Electronic Theses and Dissertations\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://upetd.up.ac.za/thesis/available/etd-04082010-195820/\",\"license\":\"OPEN\",\"hostedby\":\"University of Pretoria Electronic Theses and Dissertations\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"University of Pretoria Electronic Theses and Dissertations\",\"url\":\"http://upetd.up.ac.za/thesis/available/etd-04082010-195820/\",\"id\":\"oai:UP:etd-04082010-195820\"},\"trust\":0.95202917}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UPSpace at the University of Pretoria"},"target_publication_id":{"type":"STRING","value":"oai:repository.up.ac.za:2263/30740"},"target_publication_author_list":{"type":"LIST_STRING","value":["Seedat, Ruqayya"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:UP:etd-04082010-195820"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b3967a0e938dc2a6340e258630febd5a"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Narrative","Self-narrative","Self-story","Experience","Reflection","Self-reflection study","Supervision","Story","Professional identity development"]},"trust":{"type":"FLOAT","value":0.95202917},"target_publication_title":{"type":"STRING","value":"Reflections on the development of professional identity in professional psychology training…"},"provenance_datasource_name":{"type":"STRING","value":"University of Pretoria Electronic Theses and Dissertations"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::291597a100aadd814d197af4f4bab3a7"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:UP:etd-04082010-195820\",\"titles\":[\"Reflections on the development of professional identity in professional psychology training\"],\"abstracts\":[\"\\u003cp\\u003eWelcome, you are about to witness and be a part of a discussion between the author of this research report (myself) and a powerful South African institution that regulates academic psychology as well as psychology practice. I am referring to the Health Professions Council of South Africa, more specifically the Board of Psychology. I have chosen to present this research report in the form of an imaginary conversation between the Board of Psychology and myself regarding my professional identity development. More specifically, what this small study aimed to look at was how my experience of professional identity developed and evolved over time during my postgraduate training in psychology.\\u003c/p\\u003e\\n\\u003cp\\u003eThe main reason for this particular form of presentation is that it is congruent with the research position that I have adopted as my lens for this research project, namely the Narrative Metaphor. As we go further and further into the discussion between the Health Professions Councils Board of Psychology and myself, you the reader and as such, a participant in and of this text may begin to understand what this text may be about and make meaning of what is presented based on your own frame of reference. There may be a multiplicity of meanings that evolve out of this text because each reader of this text will interpret what is being said differently based on their personal frames of reference.\\u003c/p\\u003e\\n\\u003cp\\u003eCopyright © 2008, University of Pretoria. All rights reserved. The copyright in this work vests in the University of Pretoria. No part of this work may be reproduced or transmitted in any form or by any means, without the prior written permission of the University of Pretoria.\\u003c/p\\u003e\\n\\u003cp\\u003e\\u003cu\\u003ePlease cite as follows:\\u003c/u\\u003e\\u003c/p\\u003e\\n\\u003cp\\u003eSeedat, R 2008, \\u003ci\\u003eReflections on the development of professional identity in professional psychology training\\u003c/i\\u003e, MA dissertation, University of Pretoria, Pretoria, viewed \\u003ci\\u003eyymmdd\\u003c/i\\u003e \\u003c http://upetd.up.ac.za/thesis/available/etd-04082010-195820/ \\u003e\\u003c/p\\u003e\\nF10/186/gm\\n\"],\"language\":\"und\",\"subjects\":[\"Psychology\"],\"creators\":[\"Seedat, Ruqayya\"],\"publicationdate\":\"2010-04-08\",\"publisher\":\"University of Pretoria\",\"embargoenddate\":\"\",\"contributor\":[\"Dr L H Human\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"University of Pretoria Electronic Theses and Dissertations\"],\"pids\":[],\"instances\":[{\"url\":\"http://upetd.up.ac.za/thesis/available/etd-04082010-195820/\",\"license\":\"OPEN\",\"hostedby\":\"University of Pretoria Electronic Theses and Dissertations\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/2263/30740\",\"license\":\"OPEN\",\"hostedby\":\"UPSpace at the University of Pretoria\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2263/30740\",\"license\":\"OPEN\",\"hostedby\":\"UPSpace at the University of Pretoria\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"UPSpace at the University of Pretoria\",\"url\":\"http://hdl.handle.net/2263/30740\",\"id\":\"oai:repository.up.ac.za:2263/30740\"},\"trust\":0.027409732}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"University of Pretoria Electronic Theses and Dissertations"},"target_publication_id":{"type":"STRING","value":"oai:UP:etd-04082010-195820"},"target_publication_author_list":{"type":"LIST_STRING","value":["Seedat, Ruqayya"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repository.up.ac.za:2263/30740"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::291597a100aadd814d197af4f4bab3a7"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Psychology"]},"trust":{"type":"FLOAT","value":0.027409732},"target_publication_title":{"type":"STRING","value":"Reflections on the development of professional identity in professional psychology training"},"provenance_datasource_name":{"type":"STRING","value":"UPSpace at the University of Pretoria"},"target_dateofacceptance":{"type":"DATE","value":"2010-04-08"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b3967a0e938dc2a6340e258630febd5a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:digirep.rhul.ac.uk:de5e1286-6fb0-5cf9-8f04-81886de61291/5\",\"titles\":[\"Defeating Network Node Subversion on SCADA Systems Using Probabilistic Packet Observation\"],\"abstracts\":[\"Supervisory control and data acquisition (SCADA) systems form a vital part of the critical infrastructure. Such systems have been subject to sophisticated and persistent attacks which are executed by processes under adversary supervision. Such attacks may be detected using inconsistencies in sensor readings or estimated behavior of the plant. However, to locate and eliminate malicious “agents” in networks, novel protocols are required to observe messaging behavior. In this paper, we propose a novel network protocol for SCADA systems which, for low computational cost, permits discovery and elimination of subverted nodes utilizing techniques related to probabilistic packet marking. We discuss its advantages over earlier work in this area, calculate message complexity requirements for detection and outline its resilience to various attack strategies.\"],\"language\":\"eng\",\"subjects\":[\"Faculty of Science\\\\Mathematics\"],\"creators\":[\"Mcevoy, Richard\",\"Wolthusen, Stephen D.\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Springer-Verlag\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Royal Holloway Research Online\"],\"pids\":[],\"instances\":[{\"url\":\"http://digirep.rhul.ac.uk/items/de5e1286-6fb0-5cf9-8f04-81886de61291/5/\",\"license\":\"OPEN\",\"hostedby\":\"Royal Holloway Research Online\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"http://digirep.rhul.ac.uk/items/de5e1286-6fb0-5cf9-8f04-81886de61291/6/\",\"license\":\"OPEN\",\"hostedby\":\"Royal Holloway Research Online\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://digirep.rhul.ac.uk/items/de5e1286-6fb0-5cf9-8f04-81886de61291/6/\",\"license\":\"OPEN\",\"hostedby\":\"Royal Holloway Research Online\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"Royal Holloway Research Online\",\"url\":\"http://digirep.rhul.ac.uk/items/de5e1286-6fb0-5cf9-8f04-81886de61291/6/\",\"id\":\"oai:digirep.rhul.ac.uk:de5e1286-6fb0-5cf9-8f04-81886de61291/6\"},\"trust\":0.40741098}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Royal Holloway Research Online"},"target_publication_id":{"type":"STRING","value":"oai:digirep.rhul.ac.uk:de5e1286-6fb0-5cf9-8f04-81886de61291/5"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mcevoy, Richard","Wolthusen, Stephen D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:digirep.rhul.ac.uk:de5e1286-6fb0-5cf9-8f04-81886de61291/6"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::d395771085aab05244a4fb8fd91bf4ee"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Faculty of Science\\Mathematics"]},"trust":{"type":"FLOAT","value":0.40741098},"target_publication_title":{"type":"STRING","value":"Defeating Network Node Subversion on SCADA Systems Using Probabilistic Packet Observation"},"provenance_datasource_name":{"type":"STRING","value":"Royal Holloway Research Online"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d395771085aab05244a4fb8fd91bf4ee"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:digirep.rhul.ac.uk:de5e1286-6fb0-5cf9-8f04-81886de61291/6\",\"titles\":[\"Defeating Network Node Subversion on SCADA Systems Using Probabilistic Packet Observation\"],\"abstracts\":[\"Supervisory control and data acquisition (SCADA) systems form a vital part of the critical infrastructure. Such systems have been subject to sophisticated and persistent attacks which are executed by processes under adversary supervision. Such attacks may be detected using inconsistencies in sensor readings or estimated behavior of the plant. However, to locate and eliminate malicious “agents” in networks, novel protocols are required to observe messaging behavior. In this paper, we propose a novel network protocol for SCADA systems which, for low computational cost, permits discovery and elimination of subverted nodes utilizing techniques related to probabilistic packet marking. We discuss its advantages over earlier work in this area, calculate message complexity requirements for detection and outline its resilience to various attack strategies.\"],\"language\":\"eng\",\"subjects\":[\"Faculty of Science\\\\Mathematics\"],\"creators\":[\"Mcevoy, Richard\",\"Wolthusen, Stephen D.\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Springer-Verlag\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Royal Holloway Research Online\"],\"pids\":[],\"instances\":[{\"url\":\"http://digirep.rhul.ac.uk/items/de5e1286-6fb0-5cf9-8f04-81886de61291/6/\",\"license\":\"OPEN\",\"hostedby\":\"Royal Holloway Research Online\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"http://digirep.rhul.ac.uk/items/de5e1286-6fb0-5cf9-8f04-81886de61291/5/\",\"license\":\"OPEN\",\"hostedby\":\"Royal Holloway Research Online\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://digirep.rhul.ac.uk/items/de5e1286-6fb0-5cf9-8f04-81886de61291/5/\",\"license\":\"OPEN\",\"hostedby\":\"Royal Holloway Research Online\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"Royal Holloway Research Online\",\"url\":\"http://digirep.rhul.ac.uk/items/de5e1286-6fb0-5cf9-8f04-81886de61291/5/\",\"id\":\"oai:digirep.rhul.ac.uk:de5e1286-6fb0-5cf9-8f04-81886de61291/5\"},\"trust\":0.9908287}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Royal Holloway Research Online"},"target_publication_id":{"type":"STRING","value":"oai:digirep.rhul.ac.uk:de5e1286-6fb0-5cf9-8f04-81886de61291/6"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mcevoy, Richard","Wolthusen, Stephen D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:digirep.rhul.ac.uk:de5e1286-6fb0-5cf9-8f04-81886de61291/5"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::d395771085aab05244a4fb8fd91bf4ee"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Faculty of Science\\Mathematics"]},"trust":{"type":"FLOAT","value":0.9908287},"target_publication_title":{"type":"STRING","value":"Defeating Network Node Subversion on SCADA Systems Using Probabilistic Packet Observation"},"provenance_datasource_name":{"type":"STRING","value":"Royal Holloway Research Online"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d395771085aab05244a4fb8fd91bf4ee"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dare.ubvu.vu.nl:1871/32111\",\"titles\":[\"Ecological Theories and Indicators in Economic Models of Biodiversity Loss and Conservation: A Critical Review\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Eppink, F. V.\",\"Bergh, J. C. J. M. Den\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at VU\"],\"pids\":[{\"value\":\"10.1016/j.ecolecon.2006.01.013\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1871/32111\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1871/32061\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1871/32061\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DSpace at VU\",\"url\":\"http://hdl.handle.net/1871/32061\",\"id\":\"oai:dare.ubvu.vu.nl:1871/32061\"},\"trust\":0.30577558}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_publication_id":{"type":"STRING","value":"oai:dare.ubvu.vu.nl:1871/32111"},"target_publication_author_list":{"type":"LIST_STRING","value":["Eppink, F. V.","Bergh, J. C. J. M. Den"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dare.ubvu.vu.nl:1871/32061"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"},"trust":{"type":"FLOAT","value":0.30577558},"target_publication_title":{"type":"STRING","value":"Ecological Theories and Indicators in Economic Models of Biodiversity Loss and Conservation: A Critical Review"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dare.ubvu.vu.nl:1871/32061\",\"titles\":[\"Ecological theories and indicators in economic models of biodiversity loss and conservation: a critical review.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Eppink, F. V.\",\"Bergh, J. C. J. M. Den\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at VU\"],\"pids\":[{\"value\":\"10.1016/j.ecolecon.2006.01.013\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1871/32061\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1871/32111\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1871/32111\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DSpace at VU\",\"url\":\"http://hdl.handle.net/1871/32111\",\"id\":\"oai:dare.ubvu.vu.nl:1871/32111\"},\"trust\":0.7065987}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_publication_id":{"type":"STRING","value":"oai:dare.ubvu.vu.nl:1871/32061"},"target_publication_author_list":{"type":"LIST_STRING","value":["Eppink, F. V.","Bergh, J. C. J. M. Den"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dare.ubvu.vu.nl:1871/32111"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"},"trust":{"type":"FLOAT","value":0.7065987},"target_publication_title":{"type":"STRING","value":"Ecological theories and indicators in economic models of biodiversity loss and conservation: a critical review."},"provenance_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repozytorium.umk.pl:item/1977\",\"titles\":[\"Plus ratio quam vis. Propozycja współczesnego dialogu edukacji z religią\"],\"abstracts\":[\"The main aim of this article is to present a proposal of modern education – religion dialogue; an attempt to answer a question – how contemporarily religious education should look like. In a religious education, which can be described as “the one which comes out of a man and is focused on a man”, a central point of educational process is a man indeed. At the basis of presented conception lies a famous maxim of a great learned Paweł Włodkowic – Plus ratio quam vis , the motto which later has been taken over by many European Universities as a credo of its academical activity. This maxim literally can be understood as: More reason than strength. The author refers to the classic anthropology and affirms that today’s society of “pace”, “adventure” and “risk”, in the name of counteraction of it’s own break-up should protect the fields of individuals’ identification and, on the other hand, should cherish the ability of dialogue and understanding. This can be achieved by the project of effective relation between Church, religion and education, in order to leave “dialogique” trace in human existence.\",\"Edukacja religijna realizuje najpełniej rozwój osobowy człowieka, połączony z pozytywną koncepcją jego wolności i z określonym wyobrażeniem dialogu. Współczesna szkoła w swej działalności wychowawczej nie może pomijać zatem wartości mających swe źródło w religii i przynależnych do sfery sacrum , niezależnie od pluralizmu światopoglądowego. Bowiem to nie sankcje zawarte implicite w normach społecznych i przepisach prawa, ale religijny i moralny nakaz sumienia, lub jeśli kto woli przymus wewnętrzny, jest pewniejszą, choć wcale nie łatwiejszą drogą do respektowania podstawowych zasad moralnych. Warto przypomnieć, że już w latach międzywojennych Sergiusz Hessen dostrzegał w wychowaniu religijnym i w głosie sumienia jedyną drogę do uzyskania przez jednostkę autonomii moralnej. Mówił: „Wychowanie wymaga przede wszystkim osobistego i wolnego udziału wychowanka w duchowych wartościach i dlatego nie może istnieć bez swobodnego wysiłku osobistego sumienia wychowanka”. O istocie wychowania rozstrzyga bowiem samowychowanie się jednostki ludzkiej dążącej do tego, by stać się autonomiczną osobowością.\"],\"language\":\"pol\",\"subjects\":[],\"creators\":[\"Michalski, Jarosław\"],\"publicationdate\":\"2012-11-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repository of Nicolaus Copernicus University\"],\"pids\":[{\"value\":\"10.12775/PCh.2010.025\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://repozytorium.umk.pl/handle/item/1977\",\"license\":\"OPEN\",\"hostedby\":\"Repository of Nicolaus Copernicus University\",\"instancetype\":\"Article\"},{\"url\":\"http://repozytorium.umk.pl/handle/item/1977\",\"license\":\"OPEN\",\"hostedby\":\"Repozytorium Uniwersytetu Mikołaja Kopernika\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repozytorium.umk.pl/handle/item/1977\",\"license\":\"OPEN\",\"hostedby\":\"Repozytorium Uniwersytetu Mikołaja Kopernika\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Repozytorium Uniwersytetu Mikołaja Kopernika\",\"url\":\"http://repozytorium.umk.pl/handle/item/1977\",\"id\":\"oai:repozytorium.umk.pl:item/1977\"},\"trust\":0.9963981}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repository of Nicolaus Copernicus University"},"target_publication_id":{"type":"STRING","value":"oai:repozytorium.umk.pl:item/1977"},"target_publication_author_list":{"type":"LIST_STRING","value":["Michalski, Jarosław"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repozytorium.umk.pl:item/1977"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::d90775d3c9c1f9069b98af3df0f2349d"},"trust":{"type":"FLOAT","value":0.9963981},"target_publication_title":{"type":"STRING","value":"Plus ratio quam vis. Propozycja współczesnego dialogu edukacji z religią"},"provenance_datasource_name":{"type":"STRING","value":"Repozytorium Uniwersytetu Mikołaja Kopernika"},"target_dateofacceptance":{"type":"DATE","value":"2012-11-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::852c44ddce7e0c7e4c64d86147300831"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repozytorium.umk.pl:item/1977\",\"titles\":[\"Plus ratio quam vis. Propozycja współczesnego dialogu edukacji z religią\"],\"abstracts\":[\"The main aim of this article is to present a proposal of modern education – religion dialogue; an attempt to answer a question – how contemporarily religious education should look like. In a religious education, which can be described as “the one which comes out of a man and is focused on a man”, a central point of educational process is a man indeed. At the basis of presented conception lies a famous maxim of a great learned Paweł Włodkowic – Plus ratio quam vis , the motto which later has been taken over by many European Universities as a credo of its academical activity. This maxim literally can be understood as: More reason than strength. The author refers to the classic anthropology and affirms that today’s society of “pace”, “adventure” and “risk”, in the name of counteraction of it’s own break-up should protect the fields of individuals’ identification and, on the other hand, should cherish the ability of dialogue and understanding. This can be achieved by the project of effective relation between Church, religion and education, in order to leave “dialogique” trace in human existence.\",\"Edukacja religijna realizuje najpełniej rozwój osobowy człowieka, połączony z pozytywną koncepcją jego wolności i z określonym wyobrażeniem dialogu. Współczesna szkoła w swej działalności wychowawczej nie może pomijać zatem wartości mających swe źródło w religii i przynależnych do sfery sacrum , niezależnie od pluralizmu światopoglądowego. Bowiem to nie sankcje zawarte implicite w normach społecznych i przepisach prawa, ale religijny i moralny nakaz sumienia, lub jeśli kto woli przymus wewnętrzny, jest pewniejszą, choć wcale nie łatwiejszą drogą do respektowania podstawowych zasad moralnych. Warto przypomnieć, że już w latach międzywojennych Sergiusz Hessen dostrzegał w wychowaniu religijnym i w głosie sumienia jedyną drogę do uzyskania przez jednostkę autonomii moralnej. Mówił: „Wychowanie wymaga przede wszystkim osobistego i wolnego udziału wychowanka w duchowych wartościach i dlatego nie może istnieć bez swobodnego wysiłku osobistego sumienia wychowanka”. O istocie wychowania rozstrzyga bowiem samowychowanie się jednostki ludzkiej dążącej do tego, by stać się autonomiczną osobowością.\"],\"language\":\"pol\",\"subjects\":[],\"creators\":[\"Michalski, Jarosław\"],\"publicationdate\":\"2012-11-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repozytorium Uniwersytetu Mikołaja Kopernika\"],\"pids\":[{\"value\":\"10.12775/PCh.2010.025\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://repozytorium.umk.pl/handle/item/1977\",\"license\":\"OPEN\",\"hostedby\":\"Repozytorium Uniwersytetu Mikołaja Kopernika\",\"instancetype\":\"Article\"},{\"url\":\"http://repozytorium.umk.pl/handle/item/1977\",\"license\":\"OPEN\",\"hostedby\":\"Repository of Nicolaus Copernicus University\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repozytorium.umk.pl/handle/item/1977\",\"license\":\"OPEN\",\"hostedby\":\"Repository of Nicolaus Copernicus University\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Repository of Nicolaus Copernicus University\",\"url\":\"http://repozytorium.umk.pl/handle/item/1977\",\"id\":\"oai:repozytorium.umk.pl:item/1977\"},\"trust\":0.58438754}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repozytorium Uniwersytetu Mikołaja Kopernika"},"target_publication_id":{"type":"STRING","value":"oai:repozytorium.umk.pl:item/1977"},"target_publication_author_list":{"type":"LIST_STRING","value":["Michalski, Jarosław"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repozytorium.umk.pl:item/1977"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::852c44ddce7e0c7e4c64d86147300831"},"trust":{"type":"FLOAT","value":0.58438754},"target_publication_title":{"type":"STRING","value":"Plus ratio quam vis. Propozycja współczesnego dialogu edukacji z religią"},"provenance_datasource_name":{"type":"STRING","value":"Repository of Nicolaus Copernicus University"},"target_dateofacceptance":{"type":"DATE","value":"2012-11-15"},"target_datasource_id":{"type":"STRING","value":"10|driver______::d90775d3c9c1f9069b98af3df0f2349d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:56-57\",\"titles\":[\"Creaking Labour Markets: Migrating into Unemployment?\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union\"],\"creators\":[\"Giampaolo Galli\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"CESifo Forum\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-galli.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-bertola.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-bertola.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-bertola.pdf\",\"id\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:48-52\"},\"trust\":0.16180438}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:56-57"},"target_publication_author_list":{"type":"LIST_STRING","value":["Giampaolo Galli"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:48-52"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union"]},"trust":{"type":"FLOAT","value":0.16180438},"target_publication_title":{"type":"STRING","value":"Creaking Labour Markets: Migrating into Unemployment?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:56-57\",\"titles\":[\"Creaking Labour Markets: Migrating into Unemployment?\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union\"],\"creators\":[\"Giampaolo Galli\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"CESifo Forum\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-galli.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-leysen.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-leysen.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-leysen.pdf\",\"id\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:55\"},\"trust\":0.850556}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:56-57"},"target_publication_author_list":{"type":"LIST_STRING","value":["Giampaolo Galli"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:55"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union"]},"trust":{"type":"FLOAT","value":0.850556},"target_publication_title":{"type":"STRING","value":"Creaking Labour Markets: Migrating into Unemployment?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:56-57\",\"titles\":[\"Creaking Labour Markets: Migrating into Unemployment?\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union\"],\"creators\":[\"Giampaolo Galli\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"CESifo Forum\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-galli.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-milbradt.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-milbradt.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-milbradt.pdf\",\"id\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:53-54\"},\"trust\":0.303284}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:56-57"},"target_publication_author_list":{"type":"LIST_STRING","value":["Giampaolo Galli"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:53-54"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union"]},"trust":{"type":"FLOAT","value":0.303284},"target_publication_title":{"type":"STRING","value":"Creaking Labour Markets: Migrating into Unemployment?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:48-52\",\"titles\":[\"Creaking Labour Markets: Migrating into Unemployment?\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union\"],\"creators\":[\"Giuseppe Bertola\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"CESifo Forum\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-bertola.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-galli.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-galli.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-galli.pdf\",\"id\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:56-57\"},\"trust\":0.8481687}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:48-52"},"target_publication_author_list":{"type":"LIST_STRING","value":["Giuseppe Bertola"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:56-57"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union"]},"trust":{"type":"FLOAT","value":0.8481687},"target_publication_title":{"type":"STRING","value":"Creaking Labour Markets: Migrating into Unemployment?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:48-52\",\"titles\":[\"Creaking Labour Markets: Migrating into Unemployment?\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union\"],\"creators\":[\"Giuseppe Bertola\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"CESifo Forum\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-bertola.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-leysen.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-leysen.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-leysen.pdf\",\"id\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:55\"},\"trust\":0.34084934}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:48-52"},"target_publication_author_list":{"type":"LIST_STRING","value":["Giuseppe Bertola"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:55"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union"]},"trust":{"type":"FLOAT","value":0.34084934},"target_publication_title":{"type":"STRING","value":"Creaking Labour Markets: Migrating into Unemployment?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:48-52\",\"titles\":[\"Creaking Labour Markets: Migrating into Unemployment?\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union\"],\"creators\":[\"Giuseppe Bertola\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"CESifo Forum\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-bertola.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-milbradt.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-milbradt.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-milbradt.pdf\",\"id\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:53-54\"},\"trust\":0.3516727}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:48-52"},"target_publication_author_list":{"type":"LIST_STRING","value":["Giuseppe Bertola"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:53-54"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union"]},"trust":{"type":"FLOAT","value":0.3516727},"target_publication_title":{"type":"STRING","value":"Creaking Labour Markets: Migrating into Unemployment?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:55\",\"titles\":[\"Creaking Labour Markets: Migrating into Unemployment?\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union\"],\"creators\":[\"Andre Leysen\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"CESifo Forum\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-leysen.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-galli.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-galli.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-galli.pdf\",\"id\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:56-57\"},\"trust\":0.9496187}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:55"},"target_publication_author_list":{"type":"LIST_STRING","value":["Andre Leysen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:56-57"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union"]},"trust":{"type":"FLOAT","value":0.9496187},"target_publication_title":{"type":"STRING","value":"Creaking Labour Markets: Migrating into Unemployment?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:55\",\"titles\":[\"Creaking Labour Markets: Migrating into Unemployment?\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union\"],\"creators\":[\"Andre Leysen\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"CESifo Forum\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-leysen.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-bertola.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-bertola.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-bertola.pdf\",\"id\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:48-52\"},\"trust\":0.99332213}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:55"},"target_publication_author_list":{"type":"LIST_STRING","value":["Andre Leysen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:48-52"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union"]},"trust":{"type":"FLOAT","value":0.99332213},"target_publication_title":{"type":"STRING","value":"Creaking Labour Markets: Migrating into Unemployment?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:55\",\"titles\":[\"Creaking Labour Markets: Migrating into Unemployment?\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union\"],\"creators\":[\"Andre Leysen\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"CESifo Forum\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-leysen.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-milbradt.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-milbradt.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-milbradt.pdf\",\"id\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:53-54\"},\"trust\":0.18136036}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:55"},"target_publication_author_list":{"type":"LIST_STRING","value":["Andre Leysen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:53-54"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union"]},"trust":{"type":"FLOAT","value":0.18136036},"target_publication_title":{"type":"STRING","value":"Creaking Labour Markets: Migrating into Unemployment?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:53-54\",\"titles\":[\"Creaking Labour Markets: Migrating into Unemployment?\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union\"],\"creators\":[\"Georg Milbradt\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"CESifo Forum\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-milbradt.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-galli.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-galli.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-galli.pdf\",\"id\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:56-57\"},\"trust\":0.4033056}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:53-54"},"target_publication_author_list":{"type":"LIST_STRING","value":["Georg Milbradt"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:56-57"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union"]},"trust":{"type":"FLOAT","value":0.4033056},"target_publication_title":{"type":"STRING","value":"Creaking Labour Markets: Migrating into Unemployment?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:53-54\",\"titles\":[\"Creaking Labour Markets: Migrating into Unemployment?\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union\"],\"creators\":[\"Georg Milbradt\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"CESifo Forum\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-milbradt.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-bertola.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-bertola.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-bertola.pdf\",\"id\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:48-52\"},\"trust\":0.25294262}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:53-54"},"target_publication_author_list":{"type":"LIST_STRING","value":["Georg Milbradt"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:48-52"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union"]},"trust":{"type":"FLOAT","value":0.25294262},"target_publication_title":{"type":"STRING","value":"Creaking Labour Markets: Migrating into Unemployment?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:53-54\",\"titles\":[\"Creaking Labour Markets: Migrating into Unemployment?\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union\"],\"creators\":[\"Georg Milbradt\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"CESifo Forum\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-milbradt.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-leysen.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-leysen.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/ZS/ZS-CESifo_Forum/zs-for-2004/zs-for-2004-3/forum3-04-panel3-leysen.pdf\",\"id\":\"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:55\"},\"trust\":0.076670706}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:53-54"},"target_publication_author_list":{"type":"LIST_STRING","value":["Georg Milbradt"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ifofor:v:5:y:2004:i:3:p:55"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Europäische Integration, EU-Erweiterung, Mobilität, Arbeitsmarkt, Arbeitslosigkeit, Europäische Wirtschafts- und Währungsunion, European integration, EU enlargement, Mobility, Labour market, Unemployment, European Economic and Monetary Union"]},"trust":{"type":"FLOAT","value":0.076670706},"target_publication_title":{"type":"STRING","value":"Creaking Labour Markets: Migrating into Unemployment?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2318391\",\"titles\":[\"The novel NO redox sibling, nitroxyl (HNO), prevents cardiomyocyte hypertrophy and superoxide generation via cGMP\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Poster Presentation\"],\"creators\":[\"Ritchie, Rebecca\",\"Irvine, Jennifer\",\"Gossain, Swati\",\"Love, Jane\",\"Horowitz, John\",\"Kemp-Harper, Barbara\"],\"publicationdate\":\"2009-08-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"BMC Pharmacology\",\"issn\":\"\",\"eissn\":\"1471-2210\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1471-2210-9-S1-P58\",\"type\":\"doi\"},{\"value\":\"PMC3313372\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3313372\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.biomedcentral.com/content/pdf/1471-2210-9-S1-info.pdf\",\"license\":\"OPEN\",\"hostedby\":\"BMC Pharmacology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.biomedcentral.com/content/pdf/1471-2210-9-S1-info.pdf\",\"license\":\"OPEN\",\"hostedby\":\"BMC Pharmacology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.biomedcentral.com/content/pdf/1471-2210-9-S1-info.pdf\",\"id\":\"oai:doaj.org/article:73e4d4e28e284b089b21fc70700e0987\"},\"trust\":0.12269086}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2318391"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ritchie, Rebecca","Irvine, Jennifer","Gossain, Swati","Love, Jane","Horowitz, John","Kemp-Harper, Barbara"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:73e4d4e28e284b089b21fc70700e0987"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Poster Presentation"]},"trust":{"type":"FLOAT","value":0.12269086},"target_publication_title":{"type":"STRING","value":"The novel NO redox sibling, nitroxyl (HNO), prevents cardiomyocyte hypertrophy and superoxide generation via cGMP"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repub.eur.nl:22279\",\"titles\":[\"Diffusie en adoptie van interorganisationele innovaties in de publieke sector: een onderzoek binnen de beleidssectoren onderwijs en veiligheid\"],\"abstracts\":[\"Jaarlijks verlaten ruim 50.000 jongeren hun opleiding zonder startkwalificatie. Ongeveer\\neen kwart van deze zogenoemde voortijdige schoolverlaters begint weer aan een nieuwe\\nopleiding. Een ander deel van deze jongeren vindt een baan en haalt via hun werk alsnog\\neen diploma. Er is echter ook een aanzienlijke groep voortijdige schoolverlaters die nooit\\neen startkwalificatie haalt. De gevolgen hiervan zijn groot, zowel voor deze jongeren zelf\\nals voor de samenleving. Voortijdige schoolverlaters hebben namelijk een zwakke positie\\nop de arbeidsmarkt, waardoor zij een grotere kans hebben werkloos te raken, in de criminaliteit\\nte belanden en sociaal uitgesloten te worden (Herweijer, 2008; Vos, 2009; Wetenschappelijke\\nRaad voor het Regeringsbeleid, 2009). Het voorkomen en bestrijden van\\nvoortijdige schooluitval staat dan ook hoog op de politieke en maatschappelijke agenda.\\nOp nationaal en lokaal niveau wordt intensief beleid ontwikkeld dat gericht is op de aanpak\\nvan dit maatschappelijke vraagstuk. In veel gemeenten en regio’s wordt daarbij gekozen\\nvoor het opzetten van een zogenaamd Jongerenloket (Korteland, Bekkers \\u0026 Simons, 2006)\"],\"language\":\"dut/nld\",\"subjects\":[\"bestuurskunde\",\"onderwijs\",\"publieke sector\",\"schoolverlaters\",\"veiligheid\"],\"creators\":[\"Korteland, E. H.\"],\"publicationdate\":\"2011-01-28\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Erasmus University Institutional Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repub.eur.nl/pub/22279\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"http://hdl.handle.net/1765/22279\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1765/22279\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1765/22279\",\"id\":\"eur:oai:repub.eur.nl:22279\"},\"trust\":0.29751927}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Erasmus University Institutional Repository"},"target_publication_id":{"type":"STRING","value":"oai:repub.eur.nl:22279"},"target_publication_author_list":{"type":"LIST_STRING","value":["Korteland, E. H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["eur:oai:repub.eur.nl:22279"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["bestuurskunde","onderwijs","publieke sector","schoolverlaters","veiligheid"]},"trust":{"type":"FLOAT","value":0.29751927},"target_publication_title":{"type":"STRING","value":"Diffusie en adoptie van interorganisationele innovaties in de publieke sector: een onderzoek binnen de beleidssectoren onderwijs en veiligheid"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-28"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9c3b1830513cc3b8fc4b76635d32e692"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:openaccess.uoc.edu:10609/14994\",\"titles\":[\"Análisis de plataformas para la publicación de información geográfica en la nube\"],\"abstracts\":[\"Con este trabajo se pretende dar una visión global de diversas plataformas de publicación de información geográfica en la nube.\",\"Amb aquest treball es pretén donar una visió global de diverses plataformes de publicació d\\u0027informació geogràfica en el núvol.\"],\"language\":\"spa\",\"subjects\":[\"sistemes d\\u0027informació geogràfica\",\"sistemas de información geográfica\",\"geographic information systems\",\"Geographic information systems\",\"Sistemes d\\u0027informació geogràfica\",\"Sistemas de información geográfica\"],\"creators\":[\"Hernández Gutiérrez, María Eugenia\"],\"publicationdate\":\"2012-06-02\",\"publisher\":\"Universitat Oberta de Catalunya\",\"embargoenddate\":\"\",\"contributor\":[\"Universitat Oberta de Catalunya\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"The Oberta in open access\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10609/14994\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"},{\"url\":\"http://hdl.handle.net/10609/15001\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10609/15001\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"}]},\"provenance\":{\"repositoryName\":\"The Oberta in open access\",\"url\":\"http://hdl.handle.net/10609/15001\",\"id\":\"oai:openaccess.uoc.edu:10609/15001\"},\"trust\":0.6211624}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"The Oberta in open access"},"target_publication_id":{"type":"STRING","value":"oai:openaccess.uoc.edu:10609/14994"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hernández Gutiérrez, María Eugenia"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:openaccess.uoc.edu:10609/15001"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::270edd69788dce200a3b395a6da6fdb7"},"target_publication_subject_list":{"type":"LIST_STRING","value":["sistemes d\u0027informació geogràfica","sistemas de información geográfica","geographic information systems","Geographic information systems","Sistemes d\u0027informació geogràfica","Sistemas de información geográfica"]},"trust":{"type":"FLOAT","value":0.6211624},"target_publication_title":{"type":"STRING","value":"Análisis de plataformas para la publicación de información geográfica en la nube"},"provenance_datasource_name":{"type":"STRING","value":"The Oberta in open access"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-02"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::270edd69788dce200a3b395a6da6fdb7"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:openaccess.uoc.edu:10609/14994\",\"titles\":[\"Análisis de plataformas para la publicación de información geográfica en la nube\"],\"abstracts\":[\"Con este trabajo se pretende dar una visión global de diversas plataformas de publicación de información geográfica en la nube.\",\"Amb aquest treball es pretén donar una visió global de diverses plataformes de publicació d\\u0027informació geogràfica en el núvol.\"],\"language\":\"spa\",\"subjects\":[\"sistemes d\\u0027informació geogràfica\",\"sistemas de información geográfica\",\"geographic information systems\",\"Geographic information systems\",\"Sistemes d\\u0027informació geogràfica\",\"Sistemas de información geográfica\"],\"creators\":[\"Hernández Gutiérrez, María Eugenia\"],\"publicationdate\":\"2012-06-02\",\"publisher\":\"Universitat Oberta de Catalunya\",\"embargoenddate\":\"\",\"contributor\":[\"Universitat Oberta de Catalunya\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"The Oberta in open access\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10609/14994\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"},{\"url\":\"http://hdl.handle.net/10609/14990\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10609/14990\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"}]},\"provenance\":{\"repositoryName\":\"The Oberta in open access\",\"url\":\"http://hdl.handle.net/10609/14990\",\"id\":\"oai:openaccess.uoc.edu:10609/14990\"},\"trust\":0.67458093}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"The Oberta in open access"},"target_publication_id":{"type":"STRING","value":"oai:openaccess.uoc.edu:10609/14994"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hernández Gutiérrez, María Eugenia"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:openaccess.uoc.edu:10609/14990"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::270edd69788dce200a3b395a6da6fdb7"},"target_publication_subject_list":{"type":"LIST_STRING","value":["sistemes d\u0027informació geogràfica","sistemas de información geográfica","geographic information systems","Geographic information systems","Sistemes d\u0027informació geogràfica","Sistemas de información geográfica"]},"trust":{"type":"FLOAT","value":0.67458093},"target_publication_title":{"type":"STRING","value":"Análisis de plataformas para la publicación de información geográfica en la nube"},"provenance_datasource_name":{"type":"STRING","value":"The Oberta in open access"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-02"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::270edd69788dce200a3b395a6da6fdb7"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:openaccess.uoc.edu:10609/15001\",\"titles\":[\"Análisis de plataformas para la publicación de información geográfica en la nube\"],\"abstracts\":[\"Análisis de cinco plataformas, vía navegador, para crear mapas y compartirlos.\",\"Anàlisi de cinc plataformes, via navegador, per crear mapes i compartir-los.\",\"Analysis of five platforms to create and share maps via browser.\"],\"language\":\"spa\",\"subjects\":[\"SIG\",\"SIG\",\"GIS\",\"Geographic information systems\",\"Sistemes d\\u0027informació geogràfica\",\"Sistemas de información geográfica\"],\"creators\":[\"Delgado Cisneros, Gustavo\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"Universitat Oberta de Catalunya\",\"embargoenddate\":\"\",\"contributor\":[\"Universitat Oberta de Catalunya\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"The Oberta in open access\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10609/15001\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"},{\"url\":\"http://hdl.handle.net/10609/14994\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10609/14994\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"}]},\"provenance\":{\"repositoryName\":\"The Oberta in open access\",\"url\":\"http://hdl.handle.net/10609/14994\",\"id\":\"oai:openaccess.uoc.edu:10609/14994\"},\"trust\":0.45460707}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"The Oberta in open access"},"target_publication_id":{"type":"STRING","value":"oai:openaccess.uoc.edu:10609/15001"},"target_publication_author_list":{"type":"LIST_STRING","value":["Delgado Cisneros, Gustavo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:openaccess.uoc.edu:10609/14994"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::270edd69788dce200a3b395a6da6fdb7"},"target_publication_subject_list":{"type":"LIST_STRING","value":["SIG","SIG","GIS","Geographic information systems","Sistemes d\u0027informació geogràfica","Sistemas de información geográfica"]},"trust":{"type":"FLOAT","value":0.45460707},"target_publication_title":{"type":"STRING","value":"Análisis de plataformas para la publicación de información geográfica en la nube"},"provenance_datasource_name":{"type":"STRING","value":"The Oberta in open access"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::270edd69788dce200a3b395a6da6fdb7"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:openaccess.uoc.edu:10609/15001\",\"titles\":[\"Análisis de plataformas para la publicación de información geográfica en la nube\"],\"abstracts\":[\"Análisis de cinco plataformas, vía navegador, para crear mapas y compartirlos.\",\"Anàlisi de cinc plataformes, via navegador, per crear mapes i compartir-los.\",\"Analysis of five platforms to create and share maps via browser.\"],\"language\":\"spa\",\"subjects\":[\"SIG\",\"SIG\",\"GIS\",\"Geographic information systems\",\"Sistemes d\\u0027informació geogràfica\",\"Sistemas de información geográfica\"],\"creators\":[\"Delgado Cisneros, Gustavo\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"Universitat Oberta de Catalunya\",\"embargoenddate\":\"\",\"contributor\":[\"Universitat Oberta de Catalunya\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"The Oberta in open access\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10609/15001\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"},{\"url\":\"http://hdl.handle.net/10609/14990\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10609/14990\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"}]},\"provenance\":{\"repositoryName\":\"The Oberta in open access\",\"url\":\"http://hdl.handle.net/10609/14990\",\"id\":\"oai:openaccess.uoc.edu:10609/14990\"},\"trust\":0.9721566}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"The Oberta in open access"},"target_publication_id":{"type":"STRING","value":"oai:openaccess.uoc.edu:10609/15001"},"target_publication_author_list":{"type":"LIST_STRING","value":["Delgado Cisneros, Gustavo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:openaccess.uoc.edu:10609/14990"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::270edd69788dce200a3b395a6da6fdb7"},"target_publication_subject_list":{"type":"LIST_STRING","value":["SIG","SIG","GIS","Geographic information systems","Sistemes d\u0027informació geogràfica","Sistemas de información geográfica"]},"trust":{"type":"FLOAT","value":0.9721566},"target_publication_title":{"type":"STRING","value":"Análisis de plataformas para la publicación de información geográfica en la nube"},"provenance_datasource_name":{"type":"STRING","value":"The Oberta in open access"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::270edd69788dce200a3b395a6da6fdb7"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:openaccess.uoc.edu:10609/14990\",\"titles\":[\"Análisis de plataformas para la publicación de información geográfica en la nube\"],\"abstracts\":[\"En este trabajo se realiza un análisis de algunas de las plataformas de publicación de información geográfica en la nube para seleccionar la plataforma que se ajuste a las necesidades de un supuesto medio informativo de ámbito local y de difusión por Internet.\",\"En aquest treball es realitza una anàlisi d\\u0027algunes de les plataformes de publicació d\\u0027informació geogràfica en el núvol per seleccionar la plataforma que s\\u0027ajusti a les necessitats d\\u0027un suposat mitjà informatiu d\\u0027àmbit local i de difusió per Internet.\"],\"language\":\"spa\",\"subjects\":[\"sistemes d\\u0027informació geogràfica\",\"sistemas de información geográfica\",\"geographic information systems\",\"Geographic information systems\",\"Sistemes d\\u0027informació geogràfica\",\"Sistemas de información geográfica\"],\"creators\":[\"González Balea, Raúl\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"Universitat Oberta de Catalunya\",\"embargoenddate\":\"\",\"contributor\":[\"Universitat Oberta de Catalunya\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"The Oberta in open access\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10609/14990\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"},{\"url\":\"http://hdl.handle.net/10609/14994\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10609/14994\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"}]},\"provenance\":{\"repositoryName\":\"The Oberta in open access\",\"url\":\"http://hdl.handle.net/10609/14994\",\"id\":\"oai:openaccess.uoc.edu:10609/14994\"},\"trust\":0.3573882}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"The Oberta in open access"},"target_publication_id":{"type":"STRING","value":"oai:openaccess.uoc.edu:10609/14990"},"target_publication_author_list":{"type":"LIST_STRING","value":["González Balea, Raúl"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:openaccess.uoc.edu:10609/14994"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::270edd69788dce200a3b395a6da6fdb7"},"target_publication_subject_list":{"type":"LIST_STRING","value":["sistemes d\u0027informació geogràfica","sistemas de información geográfica","geographic information systems","Geographic information systems","Sistemes d\u0027informació geogràfica","Sistemas de información geográfica"]},"trust":{"type":"FLOAT","value":0.3573882},"target_publication_title":{"type":"STRING","value":"Análisis de plataformas para la publicación de información geográfica en la nube"},"provenance_datasource_name":{"type":"STRING","value":"The Oberta in open access"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::270edd69788dce200a3b395a6da6fdb7"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:openaccess.uoc.edu:10609/14990\",\"titles\":[\"Análisis de plataformas para la publicación de información geográfica en la nube\"],\"abstracts\":[\"En este trabajo se realiza un análisis de algunas de las plataformas de publicación de información geográfica en la nube para seleccionar la plataforma que se ajuste a las necesidades de un supuesto medio informativo de ámbito local y de difusión por Internet.\",\"En aquest treball es realitza una anàlisi d\\u0027algunes de les plataformes de publicació d\\u0027informació geogràfica en el núvol per seleccionar la plataforma que s\\u0027ajusti a les necessitats d\\u0027un suposat mitjà informatiu d\\u0027àmbit local i de difusió per Internet.\"],\"language\":\"spa\",\"subjects\":[\"sistemes d\\u0027informació geogràfica\",\"sistemas de información geográfica\",\"geographic information systems\",\"Geographic information systems\",\"Sistemes d\\u0027informació geogràfica\",\"Sistemas de información geográfica\"],\"creators\":[\"González Balea, Raúl\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"Universitat Oberta de Catalunya\",\"embargoenddate\":\"\",\"contributor\":[\"Universitat Oberta de Catalunya\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"The Oberta in open access\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10609/14990\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"},{\"url\":\"http://hdl.handle.net/10609/15001\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10609/15001\",\"license\":\"OPEN\",\"hostedby\":\"The Oberta in open access\",\"instancetype\":\"Bachelor thesis\"}]},\"provenance\":{\"repositoryName\":\"The Oberta in open access\",\"url\":\"http://hdl.handle.net/10609/15001\",\"id\":\"oai:openaccess.uoc.edu:10609/15001\"},\"trust\":0.9565534}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"The Oberta in open access"},"target_publication_id":{"type":"STRING","value":"oai:openaccess.uoc.edu:10609/14990"},"target_publication_author_list":{"type":"LIST_STRING","value":["González Balea, Raúl"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:openaccess.uoc.edu:10609/15001"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::270edd69788dce200a3b395a6da6fdb7"},"target_publication_subject_list":{"type":"LIST_STRING","value":["sistemes d\u0027informació geogràfica","sistemas de información geográfica","geographic information systems","Geographic information systems","Sistemes d\u0027informació geogràfica","Sistemas de información geográfica"]},"trust":{"type":"FLOAT","value":0.9565534},"target_publication_title":{"type":"STRING","value":"Análisis de plataformas para la publicación de información geográfica en la nube"},"provenance_datasource_name":{"type":"STRING","value":"The Oberta in open access"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::270edd69788dce200a3b395a6da6fdb7"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2333712\",\"titles\":[\"An Equine Herpesvirus Type 1 (EHV-1) Expressing VP2 and VP5 of Serotype 8 Bluetongue Virus (BTV-8) Induces Protection in a Murine Infection Model\"],\"abstracts\":[\"Bluetongue virus (BTV) can infect most species of domestic and wild ruminants causing substantial morbidity and mortality and, consequently, high economic losses. In 2006, an epizootic of BTV serotype 8 (BTV-8) started in northern Europe that caused significant disease in cattle and sheep before comprehensive vaccination was introduced two years later. Here, we evaluate the potential of equine herpesvirus type 1 (EHV-1), an alphaherpesvirus, as a novel vectored DIVA (differentiating infected from vaccinated animals) vaccine expressing VP2 of BTV-8 alone or in combination with VP5. The EHV-1 recombinant viruses stably expressed the transgenes and grew with kinetics that were identical to those of parental virus in vitro. After immunization of mice, a BTV-8-specific neutralizing antibody response was elicited. In a challenge experiment using a lethal dose of BTV-8, 100% of interferon-receptor-deficient (IFNAR−/−) mice vaccinated with the recombinant EHV-1 carrying both VP2 and VP5, but not VP2 alone, survived. VP7 was not included in the vectored vaccines and was successfully used as a DIVA marker. In summary, we show that EHV-1 expressing BTV-8 VP2 and VP5 is capable of eliciting a protective immune response that is distinguishable from that after infection and as such may be an alternative for BTV vaccination strategies in which DIVA compatibility is of importance.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\",\"Biology\",\"Microbiology\",\"Virology\",\"Viral Classification\",\"DNA viruses\",\"Viral Vaccines\",\"Model Organisms\",\"Animal Models\",\"Mouse\",\"Medicine\",\"Clinical Immunology\",\"Immunity\",\"Vaccination\",\"Vaccines\",\"Vaccine Development\",\"Veterinary Science\",\"Veterinary Diseases\",\"Veterinary Medicine\",\"Veterinary Immunology\",\"Veterinary Microbiology\"],\"creators\":[\"Ma, Guanggang\",\"Eschbaumer, Michael\",\"Said, Abdelrahman\",\"Hoffmann, Bernd\",\"Beer, Martin\",\"Osterrieder, Nikolaus\"],\"publicationdate\":\"2012-04-01\",\"publisher\":\"Public Library of Science\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"PLoS ONE\",\"issn\":\"\",\"eissn\":\"1932-6203\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1371/journal.pone.0034425\",\"type\":\"doi\"},{\"value\":\"PMC3325243\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3325243\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1371/journal.pone.0034425\",\"license\":\"OPEN\",\"hostedby\":\"Unknown Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1371/journal.pone.0034425\",\"license\":\"OPEN\",\"hostedby\":\"Unknown Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Crossref\",\"url\":\"http://dx.doi.org/10.1371/journal.pone.0034425\",\"id\":\"WOS:000305338600025\"},\"trust\":0.03389883}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2333712"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ma, Guanggang","Eschbaumer, Michael","Said, Abdelrahman","Hoffmann, Bernd","Beer, Martin","Osterrieder, Nikolaus"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["WOS:000305338600025"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::081b82f96300b6a6e3d282bad31cb6e2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article","Biology","Microbiology","Virology","Viral Classification","DNA viruses","Viral Vaccines","Model Organisms","Animal Models","Mouse","Medicine","Clinical Immunology","Immunity","Vaccination","Vaccines","Vaccine Development","Veterinary Science","Veterinary Diseases","Veterinary Medicine","Veterinary Immunology","Veterinary Microbiology"]},"trust":{"type":"FLOAT","value":0.03389883},"target_publication_title":{"type":"STRING","value":"An Equine Herpesvirus Type 1 (EHV-1) Expressing VP2 and VP5 of Serotype 8 Bluetongue Virus (BTV-8) Induces Protection in a Murine Infection Model"},"provenance_datasource_name":{"type":"STRING","value":"Crossref"},"target_dateofacceptance":{"type":"DATE","value":"2012-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dare.ubvu.vu.nl:1871/24280\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at VU\"],\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1871/24280\",\"id\":\"vu:oai:dare.ubvu.vu.nl:1871/24280\"},\"trust\":0.92051905}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_publication_id":{"type":"STRING","value":"oai:dare.ubvu.vu.nl:1871/24280"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["vu:oai:dare.ubvu.vu.nl:1871/24280"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.92051905},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dare.ubvu.vu.nl:1871/24280\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at VU\"],\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"},{\"url\":\"http://dare.uva.nl/record/389851\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dare.uva.nl/record/389851\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Universiteit van Amsterdam Digital Academic Repository\",\"url\":\"http://dare.uva.nl/record/389851\",\"id\":\"oai:uvapub:389851\"},\"trust\":0.3010133}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_publication_id":{"type":"STRING","value":"oai:dare.ubvu.vu.nl:1871/24280"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:uvapub:389851"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"},"trust":{"type":"FLOAT","value":0.3010133},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:dare.ubvu.vu.nl:1871/24280\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at VU\"],\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully\"]},\"provenance\":{\"repositoryName\":\"Universiteit van Amsterdam Digital Academic Repository\",\"url\":\"http://dare.uva.nl/record/389851\",\"id\":\"oai:uvapub:389851\"},\"trust\":0.61314195}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_publication_id":{"type":"STRING","value":"oai:dare.ubvu.vu.nl:1871/24280"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:uvapub:389851"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"},"trust":{"type":"FLOAT","value":0.61314195},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:dare.ubvu.vu.nl:1871/24280\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at VU\"],\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"},{\"value\":\"PMC2876826\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2876826\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2876826\",\"id\":\"oai:europepmc.org:1921510\"},\"trust\":0.30916274}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_publication_id":{"type":"STRING","value":"oai:dare.ubvu.vu.nl:1871/24280"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1921510"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.30916274},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:dare.ubvu.vu.nl:1871/24280\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at VU\"],\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"},{\"value\":\"20367423\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"20367423\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2876826\",\"id\":\"oai:europepmc.org:1921510\"},\"trust\":0.30916274}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_publication_id":{"type":"STRING","value":"oai:dare.ubvu.vu.nl:1871/24280"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1921510"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.30916274},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:dare.ubvu.vu.nl:1871/24280\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at VU\"],\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully.\"]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2876826\",\"id\":\"oai:europepmc.org:1921510\"},\"trust\":0.4439388}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_publication_id":{"type":"STRING","value":"oai:dare.ubvu.vu.nl:1871/24280"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1921510"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.4439388},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dare.ubvu.vu.nl:1871/24280\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at VU\"],\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/11245/1.340173\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/11245/1.340173\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/11245/1.340173\",\"id\":\"uvapub:oai:uva.nl:340173\"},\"trust\":0.018873751}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_publication_id":{"type":"STRING","value":"oai:dare.ubvu.vu.nl:1871/24280"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uvapub:oai:uva.nl:340173"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.018873751},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:dare.ubvu.vu.nl:1871/24280\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at VU\"],\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully\"]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/11245/1.340173\",\"id\":\"uvapub:oai:uva.nl:340173\"},\"trust\":0.04903698}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_publication_id":{"type":"STRING","value":"oai:dare.ubvu.vu.nl:1871/24280"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uvapub:oai:uva.nl:340173"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.04903698},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:389851\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://dare.uva.nl/record/389851\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1871/24280\",\"id\":\"vu:oai:dare.ubvu.vu.nl:1871/24280\"},\"trust\":0.32693827}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:389851"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["vu:oai:dare.ubvu.vu.nl:1871/24280"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.32693827},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:389851\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://dare.uva.nl/record/389851\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"DSpace at VU\",\"url\":\"http://hdl.handle.net/1871/24280\",\"id\":\"oai:dare.ubvu.vu.nl:1871/24280\"},\"trust\":0.51791376}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:389851"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dare.ubvu.vu.nl:1871/24280"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"},"trust":{"type":"FLOAT","value":0.51791376},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:389851\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://dare.uva.nl/record/389851\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"DSpace at VU\",\"url\":\"http://hdl.handle.net/1871/24280\",\"id\":\"oai:dare.ubvu.vu.nl:1871/24280\"},\"trust\":0.51791376}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:389851"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dare.ubvu.vu.nl:1871/24280"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"},"trust":{"type":"FLOAT","value":0.51791376},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:389851\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://dare.uva.nl/record/389851\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DSpace at VU\",\"url\":\"http://hdl.handle.net/1871/24280\",\"id\":\"oai:dare.ubvu.vu.nl:1871/24280\"},\"trust\":0.98081833}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:389851"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dare.ubvu.vu.nl:1871/24280"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"},"trust":{"type":"FLOAT","value":0.98081833},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:389851\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://dare.uva.nl/record/389851\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2876826\",\"id\":\"oai:europepmc.org:1921510\"},\"trust\":0.7693466}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:389851"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1921510"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.7693466},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:389851\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[{\"value\":\"PMC2876826\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://dare.uva.nl/record/389851\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2876826\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2876826\",\"id\":\"oai:europepmc.org:1921510\"},\"trust\":0.7693466}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:389851"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1921510"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.7693466},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:389851\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[{\"value\":\"20367423\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://dare.uva.nl/record/389851\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"20367423\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2876826\",\"id\":\"oai:europepmc.org:1921510\"},\"trust\":0.7693466}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:389851"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1921510"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.7693466},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:389851\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://dare.uva.nl/record/389851\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2876826\",\"id\":\"oai:europepmc.org:1921510\"},\"trust\":0.7693466}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:389851"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1921510"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.7693466},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:389851\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[{\"value\":\"PMC2876826\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://dare.uva.nl/record/389851\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2876826\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2876826\",\"id\":\"oai:europepmc.org:1921510\"},\"trust\":0.7693466}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:389851"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1921510"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.7693466},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:389851\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[{\"value\":\"20367423\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://dare.uva.nl/record/389851\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"20367423\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2876826\",\"id\":\"oai:europepmc.org:1921510\"},\"trust\":0.7693466}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:389851"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1921510"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.7693466},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:389851\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hillen, R. J.\",\"Burger, B. J.\",\"Pöll, R. G.\",\"Gast, A.\",\"Robinson, C. M.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://dare.uva.nl/record/389851\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/11245/1.340173\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/11245/1.340173\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/11245/1.340173\",\"id\":\"uvapub:oai:uva.nl:340173\"},\"trust\":0.922516}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:389851"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, R. J.","Burger, B. J.","Pöll, R. G.","Gast, A.","Robinson, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uvapub:oai:uva.nl:340173"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.922516},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1921510\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Hillen, Robert J.\",\"Burger, Bart J.\",\"Pöll, Rudolf G.\",\"Gast, Arthur\",\"Robinson, C. Michael\"],\"publicationdate\":\"2010-05-01\",\"publisher\":\"Informa Healthcare\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Acta Orthopaedica\",\"issn\":\"1745-3674\",\"eissn\":\"1745-3682\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"},{\"value\":\"PMC2876826\",\"type\":\"pmc\"},{\"value\":\"20367423\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2876826\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1871/24280\",\"id\":\"vu:oai:dare.ubvu.vu.nl:1871/24280\"},\"trust\":0.54151976}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1921510"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, Robert J.","Burger, Bart J.","Pöll, Rudolf G.","Gast, Arthur","Robinson, C. Michael"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["vu:oai:dare.ubvu.vu.nl:1871/24280"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.54151976},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2010-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1921510\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Hillen, Robert J.\",\"Burger, Bart J.\",\"Pöll, Rudolf G.\",\"Gast, Arthur\",\"Robinson, C. Michael\"],\"publicationdate\":\"2010-05-01\",\"publisher\":\"Informa Healthcare\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Acta Orthopaedica\",\"issn\":\"1745-3674\",\"eissn\":\"1745-3682\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"},{\"value\":\"PMC2876826\",\"type\":\"pmc\"},{\"value\":\"20367423\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2876826\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1871/24280\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DSpace at VU\",\"url\":\"http://hdl.handle.net/1871/24280\",\"id\":\"oai:dare.ubvu.vu.nl:1871/24280\"},\"trust\":0.20587993}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1921510"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, Robert J.","Burger, Bart J.","Pöll, Rudolf G.","Gast, Arthur","Robinson, C. Michael"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dare.ubvu.vu.nl:1871/24280"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.20587993},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_dateofacceptance":{"type":"DATE","value":"2010-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1921510\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Hillen, Robert J.\",\"Burger, Bart J.\",\"Pöll, Rudolf G.\",\"Gast, Arthur\",\"Robinson, C. Michael\"],\"publicationdate\":\"2010-05-01\",\"publisher\":\"Informa Healthcare\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Acta Orthopaedica\",\"issn\":\"1745-3674\",\"eissn\":\"1745-3682\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"},{\"value\":\"PMC2876826\",\"type\":\"pmc\"},{\"value\":\"20367423\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2876826\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dare.uva.nl/record/389851\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dare.uva.nl/record/389851\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Universiteit van Amsterdam Digital Academic Repository\",\"url\":\"http://dare.uva.nl/record/389851\",\"id\":\"oai:uvapub:389851\"},\"trust\":0.06451857}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1921510"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, Robert J.","Burger, Bart J.","Pöll, Rudolf G.","Gast, Arthur","Robinson, C. Michael"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:uvapub:389851"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.06451857},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_dateofacceptance":{"type":"DATE","value":"2010-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1921510\",\"titles\":[\"Malunion after midshaft clavicle fractures in adults\"],\"abstracts\":[\"This is an overview of the current literature on malunion after midshaft clavicle fracture. Anatomy, trauma mechanism, classification, incidence, symptoms, prevention, and treatment options are all discussed. The conclusion is that clavicle malunion is a distinct clinical entity that can be treated successfully.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Hillen, Robert J.\",\"Burger, Bart J.\",\"Pöll, Rudolf G.\",\"Gast, Arthur\",\"Robinson, C. Michael\"],\"publicationdate\":\"2010-05-01\",\"publisher\":\"Informa Healthcare\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Acta Orthopaedica\",\"issn\":\"1745-3674\",\"eissn\":\"1745-3682\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3109/17453674.2010.480939\",\"type\":\"doi\"},{\"value\":\"PMC2876826\",\"type\":\"pmc\"},{\"value\":\"20367423\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2876826\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/11245/1.340173\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/11245/1.340173\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/11245/1.340173\",\"id\":\"uvapub:oai:uva.nl:340173\"},\"trust\":0.5350908}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1921510"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hillen, Robert J.","Burger, Bart J.","Pöll, Rudolf G.","Gast, Arthur","Robinson, C. Michael"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uvapub:oai:uva.nl:340173"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.5350908},"target_publication_title":{"type":"STRING","value":"Malunion after midshaft clavicle fractures in adults"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2010-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00228651\",\"titles\":[\"DETERMINATION OF MAGNETIC PROPERTIES IN (111) ORIENTED MAGNETIC GARNET FILMS WITH THE TORQUE METHOD\"],\"abstracts\":[\"The torque curve analysis of a (111) magnetic garnet film is described. In this way, it is possible to obtain simultaneously magnetic properties the magnetization Ms, the cubic anisotropy K1 and the uniaxial anisotropy Ku from only one torque curve by the simple experiment and calculation.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\"],\"creators\":[\"Guo, M.\",\"Feng, J.\",\"Jiang, L.\"],\"publicationdate\":\"1988-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphyscol:19888452\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00228651\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00228651\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00228651\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00228651\",\"id\":\"oai:HAL:jpa-00228651v1\"},\"trust\":0.25734037}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00228651"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guo, M.","Feng, J.","Jiang, L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00228651v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens"]},"trust":{"type":"FLOAT","value":0.25734037},"target_publication_title":{"type":"STRING","value":"DETERMINATION OF MAGNETIC PROPERTIES IN (111) ORIENTED MAGNETIC GARNET FILMS WITH THE TORQUE METHOD"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1988-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00228651v1\",\"titles\":[\"DETERMINATION OF MAGNETIC PROPERTIES IN (111) ORIENTED MAGNETIC GARNET FILMS WITH THE TORQUE METHOD\"],\"abstracts\":[\"The torque curve analysis of a (111) magnetic garnet film is described. In this way, it is possible to obtain simultaneously magnetic properties the magnetization Ms, the cubic anisotropy K1 and the uniaxial anisotropy Ku from only one torque curve by the simple experiment and calculation.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Guo, M.\",\"Feng, J.\",\"Jiang, L.\"],\"publicationdate\":\"1988-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphyscol:19888452\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00228651\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00228651\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00228651\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00228651\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00228651\"},\"trust\":0.2700665}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00228651v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guo, M.","Feng, J.","Jiang, L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00228651"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.2700665},"target_publication_title":{"type":"STRING","value":"DETERMINATION OF MAGNETIC PROPERTIES IN (111) ORIENTED MAGNETIC GARNET FILMS WITH THE TORQUE METHOD"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1988-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00216983\",\"titles\":[\"OBSERVATIONS OF STRUCTURAL DEFECTS IN FERRITES WITH SPINEL (Ni0.66Fe2.34O4) AND GARNET (Y3Fe5O12) STRUCTURES\"],\"abstracts\":[\"Structural defects observed in ferrite single crystals from as-grown boules by X-Ray topography and from deformed specimens by electron microscopy are reported. In as-grown nickel ferrite a/2 \\u003c 110 \\u003e Burgers vectors of isolated dislocations are determined in a network with relatively low dislocation density (103-104 cm-2). It appears from observations of plastically deformed ferrite single crystals that resulting dislocation density is still low in both investigated specimens (nickel ferrite and YIG). In YIG it is shown that plastic deformation involves dislocations with both a \\u003c 001 \\u003e and a/2 \\u003c 111 \\u003e Burgers vectors ; dislocation loops with a/2 \\u003c 111 \\u003e Burgers vectors are also present. In nickel ferrite numerous slices with hexagonal structure together with simple stacking fault or sub-grain boundaries are found depending on test temperature, in this compound isolated dislocations always have a/2 \\u003c 110 \\u003e Burgers vectors and are often dissociated into two partials with collinear Burgers vectors.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\"],\"creators\":[\"Rabier, J.\",\"Rivaud, G.\",\"Veyssière, P.\",\"Pavis, B.\"],\"publicationdate\":\"1977-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphyscol:1977124\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00216983\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00216983\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00216983\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00216983\",\"id\":\"oai:HAL:jpa-00216983v1\"},\"trust\":0.61598706}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00216983"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rabier, J.","Rivaud, G.","Veyssière, P.","Pavis, B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00216983v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens"]},"trust":{"type":"FLOAT","value":0.61598706},"target_publication_title":{"type":"STRING","value":"OBSERVATIONS OF STRUCTURAL DEFECTS IN FERRITES WITH SPINEL (Ni0.66Fe2.34O4) AND GARNET (Y3Fe5O12) STRUCTURES"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1977-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00216983v1\",\"titles\":[\"OBSERVATIONS OF STRUCTURAL DEFECTS IN FERRITES WITH SPINEL (Ni0.66Fe2.34O4) AND GARNET (Y3Fe5O12) STRUCTURES\"],\"abstracts\":[\"Structural defects observed in ferrite single crystals from as-grown boules by X-Ray topography and from deformed specimens by electron microscopy are reported. In as-grown nickel ferrite a/2 \\u003c 110 \\u003e Burgers vectors of isolated dislocations are determined in a network with relatively low dislocation density (103-104 cm-2). It appears from observations of plastically deformed ferrite single crystals that resulting dislocation density is still low in both investigated specimens (nickel ferrite and YIG). In YIG it is shown that plastic deformation involves dislocations with both a \\u003c 001 \\u003e and a/2 \\u003c 111 \\u003e Burgers vectors ; dislocation loops with a/2 \\u003c 111 \\u003e Burgers vectors are also present. In nickel ferrite numerous slices with hexagonal structure together with simple stacking fault or sub-grain boundaries are found depending on test temperature, in this compound isolated dislocations always have a/2 \\u003c 110 \\u003e Burgers vectors and are often dissociated into two partials with collinear Burgers vectors.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Rabier, J.\",\"Rivaud, G.\",\"Veyssière, P.\",\"Pavis, B.\"],\"publicationdate\":\"1977-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphyscol:1977124\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00216983\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00216983\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00216983\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00216983\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00216983\"},\"trust\":0.5169762}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00216983v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rabier, J.","Rivaud, G.","Veyssière, P.","Pavis, B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00216983"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.5169762},"target_publication_title":{"type":"STRING","value":"OBSERVATIONS OF STRUCTURAL DEFECTS IN FERRITES WITH SPINEL (Ni0.66Fe2.34O4) AND GARNET (Y3Fe5O12) STRUCTURES"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1977-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:sae:niesru:v:140:y:1992:i:1:p:45-63\",\"titles\":[\"Vocational Education and Productivity in the Netherlands and Britain\"],\"abstracts\":[\"The contribution of differences in the Dutch and British education and training systems to the significant Dutch advantage in manufacturing productivity levels is examined in this article. The Dutch schooling system is characterised by high standards in mathematics, the provision of vocational education at ages 14-16 for a third of all pupils, and widespread vocational education at 16+. The proportion of the Dutch work force attaining vocational qualification approaches that of Germany and is well ahead of Britain. Comparisons of productivity, machinery and skills in matched samples of British and Dutch manufacturing plants were carried out in selected branches of two industries—engineering and food-processing. Higher average levels of work force skills and knowledge in the Dutch samples were found to contribute to higher productivity through better maintenance of machinery, greater consistency of product-quality and lower manning-levels (greater work force flexibility, less learning-time on new jobs). The Dutch productivity advantage was greatest in product areas where small- or medium-sized batches are demanded by the market.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Geoff Mason\",\"Prais, S. J.\",\"Bart van Ark\"],\"publicationdate\":\"1992-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"National Institute Economic Review\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://ner.sagepub.com/content/140/1/45.abstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://ner.sagepub.com/content/140/1/45.abstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://ner.sagepub.com/content/140/1/45.abstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://ner.sagepub.com/content/140/1/45.abstract\",\"id\":\"i:1:p:45-63\"},\"trust\":0.003380835}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:sae:niesru:v:140:y:1992:i:1:p:45-63"},"target_publication_author_list":{"type":"LIST_STRING","value":["Geoff Mason","Prais, S. J.","Bart van Ark"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["i:1:p:45-63"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.003380835},"target_publication_title":{"type":"STRING","value":"Vocational Education and Productivity in the Netherlands and Britain"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1992-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"i:1:p:45-63\",\"titles\":[\"Vocational Education and Productivity in the Netherlands and Britain\"],\"abstracts\":[\"The contribution of differences in the Dutch and British education and training systems to the significant Dutch advantage in manufacturing productivity levels is examined in this article. The Dutch schooling system is characterised by high standards in mathematics, the provision of vocational education at ages 14-16 for a third of all pupils, and widespread vocational education at 16+. The proportion of the Dutch work force attaining vocational qualification approaches that of Germany and is well ahead of Britain. Comparisons of productivity, machinery and skills in matched samples of British and Dutch manufacturing plants were carried out in selected branches of two industries—engineering and food-processing. Higher average levels of work force skills and knowledge in the Dutch samples were found to contribute to higher productivity through better maintenance of machinery, greater consistency of product-quality and lower manning-levels (greater work force flexibility, less learning-time on new jobs). The Dutch productivity advantage was greatest in product areas where small- or medium-sized batches are demanded by the market.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Geoff Mason\",\"Prais, S. J.\",\"Bart van Ark\"],\"publicationdate\":\"1992-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"National Institute Economic Review\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://ner.sagepub.com/content/140/1/45.abstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://ner.sagepub.com/content/140/1/45.abstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://ner.sagepub.com/content/140/1/45.abstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://ner.sagepub.com/content/140/1/45.abstract\",\"id\":\"oai:RePEc:sae:niesru:v:140:y:1992:i:1:p:45-63\"},\"trust\":0.19590092}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"i:1:p:45-63"},"target_publication_author_list":{"type":"LIST_STRING","value":["Geoff Mason","Prais, S. J.","Bart van Ark"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:sae:niesru:v:140:y:1992:i:1:p:45-63"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.19590092},"target_publication_title":{"type":"STRING","value":"Vocational Education and Productivity in the Netherlands and Britain"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1992-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dare.ubvu.vu.nl:1871/15772\",\"titles\":[\"Willem Bilderdijk (1756-1831) and the Science of Language. A Dutch linguist between two worlds\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Noordegraaf, J.\"],\"publicationdate\":\"1999-01-01\",\"publisher\":\"Amsterdam\",\"embargoenddate\":\"\",\"contributor\":[\"Cram, D.\",\"Linn, A.\",\"Nowak, E.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at VU\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/1871/15772\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1871/15772\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1871/15772\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1871/15772\",\"id\":\"vu:oai:dare.ubvu.vu.nl:1871/15772\"},\"trust\":0.17547429}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_publication_id":{"type":"STRING","value":"oai:dare.ubvu.vu.nl:1871/15772"},"target_publication_author_list":{"type":"LIST_STRING","value":["Noordegraaf, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["vu:oai:dare.ubvu.vu.nl:1871/15772"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.17547429},"target_publication_title":{"type":"STRING","value":"Willem Bilderdijk (1756-1831) and the Science of Language. A Dutch linguist between two worlds"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1999-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2977293\",\"titles\":[\"Arm hand skilled performance in cerebral palsy: activity preferences and their movement components\"],\"abstracts\":[\"Background Assessment of arm-hand use is very important in children with cerebral palsy (CP) who encounter arm-hand problems. To determine validity and reliability of new instruments to assess actual performance, a set of standardized test situations including activities of daily living (ADL) is required. This study gives information with which such a set for upper extremity skill research may be fine-tuned, relative to a specific research question. Aim of this study is to a) identify upper extremity related ADL children with CP want to improve on, b) determine the 10 most preferred goals of children with CP, and c) identify movement components of all goals identified. Method The Canadian Occupational Performance Measure was used to identify upper extremity-related ADL preferences (goals) of 53 children with CP encountering arm-hand problems (mean age 9 ± 4.5 year). Goals were ranked based on importance attributed to each goal and the number of times a goal was mentioned, resulting in a gross list with goals. Additionally, two studies were performed, i.e. study A to determine the 10 most preferred goals for 3 age groups (2.5-5 years; 6-11 years, 12-19 years), based on the total preference score, and study B to identify movement components, like reaching and grasping, of all goals identified for both the leading and the assisting arm-hand. Results Seventy-two goals were identified. The 10 most preferred goals differed with age, changing from dressing and leisure-related goals in the youngest children to goals regarding personal care and eating for children aged 6-11 years. The oldest children preferred goals regarding eating, personal care and computer use. The movement components ‘positioning’, ‘reach’, ‘grasp’, and ‘hold’ were present in most tasks. ‘Manipulating’ was more important for the leading arm-hand, whereas ‘fixating’ was more important for the assisting arm-hand. Conclusion This study gave insight into the preferences regarding ADL children with CP would like to improve on, and the movement components characterizing these activities. This information can be used to create a set of standardized test situations, which can be used to assess the validity and reliability of new measurement instruments to gauge actual arm-hand skilled performance.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\",\"Cerebral Palsy\",\"Children\",\"Adolescents\",\"Activities of daily living\",\"Upper extremity\",\"Treatment goals\",\"Training preferences\",\"Canadian Occupational Performance Measure\",\"Movement components\",\"Rehabilitation\"],\"creators\":[\"Lemmens, Ryanne Jm\",\"Janssen-Potten, Yvonne Jm\",\"Timmermans, Annick Aa\",\"Defesche, Anke\",\"Smeets, Rob Jem\",\"Seelen, Henk Am\"],\"publicationdate\":\"2014-03-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"BMC Neurology\",\"issn\":\"\",\"eissn\":\"1471-2377\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1471-2377-14-52\",\"type\":\"doi\"},{\"value\":\"PMC4000003\",\"type\":\"pmc\"},{\"value\":\"24646071\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4000003\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1942/16612\",\"license\":\"OPEN\",\"hostedby\":\"Document Server@UHasselt\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1942/16612\",\"license\":\"OPEN\",\"hostedby\":\"Document Server@UHasselt\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Document Server@UHasselt\",\"url\":\"http://hdl.handle.net/1942/16612\",\"id\":\"oai:uhdspace.uhasselt.be:1942/16612\"},\"trust\":0.7125029}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2977293"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lemmens, Ryanne Jm","Janssen-Potten, Yvonne Jm","Timmermans, Annick Aa","Defesche, Anke","Smeets, Rob Jem","Seelen, Henk Am"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:uhdspace.uhasselt.be:1942/16612"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::65b9eea6e1cc6bb9f0cd2a47751a186f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article","Cerebral Palsy","Children","Adolescents","Activities of daily living","Upper extremity","Treatment goals","Training preferences","Canadian Occupational Performance Measure","Movement components","Rehabilitation"]},"trust":{"type":"FLOAT","value":0.7125029},"target_publication_title":{"type":"STRING","value":"Arm hand skilled performance in cerebral palsy: activity preferences and their movement components"},"provenance_datasource_name":{"type":"STRING","value":"Document Server@UHasselt"},"target_dateofacceptance":{"type":"DATE","value":"2014-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:uhdspace.uhasselt.be:1942/16612\",\"titles\":[\"Arm hand skilled performance in cerebral palsy: activity preferences and their movement components\"],\"abstracts\":[\"Background\\r\\nAssessment of arm-hand use is very important in children with cerebral palsy (CP) who encounter arm-hand problems. To determine validity and reliability of new instruments to assess actual performance, a set of standardized test situations including activities of daily living (ADL) is required. This study gives information with which such a set for upper extremity skill research may be fine-tuned, relative to a specific research question. Aim of this study is to a) identify upper extremity related ADL children with CP want to improve on, b) determine the 10 most preferred goals of children with CP, and c) identify movement components of all goals identified.\\r\\n\\r\\nMethod\\r\\nThe Canadian Occupational Performance Measure was used to identify upper extremity-related ADL preferences (goals) of 53 children with CP encountering arm-hand problems (mean age 9 ?? 4.5 year). Goals were ranked based on importance attributed to each goal and the number of times a goal was mentioned, resulting in a gross list with goals. Additionally, two studies were performed, i.e. study A to determine the 10 most preferred goals for 3 age groups (2.5-5 years; 6-11 years, 12-19 years), based on the total preference score, and study B to identify movement components, like reaching and grasping, of all goals identified for both the leading and the assisting arm-hand.\\r\\n\\r\\nResults\\r\\nSeventy-two goals were identified. The 10 most preferred goals differed with age, changing from dressing and leisure-related goals in the youngest children to goals regarding personal care and eating for children aged 6-11 years. The oldest children preferred goals regarding eating, personal care and computer use. The movement components ???positioning???, ???reach???, ???grasp???, and ???hold??? were present in most tasks. ???Manipulating??? was more important for the leading arm-hand, whereas ???fixating??? was more important for the assisting arm-hand.\\r\\n\\r\\nConclusion\\r\\nThis study gave insight into the preferences regarding ADL children with CP would like to improve on, and the movement components characterizing these activities. This information can be used to create a set of standardized test situations, which can be used to assess the validity and reliability of new measurement instruments to gauge actual arm-hand skilled performance.\",\"This paper was funded by Adelante, Centre of Expertise in Rehabilitation and Audiology, Hoensbroek, the Netherlands.\",\"cerebral palsy; children; adolescents; activities of daily living; upper extremity; treatment goals; training preferences; Canadian occupational performance measure; movement components; rehabilitation\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Lemmens, Ryanne\",\"Janssen-Potten, Yvonne\",\"Timmermans, Annick\",\"Defesche, Anke\",\"Smeets, Rob\",\"Seelen, Henk\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Document Server@UHasselt\"],\"pids\":[{\"value\":\"10.1186/1471-2377-14-52\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1942/16612\",\"license\":\"OPEN\",\"hostedby\":\"Document Server@UHasselt\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1186/1471-2377-14-52\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4000003\",\"id\":\"oai:europepmc.org:2977293\"},\"trust\":0.45356655}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Document Server@UHasselt"},"target_publication_id":{"type":"STRING","value":"oai:uhdspace.uhasselt.be:1942/16612"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lemmens, Ryanne","Janssen-Potten, Yvonne","Timmermans, Annick","Defesche, Anke","Smeets, Rob","Seelen, Henk"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2977293"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.45356655},"target_publication_title":{"type":"STRING","value":"Arm hand skilled performance in cerebral palsy: activity preferences and their movement components"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::65b9eea6e1cc6bb9f0cd2a47751a186f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:uhdspace.uhasselt.be:1942/16612\",\"titles\":[\"Arm hand skilled performance in cerebral palsy: activity preferences and their movement components\"],\"abstracts\":[\"Background\\r\\nAssessment of arm-hand use is very important in children with cerebral palsy (CP) who encounter arm-hand problems. To determine validity and reliability of new instruments to assess actual performance, a set of standardized test situations including activities of daily living (ADL) is required. This study gives information with which such a set for upper extremity skill research may be fine-tuned, relative to a specific research question. Aim of this study is to a) identify upper extremity related ADL children with CP want to improve on, b) determine the 10 most preferred goals of children with CP, and c) identify movement components of all goals identified.\\r\\n\\r\\nMethod\\r\\nThe Canadian Occupational Performance Measure was used to identify upper extremity-related ADL preferences (goals) of 53 children with CP encountering arm-hand problems (mean age 9 ?? 4.5 year). Goals were ranked based on importance attributed to each goal and the number of times a goal was mentioned, resulting in a gross list with goals. Additionally, two studies were performed, i.e. study A to determine the 10 most preferred goals for 3 age groups (2.5-5 years; 6-11 years, 12-19 years), based on the total preference score, and study B to identify movement components, like reaching and grasping, of all goals identified for both the leading and the assisting arm-hand.\\r\\n\\r\\nResults\\r\\nSeventy-two goals were identified. The 10 most preferred goals differed with age, changing from dressing and leisure-related goals in the youngest children to goals regarding personal care and eating for children aged 6-11 years. The oldest children preferred goals regarding eating, personal care and computer use. The movement components ???positioning???, ???reach???, ???grasp???, and ???hold??? were present in most tasks. ???Manipulating??? was more important for the leading arm-hand, whereas ???fixating??? was more important for the assisting arm-hand.\\r\\n\\r\\nConclusion\\r\\nThis study gave insight into the preferences regarding ADL children with CP would like to improve on, and the movement components characterizing these activities. This information can be used to create a set of standardized test situations, which can be used to assess the validity and reliability of new measurement instruments to gauge actual arm-hand skilled performance.\",\"This paper was funded by Adelante, Centre of Expertise in Rehabilitation and Audiology, Hoensbroek, the Netherlands.\",\"cerebral palsy; children; adolescents; activities of daily living; upper extremity; treatment goals; training preferences; Canadian occupational performance measure; movement components; rehabilitation\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Lemmens, Ryanne\",\"Janssen-Potten, Yvonne\",\"Timmermans, Annick\",\"Defesche, Anke\",\"Smeets, Rob\",\"Seelen, Henk\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Document Server@UHasselt\"],\"pids\":[{\"value\":\"PMC4000003\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1942/16612\",\"license\":\"OPEN\",\"hostedby\":\"Document Server@UHasselt\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC4000003\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4000003\",\"id\":\"oai:europepmc.org:2977293\"},\"trust\":0.45356655}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Document Server@UHasselt"},"target_publication_id":{"type":"STRING","value":"oai:uhdspace.uhasselt.be:1942/16612"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lemmens, Ryanne","Janssen-Potten, Yvonne","Timmermans, Annick","Defesche, Anke","Smeets, Rob","Seelen, Henk"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2977293"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.45356655},"target_publication_title":{"type":"STRING","value":"Arm hand skilled performance in cerebral palsy: activity preferences and their movement components"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::65b9eea6e1cc6bb9f0cd2a47751a186f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:uhdspace.uhasselt.be:1942/16612\",\"titles\":[\"Arm hand skilled performance in cerebral palsy: activity preferences and their movement components\"],\"abstracts\":[\"Background\\r\\nAssessment of arm-hand use is very important in children with cerebral palsy (CP) who encounter arm-hand problems. To determine validity and reliability of new instruments to assess actual performance, a set of standardized test situations including activities of daily living (ADL) is required. This study gives information with which such a set for upper extremity skill research may be fine-tuned, relative to a specific research question. Aim of this study is to a) identify upper extremity related ADL children with CP want to improve on, b) determine the 10 most preferred goals of children with CP, and c) identify movement components of all goals identified.\\r\\n\\r\\nMethod\\r\\nThe Canadian Occupational Performance Measure was used to identify upper extremity-related ADL preferences (goals) of 53 children with CP encountering arm-hand problems (mean age 9 ?? 4.5 year). Goals were ranked based on importance attributed to each goal and the number of times a goal was mentioned, resulting in a gross list with goals. Additionally, two studies were performed, i.e. study A to determine the 10 most preferred goals for 3 age groups (2.5-5 years; 6-11 years, 12-19 years), based on the total preference score, and study B to identify movement components, like reaching and grasping, of all goals identified for both the leading and the assisting arm-hand.\\r\\n\\r\\nResults\\r\\nSeventy-two goals were identified. The 10 most preferred goals differed with age, changing from dressing and leisure-related goals in the youngest children to goals regarding personal care and eating for children aged 6-11 years. The oldest children preferred goals regarding eating, personal care and computer use. The movement components ???positioning???, ???reach???, ???grasp???, and ???hold??? were present in most tasks. ???Manipulating??? was more important for the leading arm-hand, whereas ???fixating??? was more important for the assisting arm-hand.\\r\\n\\r\\nConclusion\\r\\nThis study gave insight into the preferences regarding ADL children with CP would like to improve on, and the movement components characterizing these activities. This information can be used to create a set of standardized test situations, which can be used to assess the validity and reliability of new measurement instruments to gauge actual arm-hand skilled performance.\",\"This paper was funded by Adelante, Centre of Expertise in Rehabilitation and Audiology, Hoensbroek, the Netherlands.\",\"cerebral palsy; children; adolescents; activities of daily living; upper extremity; treatment goals; training preferences; Canadian occupational performance measure; movement components; rehabilitation\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Lemmens, Ryanne\",\"Janssen-Potten, Yvonne\",\"Timmermans, Annick\",\"Defesche, Anke\",\"Smeets, Rob\",\"Seelen, Henk\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Document Server@UHasselt\"],\"pids\":[{\"value\":\"24646071\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1942/16612\",\"license\":\"OPEN\",\"hostedby\":\"Document Server@UHasselt\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"24646071\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4000003\",\"id\":\"oai:europepmc.org:2977293\"},\"trust\":0.45356655}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Document Server@UHasselt"},"target_publication_id":{"type":"STRING","value":"oai:uhdspace.uhasselt.be:1942/16612"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lemmens, Ryanne","Janssen-Potten, Yvonne","Timmermans, Annick","Defesche, Anke","Smeets, Rob","Seelen, Henk"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2977293"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.45356655},"target_publication_title":{"type":"STRING","value":"Arm hand skilled performance in cerebral palsy: activity preferences and their movement components"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::65b9eea6e1cc6bb9f0cd2a47751a186f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:uhdspace.uhasselt.be:1942/16612\",\"titles\":[\"Arm hand skilled performance in cerebral palsy: activity preferences and their movement components\"],\"abstracts\":[\"Background\\r\\nAssessment of arm-hand use is very important in children with cerebral palsy (CP) who encounter arm-hand problems. To determine validity and reliability of new instruments to assess actual performance, a set of standardized test situations including activities of daily living (ADL) is required. This study gives information with which such a set for upper extremity skill research may be fine-tuned, relative to a specific research question. Aim of this study is to a) identify upper extremity related ADL children with CP want to improve on, b) determine the 10 most preferred goals of children with CP, and c) identify movement components of all goals identified.\\r\\n\\r\\nMethod\\r\\nThe Canadian Occupational Performance Measure was used to identify upper extremity-related ADL preferences (goals) of 53 children with CP encountering arm-hand problems (mean age 9 ?? 4.5 year). Goals were ranked based on importance attributed to each goal and the number of times a goal was mentioned, resulting in a gross list with goals. Additionally, two studies were performed, i.e. study A to determine the 10 most preferred goals for 3 age groups (2.5-5 years; 6-11 years, 12-19 years), based on the total preference score, and study B to identify movement components, like reaching and grasping, of all goals identified for both the leading and the assisting arm-hand.\\r\\n\\r\\nResults\\r\\nSeventy-two goals were identified. The 10 most preferred goals differed with age, changing from dressing and leisure-related goals in the youngest children to goals regarding personal care and eating for children aged 6-11 years. The oldest children preferred goals regarding eating, personal care and computer use. The movement components ???positioning???, ???reach???, ???grasp???, and ???hold??? were present in most tasks. ???Manipulating??? was more important for the leading arm-hand, whereas ???fixating??? was more important for the assisting arm-hand.\\r\\n\\r\\nConclusion\\r\\nThis study gave insight into the preferences regarding ADL children with CP would like to improve on, and the movement components characterizing these activities. This information can be used to create a set of standardized test situations, which can be used to assess the validity and reliability of new measurement instruments to gauge actual arm-hand skilled performance.\",\"This paper was funded by Adelante, Centre of Expertise in Rehabilitation and Audiology, Hoensbroek, the Netherlands.\",\"cerebral palsy; children; adolescents; activities of daily living; upper extremity; treatment goals; training preferences; Canadian occupational performance measure; movement components; rehabilitation\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Lemmens, Ryanne\",\"Janssen-Potten, Yvonne\",\"Timmermans, Annick\",\"Defesche, Anke\",\"Smeets, Rob\",\"Seelen, Henk\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Document Server@UHasselt\"],\"pids\":[{\"value\":\"10.1186/1471-2377-14-52\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1942/16612\",\"license\":\"OPEN\",\"hostedby\":\"Document Server@UHasselt\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1186/1471-2377-14-52\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4000003\",\"id\":\"oai:europepmc.org:2977293\"},\"trust\":0.45356655}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Document Server@UHasselt"},"target_publication_id":{"type":"STRING","value":"oai:uhdspace.uhasselt.be:1942/16612"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lemmens, Ryanne","Janssen-Potten, Yvonne","Timmermans, Annick","Defesche, Anke","Smeets, Rob","Seelen, Henk"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2977293"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.45356655},"target_publication_title":{"type":"STRING","value":"Arm hand skilled performance in cerebral palsy: activity preferences and their movement components"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::65b9eea6e1cc6bb9f0cd2a47751a186f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:uhdspace.uhasselt.be:1942/16612\",\"titles\":[\"Arm hand skilled performance in cerebral palsy: activity preferences and their movement components\"],\"abstracts\":[\"Background\\r\\nAssessment of arm-hand use is very important in children with cerebral palsy (CP) who encounter arm-hand problems. To determine validity and reliability of new instruments to assess actual performance, a set of standardized test situations including activities of daily living (ADL) is required. This study gives information with which such a set for upper extremity skill research may be fine-tuned, relative to a specific research question. Aim of this study is to a) identify upper extremity related ADL children with CP want to improve on, b) determine the 10 most preferred goals of children with CP, and c) identify movement components of all goals identified.\\r\\n\\r\\nMethod\\r\\nThe Canadian Occupational Performance Measure was used to identify upper extremity-related ADL preferences (goals) of 53 children with CP encountering arm-hand problems (mean age 9 ?? 4.5 year). Goals were ranked based on importance attributed to each goal and the number of times a goal was mentioned, resulting in a gross list with goals. Additionally, two studies were performed, i.e. study A to determine the 10 most preferred goals for 3 age groups (2.5-5 years; 6-11 years, 12-19 years), based on the total preference score, and study B to identify movement components, like reaching and grasping, of all goals identified for both the leading and the assisting arm-hand.\\r\\n\\r\\nResults\\r\\nSeventy-two goals were identified. The 10 most preferred goals differed with age, changing from dressing and leisure-related goals in the youngest children to goals regarding personal care and eating for children aged 6-11 years. The oldest children preferred goals regarding eating, personal care and computer use. The movement components ???positioning???, ???reach???, ???grasp???, and ???hold??? were present in most tasks. ???Manipulating??? was more important for the leading arm-hand, whereas ???fixating??? was more important for the assisting arm-hand.\\r\\n\\r\\nConclusion\\r\\nThis study gave insight into the preferences regarding ADL children with CP would like to improve on, and the movement components characterizing these activities. This information can be used to create a set of standardized test situations, which can be used to assess the validity and reliability of new measurement instruments to gauge actual arm-hand skilled performance.\",\"This paper was funded by Adelante, Centre of Expertise in Rehabilitation and Audiology, Hoensbroek, the Netherlands.\",\"cerebral palsy; children; adolescents; activities of daily living; upper extremity; treatment goals; training preferences; Canadian occupational performance measure; movement components; rehabilitation\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Lemmens, Ryanne\",\"Janssen-Potten, Yvonne\",\"Timmermans, Annick\",\"Defesche, Anke\",\"Smeets, Rob\",\"Seelen, Henk\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Document Server@UHasselt\"],\"pids\":[{\"value\":\"PMC4000003\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1942/16612\",\"license\":\"OPEN\",\"hostedby\":\"Document Server@UHasselt\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC4000003\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4000003\",\"id\":\"oai:europepmc.org:2977293\"},\"trust\":0.45356655}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Document Server@UHasselt"},"target_publication_id":{"type":"STRING","value":"oai:uhdspace.uhasselt.be:1942/16612"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lemmens, Ryanne","Janssen-Potten, Yvonne","Timmermans, Annick","Defesche, Anke","Smeets, Rob","Seelen, Henk"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2977293"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.45356655},"target_publication_title":{"type":"STRING","value":"Arm hand skilled performance in cerebral palsy: activity preferences and their movement components"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::65b9eea6e1cc6bb9f0cd2a47751a186f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:uhdspace.uhasselt.be:1942/16612\",\"titles\":[\"Arm hand skilled performance in cerebral palsy: activity preferences and their movement components\"],\"abstracts\":[\"Background\\r\\nAssessment of arm-hand use is very important in children with cerebral palsy (CP) who encounter arm-hand problems. To determine validity and reliability of new instruments to assess actual performance, a set of standardized test situations including activities of daily living (ADL) is required. This study gives information with which such a set for upper extremity skill research may be fine-tuned, relative to a specific research question. Aim of this study is to a) identify upper extremity related ADL children with CP want to improve on, b) determine the 10 most preferred goals of children with CP, and c) identify movement components of all goals identified.\\r\\n\\r\\nMethod\\r\\nThe Canadian Occupational Performance Measure was used to identify upper extremity-related ADL preferences (goals) of 53 children with CP encountering arm-hand problems (mean age 9 ?? 4.5 year). Goals were ranked based on importance attributed to each goal and the number of times a goal was mentioned, resulting in a gross list with goals. Additionally, two studies were performed, i.e. study A to determine the 10 most preferred goals for 3 age groups (2.5-5 years; 6-11 years, 12-19 years), based on the total preference score, and study B to identify movement components, like reaching and grasping, of all goals identified for both the leading and the assisting arm-hand.\\r\\n\\r\\nResults\\r\\nSeventy-two goals were identified. The 10 most preferred goals differed with age, changing from dressing and leisure-related goals in the youngest children to goals regarding personal care and eating for children aged 6-11 years. The oldest children preferred goals regarding eating, personal care and computer use. The movement components ???positioning???, ???reach???, ???grasp???, and ???hold??? were present in most tasks. ???Manipulating??? was more important for the leading arm-hand, whereas ???fixating??? was more important for the assisting arm-hand.\\r\\n\\r\\nConclusion\\r\\nThis study gave insight into the preferences regarding ADL children with CP would like to improve on, and the movement components characterizing these activities. This information can be used to create a set of standardized test situations, which can be used to assess the validity and reliability of new measurement instruments to gauge actual arm-hand skilled performance.\",\"This paper was funded by Adelante, Centre of Expertise in Rehabilitation and Audiology, Hoensbroek, the Netherlands.\",\"cerebral palsy; children; adolescents; activities of daily living; upper extremity; treatment goals; training preferences; Canadian occupational performance measure; movement components; rehabilitation\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Lemmens, Ryanne\",\"Janssen-Potten, Yvonne\",\"Timmermans, Annick\",\"Defesche, Anke\",\"Smeets, Rob\",\"Seelen, Henk\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Document Server@UHasselt\"],\"pids\":[{\"value\":\"24646071\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1942/16612\",\"license\":\"OPEN\",\"hostedby\":\"Document Server@UHasselt\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"24646071\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4000003\",\"id\":\"oai:europepmc.org:2977293\"},\"trust\":0.45356655}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Document Server@UHasselt"},"target_publication_id":{"type":"STRING","value":"oai:uhdspace.uhasselt.be:1942/16612"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lemmens, Ryanne","Janssen-Potten, Yvonne","Timmermans, Annick","Defesche, Anke","Smeets, Rob","Seelen, Henk"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2977293"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.45356655},"target_publication_title":{"type":"STRING","value":"Arm hand skilled performance in cerebral palsy: activity preferences and their movement components"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::65b9eea6e1cc6bb9f0cd2a47751a186f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:inria-00072333v1\",\"titles\":[\"Strategies for Getting the Highest Likelihood in Mixture Models\"],\"abstracts\":[\"We compare simple strategies to get maximum likelihood parameter estimation in mixture models when using the EM algorithm. All considered strategies are aiming to initiate the EM algorithm in a good way. They are based on random initialisation, using a Classification EM algorithm (CEM), a Stochastic EM algorithm (SEM) or previous short runs of EM itself. They are compared in the context of multivariate Gaussian mixtures on the basis of numerical experiments on both simulated and real data sets. The main conclusions of those numerical experiments are the following. The simple random initialisation which is probably the most employed way of initiating EM is often outperformed by strategies using CEM, SEM or shorts runs of EM before running EM. Thus, those strategies can be preferred to the random initialisation strategy. Also, it appears that repeating runs of EM is generally profitable since using a single run of EM can often lead to suboptimal solutions. Otherwise, none of the experimented strategies can be regarded as the best one and it is difficult to characterize situations where a particular strategy can be expected to outperform the other ones. However, the strategy initiating EM with repeated short runs of EM can be recommended. This strategy, which as far as we know was not used before the present study have some advantages. It is simple, performs well in a lot of situations presupposing no particular form of the mixture to be fitted to the data and seems little sensitive to noisy data.\"],\"language\":\"eng\",\"subjects\":[\"MULTIVARIATE GAUSSIAN MIXTURE / OPTIMISATION / INITIALISATION STRATEGIES / EM ALGORITHM / CLASSIFICATION EM / STOCHASTIC EM\",\"[INFO.INFO-OH] Computer Science/Other\"],\"creators\":[\"Biernacki, Christophe\",\"Celeux, Gilles\",\"Govaert, Gérard\"],\"publicationdate\":\"2001-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"IS2 (INRIA Rhône-Alpes) ; INRIA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00072333\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.inria.fr/inria-00072333\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00072333\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/inria-00072333\",\"id\":\"oai:hal.inria.fr:inria-00072333\"},\"trust\":0.69357306}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:inria-00072333v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Biernacki, Christophe","Celeux, Gilles","Govaert, Gérard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:inria-00072333"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["MULTIVARIATE GAUSSIAN MIXTURE / OPTIMISATION / INITIALISATION STRATEGIES / EM ALGORITHM / CLASSIFICATION EM / STOCHASTIC EM","[INFO.INFO-OH] Computer Science/Other"]},"trust":{"type":"FLOAT","value":0.69357306},"target_publication_title":{"type":"STRING","value":"Strategies for Getting the Highest Likelihood in Mixture Models"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2001-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:inria-00072333\",\"titles\":[\"Strategies for Getting the Highest Likelihood in Mixture Models\"],\"abstracts\":[\"We compare simple strategies to get maximum likelihood parameter estimation in mixture models when using the EM algorithm. All considered strategies are aiming to initiate the EM algorithm in a good way. They are based on random initialisation, using a Classification EM algorithm (CEM), a Stochastic EM algorithm (SEM) or previous short runs of EM itself. They are compared in the context of multivariate Gaussian mixtures on the basis of numerical experiments on both simulated and real data sets. The main conclusions of those numerical experiments are the following. The simple random initialisation which is probably the most employed way of initiating EM is often outperformed by strategies using CEM, SEM or shorts runs of EM before running EM. Thus, those strategies can be preferred to the random initialisation strategy. Also, it appears that repeating runs of EM is generally profitable since using a single run of EM can often lead to suboptimal solutions. Otherwise, none of the experimented strategies can be regarded as the best one and it is difficult to characterize situations where a particular strategy can be expected to outperform the other ones. However, the strategy initiating EM with repeated short runs of EM can be recommended. This strategy, which as far as we know was not used before the present study have some advantages. It is simple, performs well in a lot of situations presupposing no particular form of the mixture to be fitted to the data and seems little sensitive to noisy data.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_OH] Computer Science/Other\",\"[INFO:INFO_OH] Informatique/Autre\",\"MULTIVARIATE GAUSSIAN MIXTURE / OPTIMISATION / INITIALISATION STRATEGIES / EM ALGORITHM / CLASSIFICATION EM / STOCHASTIC EM\"],\"creators\":[\"Biernacki, Christophe\",\"Celeux, Gilles\",\"Govaert, Gérard\"],\"publicationdate\":\"2001-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00072333\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"},{\"url\":\"https://hal.inria.fr/inria-00072333\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00072333\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/inria-00072333\",\"id\":\"oai:HAL:inria-00072333v1\"},\"trust\":0.9243955}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:inria-00072333"},"target_publication_author_list":{"type":"LIST_STRING","value":["Biernacki, Christophe","Celeux, Gilles","Govaert, Gérard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:inria-00072333v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_OH] Computer Science/Other","[INFO:INFO_OH] Informatique/Autre","MULTIVARIATE GAUSSIAN MIXTURE / OPTIMISATION / INITIALISATION STRATEGIES / EM ALGORITHM / CLASSIFICATION EM / STOCHASTIC EM"]},"trust":{"type":"FLOAT","value":0.9243955},"target_publication_title":{"type":"STRING","value":"Strategies for Getting the Highest Likelihood in Mixture Models"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2001-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cmj:journl:y:2014:i:5:csosz\\u0026dumbrava\",\"titles\":[\"EVALUATION METHODS USED FOR TANGIBLE ASSETS BY ECONOMIC ENTITIES\"],\"abstracts\":[\"At many entities the net asset value is influenced by the evaluation methods applied for tangible assets, because the value of intangible assets and financial assets is small in most cases. The objective of this paper is to analyze the differences between the procedures / methods of evaluation applied by micro and small entities and medium and large entities for tangible assets in Romania and Hungary. Furthermore, we analyze the differences between the procedures / methods of evaluation applied by micro and small entities in Romania and Hungary, respectively the differences between medium and large entities regarding de evaluation methods for tangible assets in Romania and Hungary. For this empirical study the questionnaire is used – as research technique, and to demonstrate the significant differences between the evaluation methods we used the Kolmogorov – Smirnov Z test.\"],\"language\":\"und\",\"subjects\":[\"accounting policy, evaluation methods / procedures, evaluation bases, revaluation\"],\"creators\":[\"Csősz, Csongor\",\"Dumbravă, Partenie\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Cross-Cultural Management Journal\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cmj.bxb.ro/Article/CMJ_5_7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cmj.bxb.ro/Article/CMJ_30_7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cmj.bxb.ro/Article/CMJ_30_7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cmj.bxb.ro/Article/CMJ_30_7.pdf\",\"id\":\"oai:RePEc:cmj:journl:y:2014:i:30:csosz\\u0026dumbrava\"},\"trust\":0.48558366}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cmj:journl:y:2014:i:5:csosz\u0026dumbrava"},"target_publication_author_list":{"type":"LIST_STRING","value":["Csősz, Csongor","Dumbravă, Partenie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cmj:journl:y:2014:i:30:csosz\u0026dumbrava"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["accounting policy, evaluation methods / procedures, evaluation bases, revaluation"]},"trust":{"type":"FLOAT","value":0.48558366},"target_publication_title":{"type":"STRING","value":"EVALUATION METHODS USED FOR TANGIBLE ASSETS BY ECONOMIC ENTITIES"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cmj:journl:y:2014:i:30:csosz\\u0026dumbrava\",\"titles\":[\"EVALUATION METHODS USED FOR TANGIBLE ASSETS BY ECONOMIC ENTITIES\"],\"abstracts\":[\"At many entities the net asset value is influenced by the evaluation methods applied for tangible assets, because the value of intangible assets and financial assets is small in most cases. The objective of this paper is to analyze the differences between the procedures / methods of evaluation applied by micro and small entities and medium and large entities for tangible assets in Romania and Hungary. Furthermore, we analyze the differences between the procedures / methods of evaluation applied by micro and small entities in Romania and Hungary, respectively the differences between medium and large entities regarding de evaluation methods for tangible assets in Romania and Hungary. For this empirical study the questionnaire is used – as research technique, and to demonstrate the significant differences between the evaluation methods we used the Kolmogorov – Smirnov Z test.\"],\"language\":\"und\",\"subjects\":[\"accounting policy, evaluation methods / procedures, evaluation bases, revaluation\"],\"creators\":[\"Csősz, Csongor\",\"Dumbravă, Partenie\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Cross-Cultural Management Journal\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cmj.bxb.ro/Article/CMJ_30_7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cmj.bxb.ro/Article/CMJ_5_7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cmj.bxb.ro/Article/CMJ_5_7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cmj.bxb.ro/Article/CMJ_5_7.pdf\",\"id\":\"oai:RePEc:cmj:journl:y:2014:i:5:csosz\\u0026dumbrava\"},\"trust\":0.20555031}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cmj:journl:y:2014:i:30:csosz\u0026dumbrava"},"target_publication_author_list":{"type":"LIST_STRING","value":["Csősz, Csongor","Dumbravă, Partenie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cmj:journl:y:2014:i:5:csosz\u0026dumbrava"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["accounting policy, evaluation methods / procedures, evaluation bases, revaluation"]},"trust":{"type":"FLOAT","value":0.20555031},"target_publication_title":{"type":"STRING","value":"EVALUATION METHODS USED FOR TANGIBLE ASSETS BY ECONOMIC ENTITIES"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00341093\",\"titles\":[\"Expériences d\\u0027analyse syntaxique statistique du français\"],\"abstracts\":[\"We show that we can acquire satisfactory parsing results for French from data induced from the French Treebank using an unlexicalised parsing algorithm, that learns a probabilistic contex-free grammar with latent annotations. We investigate various instantiations of the treebank, in order to improve the performance of the learnt parser.\"],\"language\":\"fra/fre\",\"subjects\":[\"[INFO:INFO_CL] Computer Science/Computation and Language\",\"[INFO:INFO_CL] Informatique/Informatique et langage\",\"[INFO:INFO_LG] Computer Science/Machine Learning\",\"[INFO:INFO_LG] Informatique/Apprentissage\",\"[STAT:OT] Statistics/Other Statistics\",\"[STAT:OT] Statistiques/Autres\",\"Analyseur syntaxique statistique\",\"Analyse syntaxique non lexicalisée\",\"Analyse du français\",\"Statistical parser\",\"unlexicalised parsing\",\"French parsing\"],\"creators\":[\"Crabbé, Benoît\",\"Candito, Marie\"],\"publicationdate\":\"2008-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"http://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/inria-00525769\",\"id\":\"oai:hal.inria.fr:inria-00525769\"},\"trust\":0.7608815}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00341093"},"target_publication_author_list":{"type":"LIST_STRING","value":["Crabbé, Benoît","Candito, Marie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:inria-00525769"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_CL] Computer Science/Computation and Language","[INFO:INFO_CL] Informatique/Informatique et langage","[INFO:INFO_LG] Computer Science/Machine Learning","[INFO:INFO_LG] Informatique/Apprentissage","[STAT:OT] Statistics/Other Statistics","[STAT:OT] Statistiques/Autres","Analyseur syntaxique statistique","Analyse syntaxique non lexicalisée","Analyse du français","Statistical parser","unlexicalised parsing","French parsing"]},"trust":{"type":"FLOAT","value":0.7608815},"target_publication_title":{"type":"STRING","value":"Expériences d\u0027analyse syntaxique statistique du français"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00341093\",\"titles\":[\"Expériences d\\u0027analyse syntaxique statistique du français\"],\"abstracts\":[\"We show that we can acquire satisfactory parsing results for French from data induced from the French Treebank using an unlexicalised parsing algorithm, that learns a probabilistic contex-free grammar with latent annotations. We investigate various instantiations of the treebank, in order to improve the performance of the learnt parser.\"],\"language\":\"fra/fre\",\"subjects\":[\"[INFO:INFO_CL] Computer Science/Computation and Language\",\"[INFO:INFO_CL] Informatique/Informatique et langage\",\"[INFO:INFO_LG] Computer Science/Machine Learning\",\"[INFO:INFO_LG] Informatique/Apprentissage\",\"[STAT:OT] Statistics/Other Statistics\",\"[STAT:OT] Statistiques/Autres\",\"Analyseur syntaxique statistique\",\"Analyse syntaxique non lexicalisée\",\"Analyse du français\",\"Statistical parser\",\"unlexicalised parsing\",\"French parsing\"],\"creators\":[\"Crabbé, Benoît\",\"Candito, Marie\"],\"publicationdate\":\"2008-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00341093\",\"id\":\"oai:HAL:hal-00341093v1\"},\"trust\":0.86019546}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00341093"},"target_publication_author_list":{"type":"LIST_STRING","value":["Crabbé, Benoît","Candito, Marie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00341093v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_CL] Computer Science/Computation and Language","[INFO:INFO_CL] Informatique/Informatique et langage","[INFO:INFO_LG] Computer Science/Machine Learning","[INFO:INFO_LG] Informatique/Apprentissage","[STAT:OT] Statistics/Other Statistics","[STAT:OT] Statistiques/Autres","Analyseur syntaxique statistique","Analyse syntaxique non lexicalisée","Analyse du français","Statistical parser","unlexicalised parsing","French parsing"]},"trust":{"type":"FLOAT","value":0.86019546},"target_publication_title":{"type":"STRING","value":"Expériences d\u0027analyse syntaxique statistique du français"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00341093\",\"titles\":[\"Expériences d\\u0027analyse syntaxique statistique du français\"],\"abstracts\":[\"We show that we can acquire satisfactory parsing results for French from data induced from the French Treebank using an unlexicalised parsing algorithm, that learns a probabilistic contex-free grammar with latent annotations. We investigate various instantiations of the treebank, in order to improve the performance of the learnt parser.\"],\"language\":\"fra/fre\",\"subjects\":[\"[INFO:INFO_CL] Computer Science/Computation and Language\",\"[INFO:INFO_CL] Informatique/Informatique et langage\",\"[INFO:INFO_LG] Computer Science/Machine Learning\",\"[INFO:INFO_LG] Informatique/Apprentissage\",\"[STAT:OT] Statistics/Other Statistics\",\"[STAT:OT] Statistiques/Autres\",\"Analyseur syntaxique statistique\",\"Analyse syntaxique non lexicalisée\",\"Analyse du français\",\"Statistical parser\",\"unlexicalised parsing\",\"French parsing\"],\"creators\":[\"Crabbé, Benoît\",\"Candito, Marie\"],\"publicationdate\":\"2008-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/inria-00525769\",\"id\":\"oai:HAL:inria-00525769v1\"},\"trust\":0.62791365}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00341093"},"target_publication_author_list":{"type":"LIST_STRING","value":["Crabbé, Benoît","Candito, Marie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:inria-00525769v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_CL] Computer Science/Computation and Language","[INFO:INFO_CL] Informatique/Informatique et langage","[INFO:INFO_LG] Computer Science/Machine Learning","[INFO:INFO_LG] Informatique/Apprentissage","[STAT:OT] Statistics/Other Statistics","[STAT:OT] Statistiques/Autres","Analyseur syntaxique statistique","Analyse syntaxique non lexicalisée","Analyse du français","Statistical parser","unlexicalised parsing","French parsing"]},"trust":{"type":"FLOAT","value":0.62791365},"target_publication_title":{"type":"STRING","value":"Expériences d\u0027analyse syntaxique statistique du français"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:inria-00525769\",\"titles\":[\"Expériences d\\u0027analyse syntaxique statistique du français\"],\"abstracts\":[\"We show that we can acquire satisfactory parsing results for French from data induced from the French Treebank using an unlexicalised parsing algorithm.\"],\"language\":\"fra/fre\",\"subjects\":[\"[INFO:INFO_TT] Computer Science/Document and Text Processing\",\"[INFO:INFO_TT] Informatique/Traitement du texte et du document\",\"[INFO:INFO_CL] Computer Science/Computation and Language\",\"[INFO:INFO_CL] Informatique/Informatique et langage\"],\"creators\":[\"Crabbé, Benoît\",\"Candito, Marie\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00341093\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00341093\"},\"trust\":0.7714632}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:inria-00525769"},"target_publication_author_list":{"type":"LIST_STRING","value":["Crabbé, Benoît","Candito, Marie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00341093"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_TT] Computer Science/Document and Text Processing","[INFO:INFO_TT] Informatique/Traitement du texte et du document","[INFO:INFO_CL] Computer Science/Computation and Language","[INFO:INFO_CL] Informatique/Informatique et langage"]},"trust":{"type":"FLOAT","value":0.7714632},"target_publication_title":{"type":"STRING","value":"Expériences d\u0027analyse syntaxique statistique du français"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:inria-00525769\",\"titles\":[\"Expériences d\\u0027analyse syntaxique statistique du français\"],\"abstracts\":[\"We show that we can acquire satisfactory parsing results for French from data induced from the French Treebank using an unlexicalised parsing algorithm.\"],\"language\":\"fra/fre\",\"subjects\":[\"[INFO:INFO_TT] Computer Science/Document and Text Processing\",\"[INFO:INFO_TT] Informatique/Traitement du texte et du document\",\"[INFO:INFO_CL] Computer Science/Computation and Language\",\"[INFO:INFO_CL] Informatique/Informatique et langage\"],\"creators\":[\"Crabbé, Benoît\",\"Candito, Marie\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00341093\",\"id\":\"oai:HAL:hal-00341093v1\"},\"trust\":0.09988749}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:inria-00525769"},"target_publication_author_list":{"type":"LIST_STRING","value":["Crabbé, Benoît","Candito, Marie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00341093v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_TT] Computer Science/Document and Text Processing","[INFO:INFO_TT] Informatique/Traitement du texte et du document","[INFO:INFO_CL] Computer Science/Computation and Language","[INFO:INFO_CL] Informatique/Informatique et langage"]},"trust":{"type":"FLOAT","value":0.09988749},"target_publication_title":{"type":"STRING","value":"Expériences d\u0027analyse syntaxique statistique du français"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:inria-00525769\",\"titles\":[\"Expériences d\\u0027analyse syntaxique statistique du français\"],\"abstracts\":[\"We show that we can acquire satisfactory parsing results for French from data induced from the French Treebank using an unlexicalised parsing algorithm.\"],\"language\":\"fra/fre\",\"subjects\":[\"[INFO:INFO_TT] Computer Science/Document and Text Processing\",\"[INFO:INFO_TT] Informatique/Traitement du texte et du document\",\"[INFO:INFO_CL] Computer Science/Computation and Language\",\"[INFO:INFO_CL] Informatique/Informatique et langage\"],\"creators\":[\"Crabbé, Benoît\",\"Candito, Marie\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/inria-00525769\",\"id\":\"oai:HAL:inria-00525769v1\"},\"trust\":0.64581794}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:inria-00525769"},"target_publication_author_list":{"type":"LIST_STRING","value":["Crabbé, Benoît","Candito, Marie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:inria-00525769v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_TT] Computer Science/Document and Text Processing","[INFO:INFO_TT] Informatique/Traitement du texte et du document","[INFO:INFO_CL] Computer Science/Computation and Language","[INFO:INFO_CL] Informatique/Informatique et langage"]},"trust":{"type":"FLOAT","value":0.64581794},"target_publication_title":{"type":"STRING","value":"Expériences d\u0027analyse syntaxique statistique du français"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00341093v1\",\"titles\":[\"Expériences d\\u0027analyse syntaxique statistique du français\"],\"abstracts\":[\"National audience\",\"We show that we can acquire satisfactory parsing results for French from data induced from the French Treebank using an unlexicalised parsing algorithm, that learns a probabilistic contex-free grammar with latent annotations. We investigate various instantiations of the treebank, in order to improve the performance of the learnt parser.\"],\"language\":\"fra/fre\",\"subjects\":[\"Analyseur syntaxique statistique\",\"Analyse syntaxique non lexicalisée\",\"Analyse du français\",\"Statistical parser\",\"unlexicalised parsing\",\"French parsing\",\"[INFO.INFO-CL] Computer Science/Computation and Language\",\"[INFO.INFO-LG] Computer Science/Machine Learning\",\"[STAT.OT] Statistics/Other Statistics\"],\"creators\":[\"Crabbé, Benoît\",\"Candito, Marie\"],\"publicationdate\":\"2008-06-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"ALPAGE (INRIA Paris-Rocquencourt) ; INRIA - Université Paris VII - Paris Diderot\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00341093\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00341093\"},\"trust\":0.6405226}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00341093v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Crabbé, Benoît","Candito, Marie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00341093"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Analyseur syntaxique statistique","Analyse syntaxique non lexicalisée","Analyse du français","Statistical parser","unlexicalised parsing","French parsing","[INFO.INFO-CL] Computer Science/Computation and Language","[INFO.INFO-LG] Computer Science/Machine Learning","[STAT.OT] Statistics/Other Statistics"]},"trust":{"type":"FLOAT","value":0.6405226},"target_publication_title":{"type":"STRING","value":"Expériences d\u0027analyse syntaxique statistique du français"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00341093v1\",\"titles\":[\"Expériences d\\u0027analyse syntaxique statistique du français\"],\"abstracts\":[\"National audience\",\"We show that we can acquire satisfactory parsing results for French from data induced from the French Treebank using an unlexicalised parsing algorithm, that learns a probabilistic contex-free grammar with latent annotations. We investigate various instantiations of the treebank, in order to improve the performance of the learnt parser.\"],\"language\":\"fra/fre\",\"subjects\":[\"Analyseur syntaxique statistique\",\"Analyse syntaxique non lexicalisée\",\"Analyse du français\",\"Statistical parser\",\"unlexicalised parsing\",\"French parsing\",\"[INFO.INFO-CL] Computer Science/Computation and Language\",\"[INFO.INFO-LG] Computer Science/Machine Learning\",\"[STAT.OT] Statistics/Other Statistics\"],\"creators\":[\"Crabbé, Benoît\",\"Candito, Marie\"],\"publicationdate\":\"2008-06-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"ALPAGE (INRIA Paris-Rocquencourt) ; INRIA - Université Paris VII - Paris Diderot\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/inria-00525769\",\"id\":\"oai:hal.inria.fr:inria-00525769\"},\"trust\":0.09567225}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00341093v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Crabbé, Benoît","Candito, Marie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:inria-00525769"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Analyseur syntaxique statistique","Analyse syntaxique non lexicalisée","Analyse du français","Statistical parser","unlexicalised parsing","French parsing","[INFO.INFO-CL] Computer Science/Computation and Language","[INFO.INFO-LG] Computer Science/Machine Learning","[STAT.OT] Statistics/Other Statistics"]},"trust":{"type":"FLOAT","value":0.09567225},"target_publication_title":{"type":"STRING","value":"Expériences d\u0027analyse syntaxique statistique du français"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00341093v1\",\"titles\":[\"Expériences d\\u0027analyse syntaxique statistique du français\"],\"abstracts\":[\"National audience\",\"We show that we can acquire satisfactory parsing results for French from data induced from the French Treebank using an unlexicalised parsing algorithm, that learns a probabilistic contex-free grammar with latent annotations. We investigate various instantiations of the treebank, in order to improve the performance of the learnt parser.\"],\"language\":\"fra/fre\",\"subjects\":[\"Analyseur syntaxique statistique\",\"Analyse syntaxique non lexicalisée\",\"Analyse du français\",\"Statistical parser\",\"unlexicalised parsing\",\"French parsing\",\"[INFO.INFO-CL] Computer Science/Computation and Language\",\"[INFO.INFO-LG] Computer Science/Machine Learning\",\"[STAT.OT] Statistics/Other Statistics\"],\"creators\":[\"Crabbé, Benoît\",\"Candito, Marie\"],\"publicationdate\":\"2008-06-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"ALPAGE (INRIA Paris-Rocquencourt) ; INRIA - Université Paris VII - Paris Diderot\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"https://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/inria-00525769\",\"id\":\"oai:HAL:inria-00525769v1\"},\"trust\":0.7760612}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00341093v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Crabbé, Benoît","Candito, Marie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:inria-00525769v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Analyseur syntaxique statistique","Analyse syntaxique non lexicalisée","Analyse du français","Statistical parser","unlexicalised parsing","French parsing","[INFO.INFO-CL] Computer Science/Computation and Language","[INFO.INFO-LG] Computer Science/Machine Learning","[STAT.OT] Statistics/Other Statistics"]},"trust":{"type":"FLOAT","value":0.7760612},"target_publication_title":{"type":"STRING","value":"Expériences d\u0027analyse syntaxique statistique du français"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:inria-00525769v1\",\"titles\":[\"Expériences d\\u0027analyse syntaxique statistique du français\"],\"abstracts\":[\"International audience\",\"We show that we can acquire satisfactory parsing results for French from data induced from the French Treebank using an unlexicalised parsing algorithm.\",\"Nous montrons qu\\u0027il est possible d\\u0027obtenir une analyse syntaxique statistique satisfaisante pour le français sur du corpus journalistique, à partir des données issues du French Treebank du laboratoire LLF, à l\\u0027aide d\\u0027un algorithme d\\u0027analyse non lexicalisé.\"],\"language\":\"fra/fre\",\"subjects\":[\"[INFO.INFO-TT] Computer Science/Document and Text Processing\",\"[INFO.INFO-CL] Computer Science/Computation and Language\"],\"creators\":[\"Crabbé, Benoît\",\"Candito, Marie\"],\"publicationdate\":\"2008-06-09\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"ALPAGE (INRIA Paris-Rocquencourt) ; INRIA - Université Paris VII - Paris Diderot\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00341093\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00341093\"},\"trust\":0.003425002}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:inria-00525769v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Crabbé, Benoît","Candito, Marie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00341093"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO.INFO-TT] Computer Science/Document and Text Processing","[INFO.INFO-CL] Computer Science/Computation and Language"]},"trust":{"type":"FLOAT","value":0.003425002},"target_publication_title":{"type":"STRING","value":"Expériences d\u0027analyse syntaxique statistique du français"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-06-09"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:inria-00525769v1\",\"titles\":[\"Expériences d\\u0027analyse syntaxique statistique du français\"],\"abstracts\":[\"International audience\",\"We show that we can acquire satisfactory parsing results for French from data induced from the French Treebank using an unlexicalised parsing algorithm.\",\"Nous montrons qu\\u0027il est possible d\\u0027obtenir une analyse syntaxique statistique satisfaisante pour le français sur du corpus journalistique, à partir des données issues du French Treebank du laboratoire LLF, à l\\u0027aide d\\u0027un algorithme d\\u0027analyse non lexicalisé.\"],\"language\":\"fra/fre\",\"subjects\":[\"[INFO.INFO-TT] Computer Science/Document and Text Processing\",\"[INFO.INFO-CL] Computer Science/Computation and Language\"],\"creators\":[\"Crabbé, Benoît\",\"Candito, Marie\"],\"publicationdate\":\"2008-06-09\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"ALPAGE (INRIA Paris-Rocquencourt) ; INRIA - Université Paris VII - Paris Diderot\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/inria-00525769\",\"id\":\"oai:hal.inria.fr:inria-00525769\"},\"trust\":0.43946075}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:inria-00525769v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Crabbé, Benoît","Candito, Marie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:inria-00525769"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO.INFO-TT] Computer Science/Document and Text Processing","[INFO.INFO-CL] Computer Science/Computation and Language"]},"trust":{"type":"FLOAT","value":0.43946075},"target_publication_title":{"type":"STRING","value":"Expériences d\u0027analyse syntaxique statistique du français"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-06-09"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:inria-00525769v1\",\"titles\":[\"Expériences d\\u0027analyse syntaxique statistique du français\"],\"abstracts\":[\"International audience\",\"We show that we can acquire satisfactory parsing results for French from data induced from the French Treebank using an unlexicalised parsing algorithm.\",\"Nous montrons qu\\u0027il est possible d\\u0027obtenir une analyse syntaxique statistique satisfaisante pour le français sur du corpus journalistique, à partir des données issues du French Treebank du laboratoire LLF, à l\\u0027aide d\\u0027un algorithme d\\u0027analyse non lexicalisé.\"],\"language\":\"fra/fre\",\"subjects\":[\"[INFO.INFO-TT] Computer Science/Document and Text Processing\",\"[INFO.INFO-CL] Computer Science/Computation and Language\"],\"creators\":[\"Crabbé, Benoît\",\"Candito, Marie\"],\"publicationdate\":\"2008-06-09\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"ALPAGE (INRIA Paris-Rocquencourt) ; INRIA - Université Paris VII - Paris Diderot\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00525769\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00341093\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00341093\",\"id\":\"oai:HAL:hal-00341093v1\"},\"trust\":0.76106924}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:inria-00525769v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Crabbé, Benoît","Candito, Marie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00341093v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO.INFO-TT] Computer Science/Document and Text Processing","[INFO.INFO-CL] Computer Science/Computation and Language"]},"trust":{"type":"FLOAT","value":0.76106924},"target_publication_title":{"type":"STRING","value":"Expériences d\u0027analyse syntaxique statistique du français"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-06-09"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3202918\",\"titles\":[\"Development of aminoglycoside and β-lactamase resistance among intestinal microbiota of swine treated with lincomycin, chlortetracycline, and amoxicillin\"],\"abstracts\":[\"Lincomycin, chlortetracycline, and amoxicillin are commonly used antimicrobials for growth promotion and infectious disease prophylaxis in swine production. In this study, we investigated the shifts and resistance development among intestinal microbiota in pregnant sows before and after lincomycin, chlortetracycline, and amoxicillin treatment by using phylogenetic analysis, bacterial enumeration, and PCR. After the antimicrobial treatment, shifts in microbial community, an increased proportion of resistant bacteria, and genes related to antimicrobial resistance as compared to the day before antimicrobial administration (day 0) were observed. Importantly, a positive correlation between antimicrobial resistance gene expression in different categories, especially those encoding aminoglycoside and β-lactamase and antimicrobial resistance, was observed. These findings demonstrate an important role of antimicrobial usage in animals in the development of antimicrobial resistance, and support the notion that prudent use of antimicrobials in swine is needed to reduce the risk of the emergence of multi-drug resistant zoonotic pathogens.\"],\"language\":\"eng\",\"subjects\":[\"Microbiology\",\"Original Research Article\",\"culture-independent method\",\"qPCR\",\"antimicrobial-resistant genes\",\"16S rRNA\",\"Bacterial Enumeration\"],\"creators\":[\"Sun, Jian\",\"Li, Liang\",\"Liu, Baotao\",\"Xia, Jing\",\"Liao, Xiaoping\",\"Liu, Yahong\"],\"publicationdate\":\"2014-11-01\",\"publisher\":\"Frontiers Media S.A.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Frontiers in Microbiology\",\"issn\":\"\",\"eissn\":\"1664-302X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3389/fmicb.2014.00580\",\"type\":\"doi\"},{\"value\":\"PMC4219486\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4219486\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.3389/fmicb.2014.00580\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Microbiology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.3389/fmicb.2014.00580\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Microbiology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Frontiers\",\"url\":\"http://dx.doi.org/10.3389/fmicb.2014.00580\",\"id\":\"10.3389/fmicb.2014.00580\"},\"trust\":0.7957018}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3202918"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sun, Jian","Li, Liang","Liu, Baotao","Xia, Jing","Liao, Xiaoping","Liu, Yahong"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.3389/fmicb.2014.00580"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::3db634fc5446f389d0b826ea400a5da6"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Microbiology","Original Research Article","culture-independent method","qPCR","antimicrobial-resistant genes","16S rRNA","Bacterial Enumeration"]},"trust":{"type":"FLOAT","value":0.7957018},"target_publication_title":{"type":"STRING","value":"Development of aminoglycoside and β-lactamase resistance among intestinal microbiota of swine treated with lincomycin, chlortetracycline, and amoxicillin"},"provenance_datasource_name":{"type":"STRING","value":"Frontiers"},"target_dateofacceptance":{"type":"DATE","value":"2014-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.up.ac.za:2263/20522\",\"titles\":[\"Industrial engineering : rooting for roots, hankering for heroes\"],\"abstracts\":[\"The “roots” of Industrial Engineering are certainly extensive, diverse and deep. Similarly,\\nthere are numerous historical “heroes” that made significant contributions to the development\\nof the Industrial Engineering discipline. For the sake of argument, this article will assume that\\nIndustrial Engineering has at least two identifiable main roots, namely Determinism and\\nStochastism. The article attempts to trace the early history of the stochastic root which is\\nvery closely linked to the history of probability and statistics and hence games of chance,\\ngambling and divinity. Therefore, the life and times, contributions and personalities of some\\nof the heroes and villains, champions and sad cases of the stochastic world, will be briefly\\ndiscussed in a somewhat light-hearted, but not necessarily flippant, manner.\",\"Die “wortel en tak” van Bedryfsingenieurswese is sekerlik van groot omvang, van diverse\\naard en diep gesetel. Verskeie historiese “helde” het betekenisvolle bydraes gemaak tot die\\nontwikkeling van die Bedryfsingenieurswesevakgebied. Ter wille van betoogvoering sal in\\nhierdie artikel aanvaar word dat Bedryfsingenieurswese uit minstens twee identifiseerbare\\nsub-vakgebiede bestaan naamlik : Die Determinisme en die Stogasme. ’n Poging word\\naangewend om die vroeë geskiedenis van die stogasme na te speur wat op sy beurt\\naaneengesnoer is met die geskiedenis van die waarskynlikheidsleer en statistiek en dus\\ntoevalspelle, dobbelary en wiggelary. Die lewenswyse, tydsgewrig, bydraes en\\npersoonlikheidseienskappe van ’n aantal helde en skurke, kampioene en prulle van die\\nstogastiese wêreld word kortliks bespreek, op ’n ietwat lighartige maar nie noodwendig\\nligsinnige wyse.\",\"http://sajie.journals.ac.za\"],\"language\":\"eng\",\"subjects\":[\"Determinism\",\"Stochastism\"],\"creators\":[\"Kruger, P. S.\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"Southern African Institute for Industrial Engineering\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UPSpace at the University of Pretoria\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2263/20522\",\"license\":\"OPEN\",\"hostedby\":\"UPSpace at the University of Pretoria\",\"instancetype\":\"Article\"},{\"url\":\"http://sajie.journals.ac.za/pub/article/view/272\",\"license\":\"OPEN\",\"hostedby\":\"South African Journal of Industrial Engineering\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://sajie.journals.ac.za/pub/article/view/272\",\"license\":\"OPEN\",\"hostedby\":\"South African Journal of Industrial Engineering\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://sajie.journals.ac.za/pub/article/view/272\",\"id\":\"oai:doaj.org/article:49870b17dd794e118621f603ee40090c\"},\"trust\":0.14064866}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UPSpace at the University of Pretoria"},"target_publication_id":{"type":"STRING","value":"oai:repository.up.ac.za:2263/20522"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kruger, P. S."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:49870b17dd794e118621f603ee40090c"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Determinism","Stochastism"]},"trust":{"type":"FLOAT","value":0.14064866},"target_publication_title":{"type":"STRING","value":"Industrial engineering : rooting for roots, hankering for heroes"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::291597a100aadd814d197af4f4bab3a7"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oa.upm.es:6392\",\"titles\":[\"Equipos de medida de calidad organoléptica en frutas\"],\"abstracts\":[\"La calidad global de los alimentos, tal y como la va a apreciar el consumidor final, debe lograrse por la interacción de todos los participantes en el sector (productores, transporte, almacenamiento, distribución, industria, etc.) paralo cual es imprescindible implantar sistemas de aseguramiento de la calidad y herramientas de control (Calvo Rebollar, 1998).\"],\"language\":\"spa\",\"subjects\":[\"Agricultura\"],\"creators\":[\"Valero Ubierna, Constantino\",\"Ruiz-Altisent, Margarita\"],\"publicationdate\":\"1998-05-01\",\"publisher\":\"E.T.S.I. Agrónomos (UPM)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Archivo Digital UPM\"],\"pids\":[],\"instances\":[{\"url\":\"http://oa.upm.es/6392/\",\"license\":\"OPEN\",\"hostedby\":\"Archivo Digital UPM\",\"instancetype\":\"Article\"},{\"url\":\"http://oa.upm.es/6393/\",\"license\":\"OPEN\",\"hostedby\":\"Archivo Digital UPM\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://oa.upm.es/6393/\",\"license\":\"OPEN\",\"hostedby\":\"Archivo Digital UPM\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Archivo Digital UPM\",\"url\":\"http://oa.upm.es/6393/\",\"id\":\"oai:oa.upm.es:6393\"},\"trust\":0.78639865}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Archivo Digital UPM"},"target_publication_id":{"type":"STRING","value":"oai:oa.upm.es:6392"},"target_publication_author_list":{"type":"LIST_STRING","value":["Valero Ubierna, Constantino","Ruiz-Altisent, Margarita"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oa.upm.es:6393"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::e17184bcb70dcf3942c54e0b537ffc6d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Agricultura"]},"trust":{"type":"FLOAT","value":0.78639865},"target_publication_title":{"type":"STRING","value":"Equipos de medida de calidad organoléptica en frutas"},"provenance_datasource_name":{"type":"STRING","value":"Archivo Digital UPM"},"target_dateofacceptance":{"type":"DATE","value":"1998-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::e17184bcb70dcf3942c54e0b537ffc6d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oa.upm.es:6393\",\"titles\":[\"Equipos de medida de calidad organoléptica en frutas\"],\"abstracts\":[\"La medida de los parámetros de calidad en frutas ha evolucionado significativamente en los últimos años, incorporando modernos equipos de medida y nuevas tecnologías al sector hortofrutícola, que facilitan el control de la calidad de estos productos. En este artículo se revisan los principales parámetros de calidad, los diferentes equipos que se pueden emplear para medirlos y los futuros desarrollos científico, explicando brevemente su modo de funcionamiento.\"],\"language\":\"spa\",\"subjects\":[\"Agricultura\"],\"creators\":[\"Valero Ubierna, Constantino\",\"Ruiz-Altisent, Margarita\"],\"publicationdate\":\"1998-07-01\",\"publisher\":\"E.T.S.I. Agrónomos (UPM)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Archivo Digital UPM\"],\"pids\":[],\"instances\":[{\"url\":\"http://oa.upm.es/6393/\",\"license\":\"OPEN\",\"hostedby\":\"Archivo Digital UPM\",\"instancetype\":\"Article\"},{\"url\":\"http://oa.upm.es/6392/\",\"license\":\"OPEN\",\"hostedby\":\"Archivo Digital UPM\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://oa.upm.es/6392/\",\"license\":\"OPEN\",\"hostedby\":\"Archivo Digital UPM\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Archivo Digital UPM\",\"url\":\"http://oa.upm.es/6392/\",\"id\":\"oai:oa.upm.es:6392\"},\"trust\":0.61822563}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Archivo Digital UPM"},"target_publication_id":{"type":"STRING","value":"oai:oa.upm.es:6393"},"target_publication_author_list":{"type":"LIST_STRING","value":["Valero Ubierna, Constantino","Ruiz-Altisent, Margarita"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oa.upm.es:6392"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::e17184bcb70dcf3942c54e0b537ffc6d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Agricultura"]},"trust":{"type":"FLOAT","value":0.61822563},"target_publication_title":{"type":"STRING","value":"Equipos de medida de calidad organoléptica en frutas"},"provenance_datasource_name":{"type":"STRING","value":"Archivo Digital UPM"},"target_dateofacceptance":{"type":"DATE","value":"1998-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::e17184bcb70dcf3942c54e0b537ffc6d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.tara.tcd.ie:2262/15839\",\"titles\":[\"Church of St. Merryn, Padstow, Cornwall, England - Font\"],\"abstracts\":[\"(handwritten on back of image): 66.140, St. Merryn (Cornwall): Font, E. face\"],\"language\":\"eng\",\"subjects\":[\"Angels\",\"Cornwall (England : County)\",\"Fonts\",\"Figure sculpture\",\"Stone carving\",\"Late Medieval\"],\"creators\":[\"Rae, Edwin\"],\"publicationdate\":\"2008-04-06\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Trinity\\u0027s Access to Research Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2262/15839\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/2262/14565\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2262/14565\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Trinity\\u0027s Access to Research Archive\",\"url\":\"http://hdl.handle.net/2262/14565\",\"id\":\"oai:www.tara.tcd.ie:2262/14565\"},\"trust\":0.527413}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:www.tara.tcd.ie:2262/15839"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rae, Edwin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.tara.tcd.ie:2262/14565"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Angels","Cornwall (England : County)","Fonts","Figure sculpture","Stone carving","Late Medieval"]},"trust":{"type":"FLOAT","value":0.527413},"target_publication_title":{"type":"STRING","value":"Church of St. Merryn, Padstow, Cornwall, England - Font"},"provenance_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2008-04-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.tara.tcd.ie:2262/14565\",\"titles\":[\"Church of St. Merryn, Padstow, Cornwall, England - Font\"],\"abstracts\":[\"(handwritten on back of image): St. Merryn, Cornwall: Church of St. Merryn: Font from West (Clayton 7147)\"],\"language\":\"eng\",\"subjects\":[\"St. Merryn\",\"Cornwall (England : County)\",\"Figure sculpture\",\"Stone carving\",\"Late Medieval\"],\"creators\":[\"Rae, Edwin\"],\"publicationdate\":\"2008-03-07\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Trinity\\u0027s Access to Research Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2262/14565\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/2262/15839\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2262/15839\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Trinity\\u0027s Access to Research Archive\",\"url\":\"http://hdl.handle.net/2262/15839\",\"id\":\"oai:www.tara.tcd.ie:2262/15839\"},\"trust\":0.94765526}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:www.tara.tcd.ie:2262/14565"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rae, Edwin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.tara.tcd.ie:2262/15839"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["St. Merryn","Cornwall (England : County)","Figure sculpture","Stone carving","Late Medieval"]},"trust":{"type":"FLOAT","value":0.94765526},"target_publication_title":{"type":"STRING","value":"Church of St. Merryn, Padstow, Cornwall, England - Font"},"provenance_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2008-03-07"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:works.bepress.com:d_reutzel-1410\",\"titles\":[\"Common Core State Standards in Language Arts, K-12: What will Publishers, Schools and Teachers Need to Know and Do to Respond?\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"common core\",\"state\",\"standards\",\"language arts\",\"publishers\",\"schools\",\"teachers\",\"respond\"],\"creators\":[\"Reutzel, D. Ray\"],\"publicationdate\":\"2011-05-09\",\"publisher\":\"SelectedWorks\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DigitalCommons@USU\"],\"pids\":[],\"instances\":[{\"url\":\"http://works.bepress.com/d_reutzel/411\",\"license\":\"OPEN\",\"hostedby\":\"DigitalCommons@USU\",\"instancetype\":\"Article\"},{\"url\":\"http://digitalcommons.usu.edu/teal_facpub/1983\",\"license\":\"OPEN\",\"hostedby\":\"DigitalCommons@USU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://digitalcommons.usu.edu/teal_facpub/1983\",\"license\":\"OPEN\",\"hostedby\":\"DigitalCommons@USU\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DigitalCommons@USU\",\"url\":\"http://digitalcommons.usu.edu/teal_facpub/1983\",\"id\":\"oai:digitalcommons.usu.edu:teal_facpub-2982\"},\"trust\":0.99492335}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DigitalCommons@USU"},"target_publication_id":{"type":"STRING","value":"oai:works.bepress.com:d_reutzel-1410"},"target_publication_author_list":{"type":"LIST_STRING","value":["Reutzel, D. Ray"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:digitalcommons.usu.edu:teal_facpub-2982"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1abb1e1ea5f481b589da52303b091cbb"},"target_publication_subject_list":{"type":"LIST_STRING","value":["common core","state","standards","language arts","publishers","schools","teachers","respond"]},"trust":{"type":"FLOAT","value":0.99492335},"target_publication_title":{"type":"STRING","value":"Common Core State Standards in Language Arts, K-12: What will Publishers, Schools and Teachers Need to Know and Do to Respond?"},"provenance_datasource_name":{"type":"STRING","value":"DigitalCommons@USU"},"target_dateofacceptance":{"type":"DATE","value":"2011-05-09"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1abb1e1ea5f481b589da52303b091cbb"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:digitalcommons.usu.edu:teal_facpub-2982\",\"titles\":[\"Common Core State Standards in Language Arts, K-12: What will Publishers, Schools and Teachers Need to Know and Do to Respond?\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"common core\",\"state\",\"standards\",\"language arts\",\"publishers\",\"schools\",\"teachers\",\"respond\"],\"creators\":[\"Reutzel, D. Ray\"],\"publicationdate\":\"2011-05-09\",\"publisher\":\"Hosted by Utah State University Libraries\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DigitalCommons@USU\"],\"pids\":[],\"instances\":[{\"url\":\"http://digitalcommons.usu.edu/teal_facpub/1983\",\"license\":\"OPEN\",\"hostedby\":\"DigitalCommons@USU\",\"instancetype\":\"Article\"},{\"url\":\"http://works.bepress.com/d_reutzel/411\",\"license\":\"OPEN\",\"hostedby\":\"DigitalCommons@USU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://works.bepress.com/d_reutzel/411\",\"license\":\"OPEN\",\"hostedby\":\"DigitalCommons@USU\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DigitalCommons@USU\",\"url\":\"http://works.bepress.com/d_reutzel/411\",\"id\":\"oai:works.bepress.com:d_reutzel-1410\"},\"trust\":0.6603441}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DigitalCommons@USU"},"target_publication_id":{"type":"STRING","value":"oai:digitalcommons.usu.edu:teal_facpub-2982"},"target_publication_author_list":{"type":"LIST_STRING","value":["Reutzel, D. Ray"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:works.bepress.com:d_reutzel-1410"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1abb1e1ea5f481b589da52303b091cbb"},"target_publication_subject_list":{"type":"LIST_STRING","value":["common core","state","standards","language arts","publishers","schools","teachers","respond"]},"trust":{"type":"FLOAT","value":0.6603441},"target_publication_title":{"type":"STRING","value":"Common Core State Standards in Language Arts, K-12: What will Publishers, Schools and Teachers Need to Know and Do to Respond?"},"provenance_datasource_name":{"type":"STRING","value":"DigitalCommons@USU"},"target_dateofacceptance":{"type":"DATE","value":"2011-05-09"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1abb1e1ea5f481b589da52303b091cbb"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00882470\",\"titles\":[\"A critical review of larch hybridization and its incidence on breeding strategies\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:SA:SF] Life Sciences/Agricultural sciences/Silviculture, forestry\",\"[SDV:SA:SF] Sciences du Vivant/Sciences agricoles/Sylviculture, foresterie\"],\"creators\":[\"Pâques, L. E.\"],\"publicationdate\":\"1989-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00882470\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00882470\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00882470\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00882470\",\"id\":\"oai:HAL:hal-00882470v1\"},\"trust\":0.1434151}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00882470"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pâques, L. E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00882470v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:SA:SF] Life Sciences/Agricultural sciences/Silviculture, forestry","[SDV:SA:SF] Sciences du Vivant/Sciences agricoles/Sylviculture, foresterie"]},"trust":{"type":"FLOAT","value":0.1434151},"target_publication_title":{"type":"STRING","value":"A critical review of larch hybridization and its incidence on breeding strategies"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1989-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00882470\",\"titles\":[\"A critical review of larch hybridization and its incidence on breeding strategies\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:SA:SF] Life Sciences/Agricultural sciences/Silviculture, forestry\",\"[SDV:SA:SF] Sciences du Vivant/Sciences agricoles/Sylviculture, foresterie\"],\"creators\":[\"Pâques, L. E.\"],\"publicationdate\":\"1989-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00882470\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"International audience\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00882470\",\"id\":\"oai:HAL:hal-00882470v1\"},\"trust\":0.71824867}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00882470"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pâques, L. E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00882470v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:SA:SF] Life Sciences/Agricultural sciences/Silviculture, forestry","[SDV:SA:SF] Sciences du Vivant/Sciences agricoles/Sylviculture, foresterie"]},"trust":{"type":"FLOAT","value":0.71824867},"target_publication_title":{"type":"STRING","value":"A critical review of larch hybridization and its incidence on breeding strategies"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1989-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00882470v1\",\"titles\":[\"A critical review of larch hybridization and its incidence on breeding strategies\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.SA.SF] Life Sciences/Agricultural sciences/Silviculture, forestry\"],\"creators\":[\"Pâques, L. E.\"],\"publicationdate\":\"1989-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00882470\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00882470\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00882470\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00882470\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00882470\"},\"trust\":0.95330405}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00882470v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pâques, L. E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00882470"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.SA.SF] Life Sciences/Agricultural sciences/Silviculture, forestry"]},"trust":{"type":"FLOAT","value":0.95330405},"target_publication_title":{"type":"STRING","value":"A critical review of larch hybridization and its incidence on breeding strategies"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1989-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00784946\",\"titles\":[\"Crise financière et élévation du coût de la dette des collectivités locales\"],\"abstracts\":[\"Ce document de travail s\\u0027attache aux conséquences de la crise des subprimes sur les conditions d\\u0027accès aux marchés des fonds prêtables pour les collectivités territoriales à la fois américaines et européennes. Nous nous attachons notamment aux conséquences de la crise sur les politiques de gestion active des la dette, notamment sur les produits structurés à l\\u0027origine des débats autours des emprunts dits toxiques\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:ECO] Humanities and Social Sciences/Economy and finances\",\"[SHS:ECO] Sciences de l\\u0027Homme et Société/Economie et finances\",\"crise financière\",\"subprimes\",\"collectivités locales\",\"gestion active de la dette\",\"produits structurés\",\"emprunts toxiques\"],\"creators\":[\"Marty, Frédéric\"],\"publicationdate\":\"2008-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00784946\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00784946/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00784946/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00784946/document\",\"id\":\"oai:RePEc:hal:journl:halshs-00784946\"},\"trust\":0.7133113}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00784946"},"target_publication_author_list":{"type":"LIST_STRING","value":["Marty, Frédéric"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:journl:halshs-00784946"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:ECO] Humanities and Social Sciences/Economy and finances","[SHS:ECO] Sciences de l\u0027Homme et Société/Economie et finances","crise financière","subprimes","collectivités locales","gestion active de la dette","produits structurés","emprunts toxiques"]},"trust":{"type":"FLOAT","value":0.7133113},"target_publication_title":{"type":"STRING","value":"Crise financière et élévation du coût de la dette des collectivités locales"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00784946\",\"titles\":[\"Crise financière et élévation du coût de la dette des collectivités locales\"],\"abstracts\":[\"Ce document de travail s\\u0027attache aux conséquences de la crise des subprimes sur les conditions d\\u0027accès aux marchés des fonds prêtables pour les collectivités territoriales à la fois américaines et européennes. Nous nous attachons notamment aux conséquences de la crise sur les politiques de gestion active des la dette, notamment sur les produits structurés à l\\u0027origine des débats autours des emprunts dits toxiques\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:ECO] Humanities and Social Sciences/Economy and finances\",\"[SHS:ECO] Sciences de l\\u0027Homme et Société/Economie et finances\",\"crise financière\",\"subprimes\",\"collectivités locales\",\"gestion active de la dette\",\"produits structurés\",\"emprunts toxiques\"],\"creators\":[\"Marty, Frédéric\"],\"publicationdate\":\"2008-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00784946\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00784946\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00784946\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00784946\",\"id\":\"oai:HAL:halshs-00784946v1\"},\"trust\":0.12019467}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00784946"},"target_publication_author_list":{"type":"LIST_STRING","value":["Marty, Frédéric"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00784946v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:ECO] Humanities and Social Sciences/Economy and finances","[SHS:ECO] Sciences de l\u0027Homme et Société/Economie et finances","crise financière","subprimes","collectivités locales","gestion active de la dette","produits structurés","emprunts toxiques"]},"trust":{"type":"FLOAT","value":0.12019467},"target_publication_title":{"type":"STRING","value":"Crise financière et élévation du coût de la dette des collectivités locales"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:halshs-00784946\",\"titles\":[\"Crise financière et élévation du coût de la dette des collectivités locales\"],\"abstracts\":[\"Ce document de travail s\\u0027attache aux conséquences de la crise des subprimes sur les conditions d\\u0027accès aux marchés des fonds prêtables pour les collectivités territoriales à la fois américaines et européennes. Nous nous attachons notamment aux conséquences de la crise sur les politiques de gestion active des la dette, notamment sur les produits structurés à l\\u0027origine des débats autours des emprunts dits toxiques\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Frédéric Marty\"],\"publicationdate\":\"2008-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00784946/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00784946\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00784946\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00784946\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00784946\"},\"trust\":0.5064739}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:halshs-00784946"},"target_publication_author_list":{"type":"LIST_STRING","value":["Frédéric Marty"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00784946"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"trust":{"type":"FLOAT","value":0.5064739},"target_publication_title":{"type":"STRING","value":"Crise financière et élévation du coût de la dette des collectivités locales"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:halshs-00784946\",\"titles\":[\"Crise financière et élévation du coût de la dette des collectivités locales\"],\"abstracts\":[\"Ce document de travail s\\u0027attache aux conséquences de la crise des subprimes sur les conditions d\\u0027accès aux marchés des fonds prêtables pour les collectivités territoriales à la fois américaines et européennes. Nous nous attachons notamment aux conséquences de la crise sur les politiques de gestion active des la dette, notamment sur les produits structurés à l\\u0027origine des débats autours des emprunts dits toxiques\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Frédéric Marty\"],\"publicationdate\":\"2008-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00784946/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00784946\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00784946\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00784946\",\"id\":\"oai:HAL:halshs-00784946v1\"},\"trust\":0.27868134}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:halshs-00784946"},"target_publication_author_list":{"type":"LIST_STRING","value":["Frédéric Marty"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00784946v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"trust":{"type":"FLOAT","value":0.27868134},"target_publication_title":{"type":"STRING","value":"Crise financière et élévation du coût de la dette des collectivités locales"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00784946v1\",\"titles\":[\"Crise financière et élévation du coût de la dette des collectivités locales\"],\"abstracts\":[\"Document de travail GIREF - ESG - Université du Québec à Montréal n°3-2008\",\"Ce document de travail s\\u0027attache aux conséquences de la crise des subprimes sur les conditions d\\u0027accès aux marchés des fonds prêtables pour les collectivités territoriales à la fois américaines et européennes. Nous nous attachons notamment aux conséquences de la crise sur les politiques de gestion active des la dette, notamment sur les produits structurés à l\\u0027origine des débats autours des emprunts dits toxiques\"],\"language\":\"fra/fre\",\"subjects\":[\"crise financière\",\"subprimes\",\"collectivités locales\",\"gestion active de la dette\",\"produits structurés\",\"emprunts toxiques\",\"JEL : [H]\",\"[SHS.ECO] Humanities and Social Sciences/Economies and finances\"],\"creators\":[\"Marty, Frédéric\"],\"publicationdate\":\"2008-09-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"UMR 7321GREDEG ; Groupe de Recherche en Droit, Economie et Gestion (GREDEG) ; CNRS - Université Nice Sophia Antipolis (UNS) - CNRS - Université Nice Sophia Antipolis (UNS)\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00784946\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00784946\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00784946\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00784946\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00784946\"},\"trust\":0.83455986}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00784946v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Marty, Frédéric"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00784946"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["crise financière","subprimes","collectivités locales","gestion active de la dette","produits structurés","emprunts toxiques","JEL : [H]","[SHS.ECO] Humanities and Social Sciences/Economies and finances"]},"trust":{"type":"FLOAT","value":0.83455986},"target_publication_title":{"type":"STRING","value":"Crise financière et élévation du coût de la dette des collectivités locales"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00784946v1\",\"titles\":[\"Crise financière et élévation du coût de la dette des collectivités locales\"],\"abstracts\":[\"Document de travail GIREF - ESG - Université du Québec à Montréal n°3-2008\",\"Ce document de travail s\\u0027attache aux conséquences de la crise des subprimes sur les conditions d\\u0027accès aux marchés des fonds prêtables pour les collectivités territoriales à la fois américaines et européennes. Nous nous attachons notamment aux conséquences de la crise sur les politiques de gestion active des la dette, notamment sur les produits structurés à l\\u0027origine des débats autours des emprunts dits toxiques\"],\"language\":\"fra/fre\",\"subjects\":[\"crise financière\",\"subprimes\",\"collectivités locales\",\"gestion active de la dette\",\"produits structurés\",\"emprunts toxiques\",\"JEL : [H]\",\"[SHS.ECO] Humanities and Social Sciences/Economies and finances\"],\"creators\":[\"Marty, Frédéric\"],\"publicationdate\":\"2008-09-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"UMR 7321GREDEG ; Groupe de Recherche en Droit, Economie et Gestion (GREDEG) ; CNRS - Université Nice Sophia Antipolis (UNS) - CNRS - Université Nice Sophia Antipolis (UNS)\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00784946\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00784946/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00784946/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00784946/document\",\"id\":\"oai:RePEc:hal:journl:halshs-00784946\"},\"trust\":0.652317}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00784946v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Marty, Frédéric"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:journl:halshs-00784946"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["crise financière","subprimes","collectivités locales","gestion active de la dette","produits structurés","emprunts toxiques","JEL : [H]","[SHS.ECO] Humanities and Social Sciences/Economies and finances"]},"trust":{"type":"FLOAT","value":0.652317},"target_publication_title":{"type":"STRING","value":"Crise financière et élévation du coût de la dette des collectivités locales"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00402515\",\"titles\":[\"3D Analytical Calculation of Forces between Linear Halbach-Type Permanent Magnet Arrays\"],\"abstracts\":[\"Usely, in analytical calculation of magnetic and mechanical quantities of Halbach systems, the authors use the Fourier series approximation because the exact calculations are more difficult. In this work the interaction forces between linear Halbach arrays are analytically calculated thanks to our recent development 3D exact calculation of forces between two cuboïdal magnets with parallel and perpendicular magnetization. We essentially describe the way to separately calculate the forces between two magnets, between one magnet and a Halbach array and between two Halbach systems\"],\"language\":\"eng\",\"subjects\":[\"[SPI:NRJ] Engineering Sciences/Electric power\",\"[SPI:NRJ] Sciences de l\\u0027ingénieur/Energie électrique\"],\"creators\":[\"Allag, Hicham\",\"Yonnet, Jean-Paul\",\"Latreche, Mohamed E. H.\"],\"publicationdate\":\"2009-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00402515\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00402515\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00402515\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00402515\",\"id\":\"oai:HAL:hal-00402515v1\"},\"trust\":0.17822975}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00402515"},"target_publication_author_list":{"type":"LIST_STRING","value":["Allag, Hicham","Yonnet, Jean-Paul","Latreche, Mohamed E. H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00402515v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SPI:NRJ] Engineering Sciences/Electric power","[SPI:NRJ] Sciences de l\u0027ingénieur/Energie électrique"]},"trust":{"type":"FLOAT","value":0.17822975},"target_publication_title":{"type":"STRING","value":"3D Analytical Calculation of Forces between Linear Halbach-Type Permanent Magnet Arrays"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2009-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00402515v1\",\"titles\":[\"3D Analytical Calculation of Forces between Linear Halbach-Type Permanent Magnet Arrays\"],\"abstracts\":[\"International audience\",\"Usely, in analytical calculation of magnetic and mechanical quantities of Halbach systems, the authors use the Fourier series approximation because the exact calculations are more difficult. In this work the interaction forces between linear Halbach arrays are analytically calculated thanks to our recent development 3D exact calculation of forces between two cuboïdal magnets with parallel and perpendicular magnetization. We essentially describe the way to separately calculate the forces between two magnets, between one magnet and a Halbach array and between two Halbach systems\"],\"language\":\"eng\",\"subjects\":[\"[SPI.NRJ] Engineering Sciences/Electric power\"],\"creators\":[\"Allag, Hicham\",\"Yonnet, Jean-Paul\",\"Latreche, Mohamed E. H.\"],\"publicationdate\":\"2009-07-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire de Génie Electrique de Grenoble (G2ELab) ; Université Joseph Fourier - Grenoble I - Institut Polytechnique de Grenoble - Grenoble Institute of Technology - CNRS\",\"Université de Constantine. Labo LEC ; Université de Constantine\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00402515\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00402515\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00402515\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00402515\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00402515\"},\"trust\":0.07629132}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00402515v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Allag, Hicham","Yonnet, Jean-Paul","Latreche, Mohamed E. H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00402515"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SPI.NRJ] Engineering Sciences/Electric power"]},"trust":{"type":"FLOAT","value":0.07629132},"target_publication_title":{"type":"STRING","value":"3D Analytical Calculation of Forces between Linear Halbach-Type Permanent Magnet Arrays"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2009-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"\",\"titles\":[\"Er det sammenheng mellom høy KMI og smerter hos pasienter med ryggprolaps? En tverrsnittstudie fra Nasjonalt Register for Ryggkirurgi f.o.m. 2007 t.o.m. 2010\"],\"abstracts\":[\"Bakgrunn: De siste 30 årene har overvekt og fedme økt jevnt i den norske befolkning. Sykdommer som har økt proporsjonalt med denne utviklingen, er type 2 diabetes, hjerte- og karsykdommer og visse typer kreft samt muskel og skjelettlidelser, også rygglidelser. Både nasjonal og internasjonal forskninger har funnet sammenheng mellom høy KMI (kroppsmasseindeks) og ryggsmerter. Dette fenomenet studeres nærmere i min oppgave. Materiale og metode: Datamaterialet er hentet fra Nasjonalt Register for Ryggkirurgi i Tromsø. Tverrsnittstudien er basert på 3597 personer (fra hele landet) fordelt på 2095 menn (58,2 %) og 1502 kvinner (41,8 %) av til sammen 9252 ryggopererte personer registrert i tidsperioden f.o.m. 2007 t.o.m. 2020. Utvalgskriterium: voksne, eldre enn 17 år, med diagnosen ryggprolaps, nivå L4/L5, 4. mellomvirvelskive, operert for første gang. Konklusjon: KMI predikerte best smerteintensitetsmåling med numerisk skala 0 til 10 for rygg, ikke bein, både blant menn og kvinner sammenlignet med de 2 andre måleinstrumentene; beskrivelse av helsetilstand EQ-5D og selvevaluert helse/VAS100. Det var statistisk signifikant økning i smerteintensitet mellom KMI strata hos kvinner med signifikant lineær trend.\"],\"language\":\"nor\",\"subjects\":[\"Medical disciplines:Health sciences:\",\"Medisinske fag:Helsefag:\",\"Medical disciplines:Health sciences:\",\"Medisinske fag:Helsefag:\",\"HEL-3950\",\"kmi\",\"bmi\",\"fedme\",\"rygg\",\"ryggsmerter\",\"back pain\",\"bmi obesity\"],\"creators\":[\"Horn, Astrid\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"University of Tromsø\",\"embargoenddate\":\"\",\"contributor\":[\"Sideronkov, Oleg\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Norwegian Open Research Archives\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10037/4842\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hdl.handle.net/10037/4842\",\"license\":\"OPEN\",\"hostedby\":\"Munin - Open Research Archive\",\"instancetype\":\"Master thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10037/4842\",\"license\":\"OPEN\",\"hostedby\":\"Munin - Open Research Archive\",\"instancetype\":\"Master thesis\"}]},\"provenance\":{\"repositoryName\":\"Munin - Open Research Archive\",\"url\":\"http://hdl.handle.net/10037/4842\",\"id\":\"oai:www.ub.uit.no:10037/4842\"},\"trust\":0.8344578}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_publication_id":{"type":"STRING","value":""},"target_publication_author_list":{"type":"LIST_STRING","value":["Horn, Astrid"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.ub.uit.no:10037/4842"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::f47d0ad31c4c49061b9e505593e3db98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Medical disciplines:Health sciences:","Medisinske fag:Helsefag:","Medical disciplines:Health sciences:","Medisinske fag:Helsefag:","HEL-3950","kmi","bmi","fedme","rygg","ryggsmerter","back pain","bmi obesity"]},"trust":{"type":"FLOAT","value":0.8344578},"target_publication_title":{"type":"STRING","value":"Er det sammenheng mellom høy KMI og smerter hos pasienter med ryggprolaps? En tverrsnittstudie fra Nasjonalt Register for Ryggkirurgi f.o.m. 2007 t.o.m. 2010"},"provenance_datasource_name":{"type":"STRING","value":"Munin - Open Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.ub.uit.no:10037/4842\",\"titles\":[\"Er det sammenheng mellom høy KMI og smerter hos pasienter med ryggprolaps? En tverrsnittstudie fra Nasjonalt Register for Ryggkirurgi f.o.m. 2007 t.o.m. 2010\"],\"abstracts\":[\"Bakgrunn: \\nDe siste 30 årene har overvekt og fedme økt jevnt i den norske befolkning. Sykdommer som har økt proporsjonalt med denne utviklingen, er type 2 diabetes, hjerte- og karsykdommer og visse typer kreft samt muskel og skjelettlidelser, også rygglidelser. Både nasjonal og internasjonal forskninger har funnet sammenheng mellom høy KMI (kroppsmasseindeks) og ryggsmerter. Dette fenomenet studeres nærmere i min oppgave.\\nMateriale og metode:\\nDatamaterialet er hentet fra Nasjonalt Register for Ryggkirurgi i Tromsø. Tverrsnittstudien er basert på 3597 personer (fra hele landet) fordelt på 2095 menn (58,2 %) og 1502 kvinner (41,8 %) av til sammen 9252 ryggopererte personer registrert i tidsperioden f.o.m. 2007 t.o.m. 2020. Utvalgskriterium: voksne, eldre enn 17 år, med diagnosen ryggprolaps, nivå L4/L5, 4. mellomvirvelskive, operert for første gang.\\nKonklusjon:\\nKMI predikerte best smerteintensitetsmåling med numerisk skala 0 til 10 for rygg, ikke bein, både blant menn og kvinner sammenlignet med de 2 andre måleinstrumentene; beskrivelse av helsetilstand EQ-5D og selvevaluert helse/VAS100. Det var statistisk signifikant økning i smerteintensitet mellom KMI strata hos kvinner med signifikant lineær trend.\"],\"language\":\"und\",\"subjects\":[\"HEL-3950\",\"kmi\",\"bmi\",\"fedme\",\"rygg\",\"ryggsmerter\",\"back pain\",\"bmi obesity\",\"VDP::Medisinske Fag: 700::Helsefag: 800\",\"VDP::Medical disciplines: 700::Health sciences: 800\"],\"creators\":[\"Horn, Astrid\"],\"publicationdate\":\"2012-12-21\",\"publisher\":\"University of Tromsø\",\"embargoenddate\":\"\",\"contributor\":[\"Sideronkov, Oleg\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munin - Open Research Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10037/4842\",\"license\":\"OPEN\",\"hostedby\":\"Munin - Open Research Archive\",\"instancetype\":\"Master thesis\"},{\"url\":\"http://hdl.handle.net/10037/4842\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10037/4842\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Norwegian Open Research Archives\",\"url\":\"http://hdl.handle.net/10037/4842\",\"id\":\"\"},\"trust\":0.7137702}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munin - Open Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:www.ub.uit.no:10037/4842"},"target_publication_author_list":{"type":"LIST_STRING","value":["Horn, Astrid"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["HEL-3950","kmi","bmi","fedme","rygg","ryggsmerter","back pain","bmi obesity","VDP::Medisinske Fag: 700::Helsefag: 800","VDP::Medical disciplines: 700::Health sciences: 800"]},"trust":{"type":"FLOAT","value":0.7137702},"target_publication_title":{"type":"STRING","value":"Er det sammenheng mellom høy KMI og smerter hos pasienter med ryggprolaps? En tverrsnittstudie fra Nasjonalt Register for Ryggkirurgi f.o.m. 2007 t.o.m. 2010"},"provenance_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_dateofacceptance":{"type":"DATE","value":"2012-12-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::f47d0ad31c4c49061b9e505593e3db98"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/87669\",\"titles\":[\"Möglichkeiten und Grenzen von makroökonomischen Modellen zur (exante) Evaluierung wirtschaftspolitischer Maßnahmen\"],\"abstracts\":[\"In dieser Studie werden die makroökonomischen Auswirkungen verschiedener Fiskalkonsolidierungspläne von Ländern der Eurozone analysiert. Dafür wird ein theoretisch fundiertes makroökonomisches Modell genutzt. Die Eignung des Modells und die Wichtigkeit verschiedener Features wie beispielsweise der Modellierung der Erwartungsbildung, eines detailliert modellierten Staatssektors und kreditbeschränkter Haushalte werden diskutiert. Mit dem Modell können die langfristigen Auswirkungen auf Wirtschaftswachstum, Inflation und weitere Variablen sowie der dynamische Anpassungsprozess in der kurzen Frist analysiert werden. Die Hauptergebnisse zeigen, dass Konsolidierungspläne, die einen Schwerpunkt auf Steuererhöhungen setzen, gesamtwirtschaftlich ungünstigere Auswirkungen haben, als Konsolidierungen über Kürzungen auf der Ausgabenseite. Insbesondere Erhöhungen der Einkommen- oder Kapitalertragsteuer haben starke negative Auswirkungen zur Folge und reduzieren das Produktionspotenzial. Eine Erhöhung der Konsumsteuer verhindert eine starke Verringerung der wirtschaftlichen Aktivität in der kurzen Frist, hat aber kurz- und langfristig negative Auswirkungen auf den Konsum. Eine Senkung des Staatskonsums führt zu einem Sinken des BIPs in der kurzen Frist, der Konsum steigt hingegen. Gekoppelt mit einer langfristigen Steuersenkung können durch eine Reduzierung des Staatskonsums die gesamtwirtschaftliche Leistung und der Konsum in der langen Frist substantiell erhöht werden. Eine Senkung von Transferzahlungen wirkt selbst in der kurzen Frist expansiv. Gekoppelt mit einer langfristigen Steuersenkung kann durch Transferreduzierungen das BIP in der langen Frist stärker erhöht werden als durch eine Senkung des Staatskonsums. Wird über Transferkürzungen konsolidiert, die gezielt nur Haushalte betreffen, die keinen Kreditbeschränkungen unterliegen, so kann eine Verringerung des Konsums aller modellierten Haushalte und des BIPs in der kurzen Frist vermieden werden und gleichzeitig das Produktionspotenzial in der langen Frist gesteigert werden.\"],\"language\":\"deu/ger\",\"subjects\":[\"ddc:330\"],\"creators\":[\"Wolters, Maik\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"Statistisches Bundesamt Wiesbaden\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/87669\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://econstor.eu/bitstream/10419/87669/1/771536380.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/87669/1/771536380.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econstor.eu/bitstream/10419/87669/1/771536380.pdf\",\"id\":\"oai:RePEc:zbw:svrwwp:052013\"},\"trust\":0.47470587}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/87669"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wolters, Maik"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:zbw:svrwwp:052013"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330"]},"trust":{"type":"FLOAT","value":0.47470587},"target_publication_title":{"type":"STRING","value":"Möglichkeiten und Grenzen von makroökonomischen Modellen zur (exante) Evaluierung wirtschaftspolitischer Maßnahmen"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:zbw:svrwwp:052013\",\"titles\":[\"Möglichkeiten und Grenzen von makroökonomischen Modellen zur (exante) Evaluierung wirtschaftspolitischer Maßnahmen\"],\"abstracts\":[\"In dieser Studie werden die makroökonomischen Auswirkungen verschiedener Fiskalkonsolidierungspläne von Ländern der Eurozone analysiert. Dafür wird ein theoretisch fundiertes makroökonomisches Modell genutzt. Die Eignung des Modells und die Wichtigkeit verschiedener Features wie beispielsweise der Modellierung der Erwartungsbildung, eines detailliert modellierten Staatssektors und kreditbeschränkter Haushalte werden diskutiert. Mit dem Modell können die langfristigen Auswirkungen auf Wirtschaftswachstum, Inflation und weitere Variablen sowie der dynamische Anpassungsprozess in der kurzen Frist analysiert werden. Die Hauptergebnisse zeigen, dass Konsolidierungspläne, die einen Schwerpunkt auf Steuererhöhungen setzen, gesamtwirtschaftlich ungünstigere Auswirkungen haben, als Konsolidierungen über Kürzungen auf der Ausgabenseite. Insbesondere Erhöhungen der Einkommen- oder Kapitalertragsteuer haben starke negative Auswirkungen zur Folge und reduzieren das Produktionspotenzial. Eine Erhöhung der Konsumsteuer verhindert eine starke Verringerung der wirtschaftlichen Aktivität in der kurzen Frist, hat aber kurz- und langfristig negative Auswirkungen auf den Konsum. Eine Senkung des Staatskonsums führt zu einem Sinken des BIPs in der kurzen Frist, der Konsum steigt hingegen. Gekoppelt mit einer langfristigen Steuersenkung können durch eine Reduzierung des Staatskonsums die gesamtwirtschaftliche Leistung und der Konsum in der langen Frist substantiell erhöht werden. Eine Senkung von Transferzahlungen wirkt selbst in der kurzen Frist expansiv. Gekoppelt mit einer langfristigen Steuersenkung kann durch Transferreduzierungen das BIP in der langen Frist stärker erhöht werden als durch eine Senkung des Staatskonsums. Wird über Transferkürzungen konsolidiert, die gezielt nur Haushalte betreffen, die keinen Kreditbeschränkungen unterliegen, so kann eine Verringerung des Konsums aller modellierten Haushalte und des BIPs in der kurzen Frist vermieden werden und gleichzeitig das Produktionspotenzial in der langen Frist gesteigert werden.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Wolters, Maik\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/87669/1/771536380.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/87669\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/87669\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/87669\",\"id\":\"oai:econstor.eu:10419/87669\"},\"trust\":0.19318503}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:zbw:svrwwp:052013"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wolters, Maik"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/87669"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"trust":{"type":"FLOAT","value":0.19318503},"target_publication_title":{"type":"STRING","value":"Möglichkeiten und Grenzen von makroökonomischen Modellen zur (exante) Evaluierung wirtschaftspolitischer Maßnahmen"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00893768v1\",\"titles\":[\"Etude chromosomique d\\u0027un hybride chèvre x mouton fertile\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics\"],\"creators\":[\"Cribiu, E. P.\",\"Matejka, Michèle\",\"Denis, B.\",\"Malher, X.\"],\"publicationdate\":\"1988-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00893768\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00893768\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00893768\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00893768\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00893768\"},\"trust\":0.08847743}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00893768v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cribiu, E. P.","Matejka, Michèle","Denis, B.","Malher, X."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00893768"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics"]},"trust":{"type":"FLOAT","value":0.08847743},"target_publication_title":{"type":"STRING","value":"Etude chromosomique d\u0027un hybride chèvre x mouton fertile"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1988-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00893768\",\"titles\":[\"Etude chromosomique d\\u0027un hybride chèvre x mouton fertile\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics\",\"[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale\"],\"creators\":[\"Cribiu, E. P.\",\"Matejka, Michèle\",\"Denis, B.\",\"Malher, X.\"],\"publicationdate\":\"1988-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00893768\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00893768\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00893768\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00893768\",\"id\":\"oai:HAL:hal-00893768v1\"},\"trust\":0.506711}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00893768"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cribiu, E. P.","Matejka, Michèle","Denis, B.","Malher, X."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00893768v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics","[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale"]},"trust":{"type":"FLOAT","value":0.506711},"target_publication_title":{"type":"STRING","value":"Etude chromosomique d\u0027un hybride chèvre x mouton fertile"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1988-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00893768\",\"titles\":[\"Etude chromosomique d\\u0027un hybride chèvre x mouton fertile\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics\",\"[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale\"],\"creators\":[\"Cribiu, E. P.\",\"Matejka, Michèle\",\"Denis, B.\",\"Malher, X.\"],\"publicationdate\":\"1988-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00893768\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"International audience\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00893768\",\"id\":\"oai:HAL:hal-00893768v1\"},\"trust\":0.74943715}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00893768"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cribiu, E. P.","Matejka, Michèle","Denis, B.","Malher, X."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00893768v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics","[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale"]},"trust":{"type":"FLOAT","value":0.74943715},"target_publication_title":{"type":"STRING","value":"Etude chromosomique d\u0027un hybride chèvre x mouton fertile"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1988-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:tel.archives-ouvertes.fr:tel-00714663\",\"titles\":[\"Femmes et politique : le cas des femmes élues en Sarthe de 1945 à 2010\"],\"abstracts\":[\"Tout en s\\u0027inscrivant dans le cadre général de l\\u0027histoire des femmes et de l\\u0027histoire électoralecontemporaine, la thèse se veut d\\u0027abord une thèse d\\u0027histoire locale quantitative et fait appel égalementà quelques données relevant d\\u0027autres disciplines (science politique, droit public, sociologie). Tout endonnant lieu à une comparaison avec l\\u0027évolution constatée au plan national, la thèse s\\u0027intéresse àl\\u0027histoire d\\u0027une population donnée (toutes les catégories de femmes élues), dans un espacegéographique donné (le département de la Sarthe), sur une période donnée (1945-2010).L\\u0027augmentation du nombre de femmes élues et la diversification des fonctions auxquelles elles ontaccédé sont appréhendées au travers d\\u0027une interrogation qui exprime la problématique de la thèse, àsavoir : quelle est la portée de cette progression et quelle signification peut-on y donner ? En réponsela thèse s\\u0027efforce de montrer que cette progression quantitative des femmes élues s\\u0027est accompagnéed\\u0027un certain nombre de pratiques réglementaires ou comportementales qui en limitent la portée et ennuancent la signification. Le plan chronologique adopté permet de mettre en relief les trois phases quiont marqué l\\u0027histoire des femmes élues en Sarthe de 1945 à 2010 en reliant chacune à la problématiquegénérale. Cette articulation générale de la thèse débouche ainsi sur un plan en 3 parties intituléesrespectivement : Les années 1945/1970 : une présence tolérée, un statut inchangé ; Les années1970/1990 : une présence acceptée, une pression contenue ; Les années 1990 / 2010 : une présencereconnue, une inégalité maintenue.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:HIST] Humanities and Social Sciences/History\",\"[SHS:HIST] Sciences de l\\u0027Homme et Société/Histoire\",\"Politique\",\"Elections\",\"Sarthe\",\"Femmes\",\"Parité\"],\"creators\":[\"Garreau, Bernard\"],\"publicationdate\":\"2012-05-31\",\"publisher\":\"Université du Maine\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00714663\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"http://tel.archives-ouvertes.fr/tel-00714657\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00714657\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://tel.archives-ouvertes.fr/tel-00714657\",\"id\":\"oai:tel.archives-ouvertes.fr:tel-00714657\"},\"trust\":0.74477845}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:tel.archives-ouvertes.fr:tel-00714663"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garreau, Bernard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:tel.archives-ouvertes.fr:tel-00714657"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:HIST] Humanities and Social Sciences/History","[SHS:HIST] Sciences de l\u0027Homme et Société/Histoire","Politique","Elections","Sarthe","Femmes","Parité"]},"trust":{"type":"FLOAT","value":0.74477845},"target_publication_title":{"type":"STRING","value":"Femmes et politique : le cas des femmes élues en Sarthe de 1945 à 2010"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-05-31"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:tel.archives-ouvertes.fr:tel-00714663\",\"titles\":[\"Femmes et politique : le cas des femmes élues en Sarthe de 1945 à 2010\"],\"abstracts\":[\"Tout en s\\u0027inscrivant dans le cadre général de l\\u0027histoire des femmes et de l\\u0027histoire électoralecontemporaine, la thèse se veut d\\u0027abord une thèse d\\u0027histoire locale quantitative et fait appel égalementà quelques données relevant d\\u0027autres disciplines (science politique, droit public, sociologie). Tout endonnant lieu à une comparaison avec l\\u0027évolution constatée au plan national, la thèse s\\u0027intéresse àl\\u0027histoire d\\u0027une population donnée (toutes les catégories de femmes élues), dans un espacegéographique donné (le département de la Sarthe), sur une période donnée (1945-2010).L\\u0027augmentation du nombre de femmes élues et la diversification des fonctions auxquelles elles ontaccédé sont appréhendées au travers d\\u0027une interrogation qui exprime la problématique de la thèse, àsavoir : quelle est la portée de cette progression et quelle signification peut-on y donner ? En réponsela thèse s\\u0027efforce de montrer que cette progression quantitative des femmes élues s\\u0027est accompagnéed\\u0027un certain nombre de pratiques réglementaires ou comportementales qui en limitent la portée et ennuancent la signification. Le plan chronologique adopté permet de mettre en relief les trois phases quiont marqué l\\u0027histoire des femmes élues en Sarthe de 1945 à 2010 en reliant chacune à la problématiquegénérale. Cette articulation générale de la thèse débouche ainsi sur un plan en 3 parties intituléesrespectivement : Les années 1945/1970 : une présence tolérée, un statut inchangé ; Les années1970/1990 : une présence acceptée, une pression contenue ; Les années 1990 / 2010 : une présencereconnue, une inégalité maintenue.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:HIST] Humanities and Social Sciences/History\",\"[SHS:HIST] Sciences de l\\u0027Homme et Société/Histoire\",\"Politique\",\"Elections\",\"Sarthe\",\"Femmes\",\"Parité\"],\"creators\":[\"Garreau, Bernard\"],\"publicationdate\":\"2012-05-31\",\"publisher\":\"Université du Maine\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00714663\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"http://tel.archives-ouvertes.fr/tel-00710693\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00710693\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://tel.archives-ouvertes.fr/tel-00710693\",\"id\":\"oai:tel.archives-ouvertes.fr:tel-00710693\"},\"trust\":0.04630834}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:tel.archives-ouvertes.fr:tel-00714663"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garreau, Bernard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:tel.archives-ouvertes.fr:tel-00710693"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:HIST] Humanities and Social Sciences/History","[SHS:HIST] Sciences de l\u0027Homme et Société/Histoire","Politique","Elections","Sarthe","Femmes","Parité"]},"trust":{"type":"FLOAT","value":0.04630834},"target_publication_title":{"type":"STRING","value":"Femmes et politique : le cas des femmes élues en Sarthe de 1945 à 2010"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-05-31"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:tel.archives-ouvertes.fr:tel-00714657\",\"titles\":[\"Femmes et politique : le cas des femmes élues en Sarthe de 1945 à 2010\"],\"abstracts\":[\"Tout en s\\u0027inscrivant dans le cadre général de l\\u0027histoire des femmes et de l\\u0027histoire électoralecontemporaine, la thèse se veut d\\u0027abord une thèse d\\u0027histoire locale quantitative et fait appel égalementà quelques données relevant d\\u0027autres disciplines (science politique, droit public, sociologie). Tout endonnant lieu à une comparaison avec l\\u0027évolution constatée au plan national, la thèse s\\u0027intéresse àl\\u0027histoire d\\u0027une population donnée (toutes les catégories de femmes élues), dans un espacegéographique donné (le département de la Sarthe), sur une période donnée (1945-2010).L\\u0027augmentation du nombre de femmes élues et la diversification des fonctions auxquelles elles ontaccédé sont appréhendées au travers d\\u0027une interrogation qui exprime la problématique de la thèse, àsavoir : quelle est la portée de cette progression et quelle signification peut-on y donner ? En réponsela thèse s\\u0027efforce de montrer que cette progression quantitative des femmes élues s\\u0027est accompagnéed\\u0027un certain nombre de pratiques réglementaires ou comportementales qui en limitent la portée et ennuancent la signification. Le plan chronologique adopté permet de mettre en relief les trois phases quiont marqué l\\u0027histoire des femmes élues en Sarthe de 1945 à 2010 en reliant chacune à la problématiquegénérale. Cette articulation générale de la thèse débouche ainsi sur un plan en 3 parties intituléesrespectivement : Les années 1945/1970 : une présence tolérée, un statut inchangé ; Les années1970/1990 : une présence acceptée, une pression contenue ; Les années 1990 / 2010 : une présencereconnue, une inégalité maintenue.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:HIST] Humanities and Social Sciences/History\",\"[SHS:HIST] Sciences de l\\u0027Homme et Société/Histoire\",\"Politique\",\"Elections\",\"Sarthe\",\"Femmes\",\"Parité\"],\"creators\":[\"Garreau, Bernard\"],\"publicationdate\":\"2012-05-31\",\"publisher\":\"Université du Maine\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00714657\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"http://tel.archives-ouvertes.fr/tel-00714663\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00714663\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://tel.archives-ouvertes.fr/tel-00714663\",\"id\":\"oai:tel.archives-ouvertes.fr:tel-00714663\"},\"trust\":0.968268}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:tel.archives-ouvertes.fr:tel-00714657"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garreau, Bernard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:tel.archives-ouvertes.fr:tel-00714663"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:HIST] Humanities and Social Sciences/History","[SHS:HIST] Sciences de l\u0027Homme et Société/Histoire","Politique","Elections","Sarthe","Femmes","Parité"]},"trust":{"type":"FLOAT","value":0.968268},"target_publication_title":{"type":"STRING","value":"Femmes et politique : le cas des femmes élues en Sarthe de 1945 à 2010"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-05-31"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:tel.archives-ouvertes.fr:tel-00714657\",\"titles\":[\"Femmes et politique : le cas des femmes élues en Sarthe de 1945 à 2010\"],\"abstracts\":[\"Tout en s\\u0027inscrivant dans le cadre général de l\\u0027histoire des femmes et de l\\u0027histoire électoralecontemporaine, la thèse se veut d\\u0027abord une thèse d\\u0027histoire locale quantitative et fait appel égalementà quelques données relevant d\\u0027autres disciplines (science politique, droit public, sociologie). Tout endonnant lieu à une comparaison avec l\\u0027évolution constatée au plan national, la thèse s\\u0027intéresse àl\\u0027histoire d\\u0027une population donnée (toutes les catégories de femmes élues), dans un espacegéographique donné (le département de la Sarthe), sur une période donnée (1945-2010).L\\u0027augmentation du nombre de femmes élues et la diversification des fonctions auxquelles elles ontaccédé sont appréhendées au travers d\\u0027une interrogation qui exprime la problématique de la thèse, àsavoir : quelle est la portée de cette progression et quelle signification peut-on y donner ? En réponsela thèse s\\u0027efforce de montrer que cette progression quantitative des femmes élues s\\u0027est accompagnéed\\u0027un certain nombre de pratiques réglementaires ou comportementales qui en limitent la portée et ennuancent la signification. Le plan chronologique adopté permet de mettre en relief les trois phases quiont marqué l\\u0027histoire des femmes élues en Sarthe de 1945 à 2010 en reliant chacune à la problématiquegénérale. Cette articulation générale de la thèse débouche ainsi sur un plan en 3 parties intituléesrespectivement : Les années 1945/1970 : une présence tolérée, un statut inchangé ; Les années1970/1990 : une présence acceptée, une pression contenue ; Les années 1990 / 2010 : une présencereconnue, une inégalité maintenue.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:HIST] Humanities and Social Sciences/History\",\"[SHS:HIST] Sciences de l\\u0027Homme et Société/Histoire\",\"Politique\",\"Elections\",\"Sarthe\",\"Femmes\",\"Parité\"],\"creators\":[\"Garreau, Bernard\"],\"publicationdate\":\"2012-05-31\",\"publisher\":\"Université du Maine\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00714657\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"http://tel.archives-ouvertes.fr/tel-00710693\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00710693\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://tel.archives-ouvertes.fr/tel-00710693\",\"id\":\"oai:tel.archives-ouvertes.fr:tel-00710693\"},\"trust\":0.09608221}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:tel.archives-ouvertes.fr:tel-00714657"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garreau, Bernard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:tel.archives-ouvertes.fr:tel-00710693"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:HIST] Humanities and Social Sciences/History","[SHS:HIST] Sciences de l\u0027Homme et Société/Histoire","Politique","Elections","Sarthe","Femmes","Parité"]},"trust":{"type":"FLOAT","value":0.09608221},"target_publication_title":{"type":"STRING","value":"Femmes et politique : le cas des femmes élues en Sarthe de 1945 à 2010"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-05-31"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:tel.archives-ouvertes.fr:tel-00710693\",\"titles\":[\"Femmes et politique : le cas des femmes élues en Sarthe de 1945 à 2010\"],\"abstracts\":[\"Tout en s\\u0027inscrivant dans le cadre général de l\\u0027histoire des femmes et de l\\u0027histoire électoralecontemporaine, la thèse se veut d\\u0027abord une thèse d\\u0027histoire locale quantitative et fait appel égalementà quelques données relevant d\\u0027autres disciplines (science politique, droit public, sociologie). Tout endonnant lieu à une comparaison avec l\\u0027évolution constatée au plan national, la thèse s\\u0027intéresse àl\\u0027histoire d\\u0027une population donnée (toutes les catégories de femmes élues), dans un espacegéographique donné (le département de la Sarthe), sur une période donnée (1945-2010).L\\u0027augmentation du nombre de femmes élues et la diversification des fonctions auxquelles elles ontaccédé sont appréhendées au travers d\\u0027une interrogation qui exprime la problématique de la thèse, àsavoir : quelle est la portée de cette progression et quelle signification peut-on y donner ? En réponsela thèse s\\u0027efforce de montrer que cette progression quantitative des femmes élues s\\u0027est accompagnéed\\u0027un certain nombre de pratiques réglementaires ou comportementales qui en limitent la portée et ennuancent la signification. Le plan chronologique adopté permet de mettre en relief les trois phases quiont marqué l\\u0027histoire des femmes élues en Sarthe de 1945 à 2010 en reliant chacune à la problématiquegénérale. Cette articulation générale de la thèse débouche ainsi sur un plan en 3 parties intituléesrespectivement : Les années 1945/1970 : une présence tolérée, un statut inchangé ; Les années1970/1990 : une présence acceptée, une pression contenue ; Les années 1990 / 2010 : une présencereconnue, une inégalité maintenue.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:HIST] Humanities and Social Sciences/History\",\"[SHS:HIST] Sciences de l\\u0027Homme et Société/Histoire\",\"Politique\",\"Elections\",\"Sarthe\",\"Femmes\",\"Parité\"],\"creators\":[\"Garreau, Bernard\"],\"publicationdate\":\"2012-05-31\",\"publisher\":\"Université du Maine\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00710693\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"http://tel.archives-ouvertes.fr/tel-00714663\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00714663\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://tel.archives-ouvertes.fr/tel-00714663\",\"id\":\"oai:tel.archives-ouvertes.fr:tel-00714663\"},\"trust\":0.2973894}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:tel.archives-ouvertes.fr:tel-00710693"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garreau, Bernard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:tel.archives-ouvertes.fr:tel-00714663"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:HIST] Humanities and Social Sciences/History","[SHS:HIST] Sciences de l\u0027Homme et Société/Histoire","Politique","Elections","Sarthe","Femmes","Parité"]},"trust":{"type":"FLOAT","value":0.2973894},"target_publication_title":{"type":"STRING","value":"Femmes et politique : le cas des femmes élues en Sarthe de 1945 à 2010"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-05-31"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:tel.archives-ouvertes.fr:tel-00710693\",\"titles\":[\"Femmes et politique : le cas des femmes élues en Sarthe de 1945 à 2010\"],\"abstracts\":[\"Tout en s\\u0027inscrivant dans le cadre général de l\\u0027histoire des femmes et de l\\u0027histoire électoralecontemporaine, la thèse se veut d\\u0027abord une thèse d\\u0027histoire locale quantitative et fait appel égalementà quelques données relevant d\\u0027autres disciplines (science politique, droit public, sociologie). Tout endonnant lieu à une comparaison avec l\\u0027évolution constatée au plan national, la thèse s\\u0027intéresse àl\\u0027histoire d\\u0027une population donnée (toutes les catégories de femmes élues), dans un espacegéographique donné (le département de la Sarthe), sur une période donnée (1945-2010).L\\u0027augmentation du nombre de femmes élues et la diversification des fonctions auxquelles elles ontaccédé sont appréhendées au travers d\\u0027une interrogation qui exprime la problématique de la thèse, àsavoir : quelle est la portée de cette progression et quelle signification peut-on y donner ? En réponsela thèse s\\u0027efforce de montrer que cette progression quantitative des femmes élues s\\u0027est accompagnéed\\u0027un certain nombre de pratiques réglementaires ou comportementales qui en limitent la portée et ennuancent la signification. Le plan chronologique adopté permet de mettre en relief les trois phases quiont marqué l\\u0027histoire des femmes élues en Sarthe de 1945 à 2010 en reliant chacune à la problématiquegénérale. Cette articulation générale de la thèse débouche ainsi sur un plan en 3 parties intituléesrespectivement : Les années 1945/1970 : une présence tolérée, un statut inchangé ; Les années1970/1990 : une présence acceptée, une pression contenue ; Les années 1990 / 2010 : une présencereconnue, une inégalité maintenue.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:HIST] Humanities and Social Sciences/History\",\"[SHS:HIST] Sciences de l\\u0027Homme et Société/Histoire\",\"Politique\",\"Elections\",\"Sarthe\",\"Femmes\",\"Parité\"],\"creators\":[\"Garreau, Bernard\"],\"publicationdate\":\"2012-05-31\",\"publisher\":\"Université du Maine\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00710693\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"http://tel.archives-ouvertes.fr/tel-00714657\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00714657\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://tel.archives-ouvertes.fr/tel-00714657\",\"id\":\"oai:tel.archives-ouvertes.fr:tel-00714657\"},\"trust\":0.94835055}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:tel.archives-ouvertes.fr:tel-00710693"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garreau, Bernard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:tel.archives-ouvertes.fr:tel-00714657"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:HIST] Humanities and Social Sciences/History","[SHS:HIST] Sciences de l\u0027Homme et Société/Histoire","Politique","Elections","Sarthe","Femmes","Parité"]},"trust":{"type":"FLOAT","value":0.94835055},"target_publication_title":{"type":"STRING","value":"Femmes et politique : le cas des femmes élues en Sarthe de 1945 à 2010"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-05-31"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3544243\",\"titles\":[\"Modular and coordinated expression of immune system regulatory and signaling components in the developing and adult nervous system\"],\"abstracts\":[\"During development, the nervous system (NS) is assembled and sculpted through a concerted series of neurodevelopmental events orchestrated by a complex genetic programme. While neural-specific gene expression plays a critical part in this process, in recent years, a number of immune-related signaling and regulatory components have also been shown to play key physiological roles in the developing and adult NS. While the involvement of individual immune-related signaling components in neural functions may reflect their ubiquitous character, it may also reflect a much wider, as yet undescribed, genetic network of immune–related molecules acting as an intrinsic component of the neural-specific regulatory machinery that ultimately shapes the NS. In order to gain insights into the scale and wider functional organization of immune-related genetic networks in the NS, we examined the large scale pattern of expression of these genes in the brain. Our results show a highly significant correlated expression and transcriptional clustering among immune-related genes in the developing and adult brain, and this correlation was the highest in the brain when compared to muscle, liver, kidney and endothelial cells. We experimentally tested the regulatory clustering of immune system (IS) genes by using microarray expression profiling in cultures of dissociated neurons stimulated with the pro-inflammatory cytokine TNF-alpha, and found a highly significant enrichment of immune system-related genes among the resulting differentially expressed genes. Our findings strongly suggest a coherent recruitment of entire immune-related genetic regulatory modules by the neural-specific genetic programme that shapes the NS.\"],\"language\":\"eng\",\"subjects\":[\"Neuroscience\",\"Original Research\",\"nervous system\",\"gene expression\",\"immune system\",\"microarray\",\"co-expression networks\"],\"creators\":[\"Monzón-Sandoval, Jimena\",\"Castillo-Morales, Atahualpa\",\"Crampton, Sean\",\"Mckelvey, Laura\",\"Nolan, Aoife\",\"O’keeffe, Gerard\",\"Gutierrez, Humberto\"],\"publicationdate\":\"2015-08-01\",\"publisher\":\"Frontiers Media S.A.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Frontiers in Cellular Neuroscience\",\"issn\":\"\",\"eissn\":\"1662-5102\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3389/fncel.2015.00337\",\"type\":\"doi\"},{\"value\":\"PMC4551857\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4551857\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.3389/fncel.2015.00337\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Cellular Neuroscience\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.3389/fncel.2015.00337\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Cellular Neuroscience\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Frontiers\",\"url\":\"http://dx.doi.org/10.3389/fncel.2015.00337\",\"id\":\"10.3389/fncel.2015.00337\"},\"trust\":0.7685327}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3544243"},"target_publication_author_list":{"type":"LIST_STRING","value":["Monzón-Sandoval, Jimena","Castillo-Morales, Atahualpa","Crampton, Sean","Mckelvey, Laura","Nolan, Aoife","O’keeffe, Gerard","Gutierrez, Humberto"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.3389/fncel.2015.00337"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::3db634fc5446f389d0b826ea400a5da6"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Neuroscience","Original Research","nervous system","gene expression","immune system","microarray","co-expression networks"]},"trust":{"type":"FLOAT","value":0.7685327},"target_publication_title":{"type":"STRING","value":"Modular and coordinated expression of immune system regulatory and signaling components in the developing and adult nervous system"},"provenance_datasource_name":{"type":"STRING","value":"Frontiers"},"target_dateofacceptance":{"type":"DATE","value":"2015-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:2ddc02ac-3c82-4fe9-b6ff-a1a3c77e5624\",\"titles\":[\"Studies of oligonucleotide interactions by hybridisation to arrays: the influence of dangling ends on duplex yield.\"],\"abstracts\":[\"Effects of dangling ends on duplex yield have been assessed by hybridisation of oligonucleotides to an array of oligonucleotides synthesised on the surface of a solid support. The array consists of decanucleotides and shorter sequences. One of the decanucleotides in the array was fully complementary to the decanucleotide used as solution target. Others were complementary over seven to nine bases, with overhangs of one to three bases. Duplexes involving different decanucleotides had different overhangs at the 3\\u0027 and 5\\u0027 ends. Some duplexes involving shorter oligonucleotides had the same regions of complementarity as these decanucleotides, but with fewer overhanging bases. This analysis allows simultaneous assessment of the effects of differing bases at both 5\\u0027 and 3\\u0027 ends of the oligonucleotide in duplexes formed under identical reaction conditions. The results indicate that a 5\\u0027 overhang is more stabilising than a 3\\u0027 overhang, which is consistent with previous results obtained with DNA overhangs. However, it is not clear whether this is due to the orientation of the overhang or to the effect of specific bases.\"],\"language\":\"eng\",\"subjects\":[\"Oligodeoxyribonucleotides\",\"Nucleic Acid Heteroduplexes\",\"Nucleic Acid Hybridization\",\"Base Sequence\",\"Molecular Sequence Data\"],\"creators\":[\"Williams, Jc\",\"Case-Green, Sc\",\"Mir, Ku\",\"Southern, Em\"],\"publicationdate\":\"1994-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1093/nar/22.8.1365\",\"type\":\"doi\"},{\"value\":\"PMC307991\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:2ddc02ac-3c82-4fe9-b6ff-a1a3c77e5624\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC307991\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC307991\",\"id\":\"oai:europepmc.org:239157\"},\"trust\":0.56984055}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:2ddc02ac-3c82-4fe9-b6ff-a1a3c77e5624"},"target_publication_author_list":{"type":"LIST_STRING","value":["Williams, Jc","Case-Green, Sc","Mir, Ku","Southern, Em"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:239157"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Oligodeoxyribonucleotides","Nucleic Acid Heteroduplexes","Nucleic Acid Hybridization","Base Sequence","Molecular Sequence Data"]},"trust":{"type":"FLOAT","value":0.56984055},"target_publication_title":{"type":"STRING","value":"Studies of oligonucleotide interactions by hybridisation to arrays: the influence of dangling ends on duplex yield."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"1994-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:239157\",\"titles\":[\"Studies of oligonucleotide interactions by hybridisation to arrays: the influence of dangling ends on duplex yield.\"],\"abstracts\":[\"Effects of dangling ends on duplex yield have been assessed by hybridisation of oligonucleotides to an array of oligonucleotides synthesised on the surface of a solid support. The array consists of decanucleotides and shorter sequences. One of the decanucleotides in the array was fully complementary to the decanucleotide used as solution target. Others were complementary over seven to nine bases, with overhangs of one to three bases. Duplexes involving different decanucleotides had different overhangs at the 3\\u0027 and 5\\u0027 ends. Some duplexes involving shorter oligonucleotides had the same regions of complementarity as these decanucleotides, but with fewer overhanging bases. This analysis allows simultaneous assessment of the effects of differing bases at both 5\\u0027 and 3\\u0027 ends of the oligonucleotide in duplexes formed under identical reaction conditions. The results indicate that a 5\\u0027 overhang is more stabilising than a 3\\u0027 overhang, which is consistent with previous results obtained with DNA overhangs. However, it is not clear whether this is due to the orientation of the overhang or to the effect of specific bases.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Williams, J. C.\",\"Case-Green, S. C.\",\"Mir, K. U.\",\"Southern, E. M.\"],\"publicationdate\":\"1994-04-25\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC307991\",\"type\":\"pmc\"},{\"value\":\"10.1093/nar/22.8.1365\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC307991\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1093/nar/22.8.1365\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:2ddc02ac-3c82-4fe9-b6ff-a1a3c77e5624\",\"id\":\"oai:ora.ox.ac.uk:uuid:2ddc02ac-3c82-4fe9-b6ff-a1a3c77e5624\"},\"trust\":0.64688593}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:239157"},"target_publication_author_list":{"type":"LIST_STRING","value":["Williams, J. C.","Case-Green, S. C.","Mir, K. U.","Southern, E. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:2ddc02ac-3c82-4fe9-b6ff-a1a3c77e5624"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"trust":{"type":"FLOAT","value":0.64688593},"target_publication_title":{"type":"STRING","value":"Studies of oligonucleotide interactions by hybridisation to arrays: the influence of dangling ends on duplex yield."},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"1994-04-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2840249\",\"titles\":[\"International Health Regulations (2005): public health event communications in the Western Pacific Region\"],\"abstracts\":[\"\"],\"language\":\"eng\",\"subjects\":[\"International Health Regulations (2005): preparedness, surveillance and response\"],\"creators\":[\"Fearnley, Emily\",\"Ailan, Li\"],\"publicationdate\":\"2013-09-30\",\"publisher\":\"World Health Organization\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC3854101\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3854101\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://ojs.wpro.who.int/ojs/index.php/wpsar/article/view/213/330\",\"license\":\"OPEN\",\"hostedby\":\"Western Pacific Surveillance and Response\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://ojs.wpro.who.int/ojs/index.php/wpsar/article/view/213/330\",\"license\":\"OPEN\",\"hostedby\":\"Western Pacific Surveillance and Response\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://ojs.wpro.who.int/ojs/index.php/wpsar/article/view/213/330\",\"id\":\"oai:doaj.org/article:73052f17efa74a94b7b23e3234aa83dd\"},\"trust\":0.3723747}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2840249"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fearnley, Emily","Ailan, Li"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:73052f17efa74a94b7b23e3234aa83dd"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["International Health Regulations (2005): preparedness, surveillance and response"]},"trust":{"type":"FLOAT","value":0.3723747},"target_publication_title":{"type":"STRING","value":"International Health Regulations (2005): public health event communications in the Western Pacific Region"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2013-09-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ner:leuven:urn:hdl:123456789/120464\",\"titles\":[\"The value of clean hands: Public policy and international asset allocation.\"],\"abstracts\":[\"Despite of the intuitive idea that corporate governance and transparency are crucial for a country\\u0027s international appeal, foreign portfolio investors appear to care first and foremost about transparency, predictability and honesty in governments. This is, at least, what our analysis of international portfolio holdings imply. Our estimates indicate that (i)a modest improvement of government corruption, economic policy transparency and especially institutional quality can trigger an economically substantial rise in foreign interest for the stocks of that country; and (ii) an amelioration in country-level governance variables creates signifficantly higher effects on foreign equity demand than an improvement in traditional macro economic policy indicators.\"],\"language\":\"und\",\"subjects\":[\"Value; Public policy; Policy; International; Corporate governance; Governance; Country; Portfolio;\"],\"creators\":[\"Sercu, Piet\",\"Vanpee, R.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://lirias.kuleuven.be/bitstream/123456789/120464/1/AFI_0704.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://lirias.kuleuven.be/bitstream/123456789/407578/1/Governance_June2011.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://lirias.kuleuven.be/bitstream/123456789/407578/1/Governance_June2011.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://lirias.kuleuven.be/bitstream/123456789/407578/1/Governance_June2011.pdf\",\"id\":\"oai:RePEc:ner:leuven:urn:hdl:123456789/407578\"},\"trust\":0.76507056}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ner:leuven:urn:hdl:123456789/120464"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sercu, Piet","Vanpee, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ner:leuven:urn:hdl:123456789/407578"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Value; Public policy; Policy; International; Corporate governance; Governance; Country; Portfolio;"]},"trust":{"type":"FLOAT","value":0.76507056},"target_publication_title":{"type":"STRING","value":"The value of clean hands: Public policy and international asset allocation."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ner:leuven:urn:hdl:123456789/407578\",\"titles\":[\"The Value of Clean Hands: Public Policy and International Asset Allocation.\"],\"abstracts\":[\"Despite of the intuitive idea that corporate governance and transparency are crucial for a country\\u0027s international appeal, foreign portfolio investors appear to care first and foremost about transparency, predictability and honesty in governments. This is, at least, what our analysis of international portfolio holdings implies. Our estimates further indicate that (i) a feasible improvement of government corruption, economic policy transparency and especially institutional quality can trigger an economically substantial rise in foreign interest for the stocks of that country; and (ii) an amelioration in country-level governance variables creates significantly higher effects on foreign equity demand than an improvement in traditional macroeconomic policy indicators.\"],\"language\":\"und\",\"subjects\":[\"corporate governance; government effectiveness; institutional quality; international capital flows; international equity allocation;\"],\"creators\":[\"Sercu, Piet\",\"Vanpée, Rosanne\"],\"publicationdate\":\"2011-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://lirias.kuleuven.be/bitstream/123456789/407578/1/Governance_June2011.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://lirias.kuleuven.be/bitstream/123456789/120464/1/AFI_0704.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://lirias.kuleuven.be/bitstream/123456789/120464/1/AFI_0704.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://lirias.kuleuven.be/bitstream/123456789/120464/1/AFI_0704.pdf\",\"id\":\"oai:RePEc:ner:leuven:urn:hdl:123456789/120464\"},\"trust\":0.3259638}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ner:leuven:urn:hdl:123456789/407578"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sercu, Piet","Vanpée, Rosanne"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ner:leuven:urn:hdl:123456789/120464"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["corporate governance; government effectiveness; institutional quality; international capital flows; international equity allocation;"]},"trust":{"type":"FLOAT","value":0.3259638},"target_publication_title":{"type":"STRING","value":"The Value of Clean Hands: Public Policy and International Asset Allocation."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/351784\",\"titles\":[\"Dietary glycaemic index: a review of the physiological mechanisms and observed health impacts\"],\"abstracts\":[\"Carbohydrates (CHOs) are the most important energy source in human diets and are often classified by their molecular size as sugar, oligosaccharides, polysaccharides, and polyols (hydrogenated CHOs). However, the relevance of this structural classification has been questioned and interest in an alternative property of CHOs has grown. The glycaemic index (GI) is a contribution of Jenkins and co-workers in 1981 to classify CHO containing foods according to their impacts on the body¿s postprandial glycaemic response. GI is defined as ¿The incremental area under the 2-hour blood glucose response curve of a test food containing 50 g of glycaemic (available) CHOs expressed as the percentage of the response to the same amount of glycaemic CHOs from a standard food (either white bread or glucose) taken by the same subject¿. Although white bread and glucose both give valid values, glucose may be the preferred control because of its stable composition. When, for any reason, white bread is used as reference, the obtained GI value needs to be divided by 1.4 to get the GI value contrast to glucose.\"],\"language\":\"eng\",\"subjects\":[\"coronary-heart-disease\",\"blood-glucose response\",\"breast-cancer risk\",\"american-diabetes-association\",\"middle-aged women\",\"insulin-resistance\",\"plasma-glucose\",\"mixed meals\",\"weight-loss\",\"cardiovascular-disease\"],\"creators\":[\"Huaidong, D. U.\",\"A, D. L.\",\"Feskens, E. J. M.\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/54232\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/351784\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/351784\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/351784\",\"id\":\"wur:oai:library.wur.nl:wurpubs/351784\"},\"trust\":0.9547635}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/351784"},"target_publication_author_list":{"type":"LIST_STRING","value":["Huaidong, D. U.","A, D. L.","Feskens, E. J. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/351784"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["coronary-heart-disease","blood-glucose response","breast-cancer risk","american-diabetes-association","middle-aged women","insulin-resistance","plasma-glucose","mixed meals","weight-loss","cardiovascular-disease"]},"trust":{"type":"FLOAT","value":0.9547635},"target_publication_title":{"type":"STRING","value":"Dietary glycaemic index: a review of the physiological mechanisms and observed health impacts"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1908318\",\"titles\":[\"Sedentary subjects have higher PAI-1 and lipoproteins levels than highly trained athletes\"],\"abstracts\":[\"Physical exercise protects against the development of cardiovascular disease, partly by lowering plasmatic total cholesterol, LDL-cholesterol and increased HDL-cholesterol levels. In addition, it is now established that reduction plasmatic adiponectin and increased C-reactive protein (CRP) and plasminogen activator inhibitor-1 (PAI-1) levels play a role in the maintenance of an inflammatory state and in the development of cardiovascular disease. This study aimed to examine plasma lipid profile and inflammatory markers levels in individual with sedentary lifestyle and/or highly trained athletes at rest. Methods: Fourteen male subjects (sedentary lifestyle n \\u003d 7 and highly trained athletes n \\u003d 7) were recruited. Blood samples were collected after an overnight fast (~12 h). The plasmatic lipid profile (Triglycerides, HDL-cholesterol, LDL-cholesterol, total cholesterol, LDL-oxidized and total cholesterol/HDL-c ratio), glucose, adiponectin, C - reactive protein and PAI-1 levels were determined. Results: Total cholesterol, LDL-cholesterol, TG and PAI-1 levels were lower in highly trained athletes group in relation to sedentary subjects (p \\u003c 0.01). In addition, we observed a positive correlation between PAI-1 and total cholesterol (r \\u003d 0.78; p \\u003c 0.0009), PAI-1 and LDL-c (r \\u003d 0.69; p \\u003c 0.006) and PAI-1 and TG levels (r \\u003d 0.56; p \\u003c 0.03). The plasma concentration of adiponectin, CRP, glucose, HDL-cholesterol and total cholesterol/HDL-c ratio levels were not different. These results indicate that lifestyle associated with high intensity and high volume exercise induces changes favourable in the lipid profile and PAI-1 levels and may reduce risk cardiovascular diseases.\"],\"language\":\"eng\",\"subjects\":[\"Research\"],\"creators\":[\"Lira, Fabio S.\",\"Rosa, Jose C.\",\"Lima-Silva, Adriano E.\",\"Souza, Hélio A.\",\"Caperuto, Erico C.\",\"Seelaender, Marília C.\",\"Damaso, Ana R.\",\"Oyama, Lila M.\",\"Santos, Ronaldo Vt\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Diabetology \\u0026 Metabolic Syndrome\",\"issn\":\"\",\"eissn\":\"1758-5996\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1758-5996-2-7\",\"type\":\"doi\"},{\"value\":\"PMC2826310\",\"type\":\"pmc\"},{\"value\":\"20205861\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2826310\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.dmsjournal.com/content/2/1/7\",\"license\":\"OPEN\",\"hostedby\":\"Diabetology \\u0026 Metabolic Syndrome\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.dmsjournal.com/content/2/1/7\",\"license\":\"OPEN\",\"hostedby\":\"Diabetology \\u0026 Metabolic Syndrome\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.dmsjournal.com/content/2/1/7\",\"id\":\"oai:doaj.org/article:a0408988ff5845db97f0b9e5bf4eb1b4\"},\"trust\":0.9366458}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1908318"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lira, Fabio S.","Rosa, Jose C.","Lima-Silva, Adriano E.","Souza, Hélio A.","Caperuto, Erico C.","Seelaender, Marília C.","Damaso, Ana R.","Oyama, Lila M.","Santos, Ronaldo Vt"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:a0408988ff5845db97f0b9e5bf4eb1b4"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research"]},"trust":{"type":"FLOAT","value":0.9366458},"target_publication_title":{"type":"STRING","value":"Sedentary subjects have higher PAI-1 and lipoproteins levels than highly trained athletes"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2125467\",\"titles\":[\"Outcome of a newborn hearing screening program in a tertiary hospital in Malaysia: the first five years\"],\"abstracts\":[\"BACKGROUND AND OBJECTIVE: Universal newborn hearing screening (UNHS) was started in the Hospital Universiti Sains Malaysia (HUSM) in January 2003. To comply with international standards, we determined the outcome of the newborn hearing screening program for the first 5 years of its implementation, from January 2003 to December 2007. METHODS: The program screened all infants who were delivered in HUSM. In a retrospective review, the outcomes in terms of coverage, prevalence of hearing impairment, referral rate for each screening, age at detection of hearing impairment and at hearing aid-fitting were analyzed. RESULTS: Ninety-eight percent of newborns were screened. The study included 16 100 randomly selected newborns. The initial screening referral rate was 25.5%. The prevalence of default for second and third screening was 33.9% and 40.7%, respectively. The mean (SD) age at detection of hearing impairment was 3.3 months (0.86). The mean (SD) age at fitting of a hearing aid was 13.6 (4.8) months. The prevalence of hearing impairment was 0.09%. CONCLUSION: A newborn hearing screening program is an important tool for early diagnosis and treatment. Even though the prevalence of hearing impairment may be low, the problem needs to be addressed early as the development of infants requires normal hearing.\"],\"language\":\"eng\",\"subjects\":[\"Original Article\"],\"creators\":[\"Ahmad, Amirozi\",\"Mohamad, Irfan\",\"Mansor, Suzana\",\"Daud, Mohd Khairi\",\"Sidek, Dinsuhaimi\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Medknow Publications\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Annals of Saudi Medicine\",\"issn\":\"0256-4947\",\"eissn\":\"0975-4466\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4103/0256-4947.75774\",\"type\":\"doi\"},{\"value\":\"PMC3101720\",\"type\":\"pmc\"},{\"value\":\"21245595\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3101720\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.saudiannals.net/article.asp?issn\\u003d0256-4947;year\\u003d2011;volume\\u003d31;issue\\u003d1;spage\\u003d24;epage\\u003d28;aulast\\u003dAhmad\",\"license\":\"OPEN\",\"hostedby\":\"Annals of Saudi Medicine\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.saudiannals.net/article.asp?issn\\u003d0256-4947;year\\u003d2011;volume\\u003d31;issue\\u003d1;spage\\u003d24;epage\\u003d28;aulast\\u003dAhmad\",\"license\":\"OPEN\",\"hostedby\":\"Annals of Saudi Medicine\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.saudiannals.net/article.asp?issn\\u003d0256-4947;year\\u003d2011;volume\\u003d31;issue\\u003d1;spage\\u003d24;epage\\u003d28;aulast\\u003dAhmad\",\"id\":\"oai:doaj.org/article:33dd646a494d4ffdae479c5306d6a4c2\"},\"trust\":0.3552428}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2125467"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ahmad, Amirozi","Mohamad, Irfan","Mansor, Suzana","Daud, Mohd Khairi","Sidek, Dinsuhaimi"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:33dd646a494d4ffdae479c5306d6a4c2"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Article"]},"trust":{"type":"FLOAT","value":0.3552428},"target_publication_title":{"type":"STRING","value":"Outcome of a newborn hearing screening program in a tertiary hospital in Malaysia: the first five years"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00729091v1\",\"titles\":[\"Security protocols, constraint systems, and group theories\"],\"abstracts\":[\"International audience\",\"When formally analyzing security protocols it is often im- portant to express properties in terms of an adversary\\u0027s inability to distinguish two protocols. It has been shown that this problem amounts to deciding the equivalence of two constraint systems, i.e., whether they have the same set of solutions. In this paper we study this equivalence problem when cryptographic primitives are modeled using a group equational theory, a special case of monoidal equational theories. The results strongly rely on the isomorphism between group theories and rings. This allows us to reduce the problem under study to the problem of solving systems of equations over rings. We provide several new decidability and complexity results, notably for equational theories which have applications in security protocols, such as exclusive or and Abelian groups which may additionally admit a unary, homomorphic symbol.\"],\"language\":\"eng\",\"subjects\":[\"[INFO.INFO-CR] Computer Science/Cryptography and Security\"],\"creators\":[\"Delaune, Stéphanie\",\"Kremer, Steve\",\"Pasaila, Daniel\"],\"publicationdate\":\"2012-06-26\",\"publisher\":\"Springer\",\"embargoenddate\":\"\",\"contributor\":[\"SECSI (INRIA Saclay - Ile de France) ; INRIA - École normale supérieure (ENS) - Cachan - CNRS\",\"Laboratoire Spécification et Vérification [Cachan] (LSV) ; INRIA - École normale supérieure (ENS) - Cachan - CNRS\",\"CASSIS (INRIA Nancy - Grand Est / LORIA / LIFC) ; CNRS - CNRS - INRIA - Université de Franche-Comté - Université de Lorraine\",\"Google Inc ; Google\",\"European Project : 258865, ERC, ERC-2010-StG_20091028, PROSECURE(2011)\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/978-3-642-31365-3_15\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.inria.fr/hal-00729091\",\"license\":\"CLOSED\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.inria.fr/hal-00729091\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/hal-00729091\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/hal-00729091\",\"id\":\"oai:hal.inria.fr:hal-00729091\"},\"trust\":0.05774659}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00729091v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Delaune, Stéphanie","Kremer, Steve","Pasaila, Daniel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:hal-00729091"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO.INFO-CR] Computer Science/Cryptography and Security"]},"trust":{"type":"FLOAT","value":0.05774659},"target_publication_title":{"type":"STRING","value":"Security protocols, constraint systems, and group theories"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-26"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00729091v1\",\"titles\":[\"Security protocols, constraint systems, and group theories\"],\"abstracts\":[\"International audience\",\"When formally analyzing security protocols it is often im- portant to express properties in terms of an adversary\\u0027s inability to distinguish two protocols. It has been shown that this problem amounts to deciding the equivalence of two constraint systems, i.e., whether they have the same set of solutions. In this paper we study this equivalence problem when cryptographic primitives are modeled using a group equational theory, a special case of monoidal equational theories. The results strongly rely on the isomorphism between group theories and rings. This allows us to reduce the problem under study to the problem of solving systems of equations over rings. We provide several new decidability and complexity results, notably for equational theories which have applications in security protocols, such as exclusive or and Abelian groups which may additionally admit a unary, homomorphic symbol.\"],\"language\":\"eng\",\"subjects\":[\"[INFO.INFO-CR] Computer Science/Cryptography and Security\"],\"creators\":[\"Delaune, Stéphanie\",\"Kremer, Steve\",\"Pasaila, Daniel\"],\"publicationdate\":\"2012-06-26\",\"publisher\":\"Springer\",\"embargoenddate\":\"\",\"contributor\":[\"SECSI (INRIA Saclay - Ile de France) ; INRIA - École normale supérieure (ENS) - Cachan - CNRS\",\"Laboratoire Spécification et Vérification [Cachan] (LSV) ; INRIA - École normale supérieure (ENS) - Cachan - CNRS\",\"CASSIS (INRIA Nancy - Grand Est / LORIA / LIFC) ; CNRS - CNRS - INRIA - Université de Franche-Comté - Université de Lorraine\",\"Google Inc ; Google\",\"European Project : 258865, ERC, ERC-2010-StG_20091028, PROSECURE(2011)\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/978-3-642-31365-3_15\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.inria.fr/hal-00729091\",\"license\":\"CLOSED\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.inria.fr/hal-00729091\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/hal-00729091\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/hal-00729091\",\"id\":\"oai:hal.inria.fr:hal-00729091\"},\"trust\":0.05774659}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00729091v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Delaune, Stéphanie","Kremer, Steve","Pasaila, Daniel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:hal-00729091"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO.INFO-CR] Computer Science/Cryptography and Security"]},"trust":{"type":"FLOAT","value":0.05774659},"target_publication_title":{"type":"STRING","value":"Security protocols, constraint systems, and group theories"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-26"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:cesptp:halshs-00771387\",\"titles\":[\"An Autocorrelated Loss Distribution Approach: back to the time series\"],\"abstracts\":[\"The Advanced Measurement Approach requires financial institutions to develop internal models to evaluate their capital charges. Traditionally, the Loss Distribution Approach (LDA) is used mixing frequencies and severities to build a Loss Distribution Function (LDF). This distribution represents annual losses, consequently the 99.9 percentile of the distribution providing the capital charge denotes the worst year in a thousand. The current approach suggested by the regulator implemented in the financial institutions assumes the independence of the losses. In this paper, we propose a solution to address the issues arising when autocorrelations are detected between the losses. Our approach suggests working with the losses considered as time series. Thus, the losses are aggregated periodically and time series processes are adjusted on the related time series among AR, ARFI, and Gegenbauer processes, and a distribution is fitted on the residuals. Finally a Monte Carlo simulation enables constructing the LDF, and the pertaining risk measures are evaluated. In order to show the impact of the choice of the internal models retained by the companies on the capital charges, the paper draws a parallel between the static traditional approach and an appropriate dynamical modelling. If by implementing the traditional LDA, no particular distribution proves its adequacy to the data - as soon as the goodness-of-fits tests rejects them -, keeping the LDA modelling corresponds to an arbitrary choice. We suggest in this paper an alternative and robust approach. For instance, for the two data sets we explore in this paper, with the strategies presented in this paper, the independence assumption is released and we are able to capture the autocorrelations inside the losses through the time series modelling. The construction of the related LDF enables the computation of the capital charge and therefore permits complying with the regulation taking into account as the same time the large losses with adequate distributions on the residuals and the correlations between losses with the time series modelling.\",\"L\\u0027AMA demande aux institutions de définir leurs modèles internes. Pour les risques opérations, la LDA est la méthode classique. Dans cet article, nous proposons une autre solution prenant en compte l\\u0027existence des corrélations entre les pertes. Notre approche est basée sur l\\u0027utilisation des processus AR, et les processus Gegenbauer avec différentes distributions pour les résidus. Afin de montrer l\\u0027impact du choix des modéles internes retenus par les entreprises sur les exigences de fonds propres.\"],\"language\":\"und\",\"subjects\":[\"Operation risk,time series,Gegenbauer processes,Monte Carlo,risk measures,Risque opérationnel,séries chronologiques,Gegenbauer processus,Monte-Carlo,mesures du risque\"],\"creators\":[\"Dominique Guegan\",\"Bertrand Hassani\"],\"publicationdate\":\"2012-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00771387\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00771387\"},\"trust\":0.5838266}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:cesptp:halshs-00771387"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dominique Guegan","Bertrand Hassani"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00771387"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Operation risk,time series,Gegenbauer processes,Monte Carlo,risk measures,Risque opérationnel,séries chronologiques,Gegenbauer processus,Monte-Carlo,mesures du risque"]},"trust":{"type":"FLOAT","value":0.5838266},"target_publication_title":{"type":"STRING","value":"An Autocorrelated Loss Distribution Approach: back to the time series"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:cesptp:halshs-00771387\",\"titles\":[\"An Autocorrelated Loss Distribution Approach: back to the time series\"],\"abstracts\":[\"The Advanced Measurement Approach requires financial institutions to develop internal models to evaluate their capital charges. Traditionally, the Loss Distribution Approach (LDA) is used mixing frequencies and severities to build a Loss Distribution Function (LDF). This distribution represents annual losses, consequently the 99.9 percentile of the distribution providing the capital charge denotes the worst year in a thousand. The current approach suggested by the regulator implemented in the financial institutions assumes the independence of the losses. In this paper, we propose a solution to address the issues arising when autocorrelations are detected between the losses. Our approach suggests working with the losses considered as time series. Thus, the losses are aggregated periodically and time series processes are adjusted on the related time series among AR, ARFI, and Gegenbauer processes, and a distribution is fitted on the residuals. Finally a Monte Carlo simulation enables constructing the LDF, and the pertaining risk measures are evaluated. In order to show the impact of the choice of the internal models retained by the companies on the capital charges, the paper draws a parallel between the static traditional approach and an appropriate dynamical modelling. If by implementing the traditional LDA, no particular distribution proves its adequacy to the data - as soon as the goodness-of-fits tests rejects them -, keeping the LDA modelling corresponds to an arbitrary choice. We suggest in this paper an alternative and robust approach. For instance, for the two data sets we explore in this paper, with the strategies presented in this paper, the independence assumption is released and we are able to capture the autocorrelations inside the losses through the time series modelling. The construction of the related LDF enables the computation of the capital charge and therefore permits complying with the regulation taking into account as the same time the large losses with adequate distributions on the residuals and the correlations between losses with the time series modelling.\",\"L\\u0027AMA demande aux institutions de définir leurs modèles internes. Pour les risques opérations, la LDA est la méthode classique. Dans cet article, nous proposons une autre solution prenant en compte l\\u0027existence des corrélations entre les pertes. Notre approche est basée sur l\\u0027utilisation des processus AR, et les processus Gegenbauer avec différentes distributions pour les résidus. Afin de montrer l\\u0027impact du choix des modéles internes retenus par les entreprises sur les exigences de fonds propres.\"],\"language\":\"und\",\"subjects\":[\"Operation risk,time series,Gegenbauer processes,Monte Carlo,risk measures,Risque opérationnel,séries chronologiques,Gegenbauer processus,Monte-Carlo,mesures du risque\"],\"creators\":[\"Dominique Guegan\",\"Bertrand Hassani\"],\"publicationdate\":\"2012-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/77/13/87/PDF/12091.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/77/13/87/PDF/12091.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/77/13/87/PDF/12091.pdf\",\"id\":\"oai:RePEc:hal:journl:halshs-00771387\"},\"trust\":0.376352}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:cesptp:halshs-00771387"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dominique Guegan","Bertrand Hassani"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:journl:halshs-00771387"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Operation risk,time series,Gegenbauer processes,Monte Carlo,risk measures,Risque opérationnel,séries chronologiques,Gegenbauer processus,Monte-Carlo,mesures du risque"]},"trust":{"type":"FLOAT","value":0.376352},"target_publication_title":{"type":"STRING","value":"An Autocorrelated Loss Distribution Approach: back to the time series"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:cesptp:halshs-00771387\",\"titles\":[\"An Autocorrelated Loss Distribution Approach: back to the time series\"],\"abstracts\":[\"The Advanced Measurement Approach requires financial institutions to develop internal models to evaluate their capital charges. Traditionally, the Loss Distribution Approach (LDA) is used mixing frequencies and severities to build a Loss Distribution Function (LDF). This distribution represents annual losses, consequently the 99.9 percentile of the distribution providing the capital charge denotes the worst year in a thousand. The current approach suggested by the regulator implemented in the financial institutions assumes the independence of the losses. In this paper, we propose a solution to address the issues arising when autocorrelations are detected between the losses. Our approach suggests working with the losses considered as time series. Thus, the losses are aggregated periodically and time series processes are adjusted on the related time series among AR, ARFI, and Gegenbauer processes, and a distribution is fitted on the residuals. Finally a Monte Carlo simulation enables constructing the LDF, and the pertaining risk measures are evaluated. In order to show the impact of the choice of the internal models retained by the companies on the capital charges, the paper draws a parallel between the static traditional approach and an appropriate dynamical modelling. If by implementing the traditional LDA, no particular distribution proves its adequacy to the data - as soon as the goodness-of-fits tests rejects them -, keeping the LDA modelling corresponds to an arbitrary choice. We suggest in this paper an alternative and robust approach. For instance, for the two data sets we explore in this paper, with the strategies presented in this paper, the independence assumption is released and we are able to capture the autocorrelations inside the losses through the time series modelling. The construction of the related LDF enables the computation of the capital charge and therefore permits complying with the regulation taking into account as the same time the large losses with adequate distributions on the residuals and the correlations between losses with the time series modelling.\",\"L\\u0027AMA demande aux institutions de définir leurs modèles internes. Pour les risques opérations, la LDA est la méthode classique. Dans cet article, nous proposons une autre solution prenant en compte l\\u0027existence des corrélations entre les pertes. Notre approche est basée sur l\\u0027utilisation des processus AR, et les processus Gegenbauer avec différentes distributions pour les résidus. Afin de montrer l\\u0027impact du choix des modéles internes retenus par les entreprises sur les exigences de fonds propres.\"],\"language\":\"und\",\"subjects\":[\"Operation risk,time series,Gegenbauer processes,Monte Carlo,risk measures,Risque opérationnel,séries chronologiques,Gegenbauer processus,Monte-Carlo,mesures du risque\"],\"creators\":[\"Dominique Guegan\",\"Bertrand Hassani\"],\"publicationdate\":\"2012-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387\",\"id\":\"oai:HAL:halshs-00771387v1\"},\"trust\":0.3919937}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:cesptp:halshs-00771387"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dominique Guegan","Bertrand Hassani"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00771387v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Operation risk,time series,Gegenbauer processes,Monte Carlo,risk measures,Risque opérationnel,séries chronologiques,Gegenbauer processus,Monte-Carlo,mesures du risque"]},"trust":{"type":"FLOAT","value":0.3919937},"target_publication_title":{"type":"STRING","value":"An Autocorrelated Loss Distribution Approach: back to the time series"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00771387\",\"titles\":[\"An Autocorrelated Loss Distribution Approach: back to the time series\"],\"abstracts\":[\"The Advanced Measurement Approach requires financial institutions to develop internal models to evaluate their capital charges. Traditionally, the Loss Distribution Approach (LDA) is used mixing frequencies and severities to build a Loss Distribution Function (LDF). This distribution represents annual losses, consequently the 99.9 percentile of the distribution providing the capital charge denotes the worst year in a thousand. The current approach suggested by the regulator implemented in the financial institutions assumes the independence of the losses. In this paper, we propose a solution to address the issues arising when autocorrelations are detected between the losses. Our approach suggests working with the losses considered as time series. Thus, the losses are aggregated periodically and time series processes are adjusted on the related time series among AR, ARFI, and Gegenbauer processes, and a distribution is fitted on the residuals. Finally a Monte Carlo simulation enables constructing the LDF, and the pertaining risk measures are evaluated. In order to show the impact of the choice of the internal models retained by the companies on the capital charges, the paper draws a parallel between the static traditional approach and an appropriate dynamical modelling. If by implementing the traditional LDA, no particular distribution proves its adequacy to the data - as soon as the goodness-of-fits tests rejects them -, keeping the LDA modelling corresponds to an arbitrary choice. We suggest in this paper an alternative and robust approach. For instance, for the two data sets we explore in this paper, with the strategies presented in this paper, the independence assumption is released and we are able to capture the autocorrelations inside the losses through the time series modelling. The construction of the related LDF enables the computation of the capital charge and therefore permits complying with the regulation taking into account as the same time the large losses with adequate distributions on the residuals and the correlations between losses with the time series modelling.\"],\"language\":\"eng\",\"subjects\":[\"[SHS:ECO] Humanities and Social Sciences/Economy and finances\",\"[SHS:ECO] Sciences de l\\u0027Homme et Société/Economie et finances\",\"[SHS:GESTION] Humanities and Social Sciences/Business administration\",\"[SHS:GESTION] Sciences de l\\u0027Homme et Société/Gestion et management\",\"[SHS:STAT] Humanities and Social Sciences/Methods and statistics\",\"[SHS:STAT] Sciences de l\\u0027Homme et Société/Méthodes et statistiques\",\"[MATH:MATH_PR] Mathematics/Probability\",\"[MATH:MATH_PR] Mathématiques/Probabilités\",\"[MATH:MATH_ST] Mathematics/Statistics\",\"[MATH:MATH_ST] Mathématiques/Statistiques\",\"[STAT:TH] Statistics/Statistics Theory\",\"[STAT:TH] Statistiques/Théorie\",\"Operation risk\",\"time series\",\"Gegenbauer processes\",\"Monte Carlo\",\"risk measures\"],\"creators\":[\"Guegan, Dominique\",\"Hassani, Bertrand\"],\"publicationdate\":\"2012-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387/document\",\"id\":\"oai:RePEc:hal:cesptp:halshs-00771387\"},\"trust\":0.63865787}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00771387"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guegan, Dominique","Hassani, Bertrand"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:cesptp:halshs-00771387"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:ECO] Humanities and Social Sciences/Economy and finances","[SHS:ECO] Sciences de l\u0027Homme et Société/Economie et finances","[SHS:GESTION] Humanities and Social Sciences/Business administration","[SHS:GESTION] Sciences de l\u0027Homme et Société/Gestion et management","[SHS:STAT] Humanities and Social Sciences/Methods and statistics","[SHS:STAT] Sciences de l\u0027Homme et Société/Méthodes et statistiques","[MATH:MATH_PR] Mathematics/Probability","[MATH:MATH_PR] Mathématiques/Probabilités","[MATH:MATH_ST] Mathematics/Statistics","[MATH:MATH_ST] Mathématiques/Statistiques","[STAT:TH] Statistics/Statistics Theory","[STAT:TH] Statistiques/Théorie","Operation risk","time series","Gegenbauer processes","Monte Carlo","risk measures"]},"trust":{"type":"FLOAT","value":0.63865787},"target_publication_title":{"type":"STRING","value":"An Autocorrelated Loss Distribution Approach: back to the time series"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00771387\",\"titles\":[\"An Autocorrelated Loss Distribution Approach: back to the time series\"],\"abstracts\":[\"The Advanced Measurement Approach requires financial institutions to develop internal models to evaluate their capital charges. Traditionally, the Loss Distribution Approach (LDA) is used mixing frequencies and severities to build a Loss Distribution Function (LDF). This distribution represents annual losses, consequently the 99.9 percentile of the distribution providing the capital charge denotes the worst year in a thousand. The current approach suggested by the regulator implemented in the financial institutions assumes the independence of the losses. In this paper, we propose a solution to address the issues arising when autocorrelations are detected between the losses. Our approach suggests working with the losses considered as time series. Thus, the losses are aggregated periodically and time series processes are adjusted on the related time series among AR, ARFI, and Gegenbauer processes, and a distribution is fitted on the residuals. Finally a Monte Carlo simulation enables constructing the LDF, and the pertaining risk measures are evaluated. In order to show the impact of the choice of the internal models retained by the companies on the capital charges, the paper draws a parallel between the static traditional approach and an appropriate dynamical modelling. If by implementing the traditional LDA, no particular distribution proves its adequacy to the data - as soon as the goodness-of-fits tests rejects them -, keeping the LDA modelling corresponds to an arbitrary choice. We suggest in this paper an alternative and robust approach. For instance, for the two data sets we explore in this paper, with the strategies presented in this paper, the independence assumption is released and we are able to capture the autocorrelations inside the losses through the time series modelling. The construction of the related LDF enables the computation of the capital charge and therefore permits complying with the regulation taking into account as the same time the large losses with adequate distributions on the residuals and the correlations between losses with the time series modelling.\"],\"language\":\"eng\",\"subjects\":[\"[SHS:ECO] Humanities and Social Sciences/Economy and finances\",\"[SHS:ECO] Sciences de l\\u0027Homme et Société/Economie et finances\",\"[SHS:GESTION] Humanities and Social Sciences/Business administration\",\"[SHS:GESTION] Sciences de l\\u0027Homme et Société/Gestion et management\",\"[SHS:STAT] Humanities and Social Sciences/Methods and statistics\",\"[SHS:STAT] Sciences de l\\u0027Homme et Société/Méthodes et statistiques\",\"[MATH:MATH_PR] Mathematics/Probability\",\"[MATH:MATH_PR] Mathématiques/Probabilités\",\"[MATH:MATH_ST] Mathematics/Statistics\",\"[MATH:MATH_ST] Mathématiques/Statistiques\",\"[STAT:TH] Statistics/Statistics Theory\",\"[STAT:TH] Statistiques/Théorie\",\"Operation risk\",\"time series\",\"Gegenbauer processes\",\"Monte Carlo\",\"risk measures\"],\"creators\":[\"Guegan, Dominique\",\"Hassani, Bertrand\"],\"publicationdate\":\"2012-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"},{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/77/13/87/PDF/12091.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/77/13/87/PDF/12091.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/77/13/87/PDF/12091.pdf\",\"id\":\"oai:RePEc:hal:journl:halshs-00771387\"},\"trust\":0.8833481}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00771387"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guegan, Dominique","Hassani, Bertrand"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:journl:halshs-00771387"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:ECO] Humanities and Social Sciences/Economy and finances","[SHS:ECO] Sciences de l\u0027Homme et Société/Economie et finances","[SHS:GESTION] Humanities and Social Sciences/Business administration","[SHS:GESTION] Sciences de l\u0027Homme et Société/Gestion et management","[SHS:STAT] Humanities and Social Sciences/Methods and statistics","[SHS:STAT] Sciences de l\u0027Homme et Société/Méthodes et statistiques","[MATH:MATH_PR] Mathematics/Probability","[MATH:MATH_PR] Mathématiques/Probabilités","[MATH:MATH_ST] Mathematics/Statistics","[MATH:MATH_ST] Mathématiques/Statistiques","[STAT:TH] Statistics/Statistics Theory","[STAT:TH] Statistiques/Théorie","Operation risk","time series","Gegenbauer processes","Monte Carlo","risk measures"]},"trust":{"type":"FLOAT","value":0.8833481},"target_publication_title":{"type":"STRING","value":"An Autocorrelated Loss Distribution Approach: back to the time series"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00771387\",\"titles\":[\"An Autocorrelated Loss Distribution Approach: back to the time series\"],\"abstracts\":[\"The Advanced Measurement Approach requires financial institutions to develop internal models to evaluate their capital charges. Traditionally, the Loss Distribution Approach (LDA) is used mixing frequencies and severities to build a Loss Distribution Function (LDF). This distribution represents annual losses, consequently the 99.9 percentile of the distribution providing the capital charge denotes the worst year in a thousand. The current approach suggested by the regulator implemented in the financial institutions assumes the independence of the losses. In this paper, we propose a solution to address the issues arising when autocorrelations are detected between the losses. Our approach suggests working with the losses considered as time series. Thus, the losses are aggregated periodically and time series processes are adjusted on the related time series among AR, ARFI, and Gegenbauer processes, and a distribution is fitted on the residuals. Finally a Monte Carlo simulation enables constructing the LDF, and the pertaining risk measures are evaluated. In order to show the impact of the choice of the internal models retained by the companies on the capital charges, the paper draws a parallel between the static traditional approach and an appropriate dynamical modelling. If by implementing the traditional LDA, no particular distribution proves its adequacy to the data - as soon as the goodness-of-fits tests rejects them -, keeping the LDA modelling corresponds to an arbitrary choice. We suggest in this paper an alternative and robust approach. For instance, for the two data sets we explore in this paper, with the strategies presented in this paper, the independence assumption is released and we are able to capture the autocorrelations inside the losses through the time series modelling. The construction of the related LDF enables the computation of the capital charge and therefore permits complying with the regulation taking into account as the same time the large losses with adequate distributions on the residuals and the correlations between losses with the time series modelling.\"],\"language\":\"eng\",\"subjects\":[\"[SHS:ECO] Humanities and Social Sciences/Economy and finances\",\"[SHS:ECO] Sciences de l\\u0027Homme et Société/Economie et finances\",\"[SHS:GESTION] Humanities and Social Sciences/Business administration\",\"[SHS:GESTION] Sciences de l\\u0027Homme et Société/Gestion et management\",\"[SHS:STAT] Humanities and Social Sciences/Methods and statistics\",\"[SHS:STAT] Sciences de l\\u0027Homme et Société/Méthodes et statistiques\",\"[MATH:MATH_PR] Mathematics/Probability\",\"[MATH:MATH_PR] Mathématiques/Probabilités\",\"[MATH:MATH_ST] Mathematics/Statistics\",\"[MATH:MATH_ST] Mathématiques/Statistiques\",\"[STAT:TH] Statistics/Statistics Theory\",\"[STAT:TH] Statistiques/Théorie\",\"Operation risk\",\"time series\",\"Gegenbauer processes\",\"Monte Carlo\",\"risk measures\"],\"creators\":[\"Guegan, Dominique\",\"Hassani, Bertrand\"],\"publicationdate\":\"2012-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387\",\"id\":\"oai:HAL:halshs-00771387v1\"},\"trust\":0.18017906}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00771387"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guegan, Dominique","Hassani, Bertrand"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00771387v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:ECO] Humanities and Social Sciences/Economy and finances","[SHS:ECO] Sciences de l\u0027Homme et Société/Economie et finances","[SHS:GESTION] Humanities and Social Sciences/Business administration","[SHS:GESTION] Sciences de l\u0027Homme et Société/Gestion et management","[SHS:STAT] Humanities and Social Sciences/Methods and statistics","[SHS:STAT] Sciences de l\u0027Homme et Société/Méthodes et statistiques","[MATH:MATH_PR] Mathematics/Probability","[MATH:MATH_PR] Mathématiques/Probabilités","[MATH:MATH_ST] Mathematics/Statistics","[MATH:MATH_ST] Mathématiques/Statistiques","[STAT:TH] Statistics/Statistics Theory","[STAT:TH] Statistiques/Théorie","Operation risk","time series","Gegenbauer processes","Monte Carlo","risk measures"]},"trust":{"type":"FLOAT","value":0.18017906},"target_publication_title":{"type":"STRING","value":"An Autocorrelated Loss Distribution Approach: back to the time series"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:halshs-00771387\",\"titles\":[\"An Autocorrelated Loss Distribution Approach: back to the time series\"],\"abstracts\":[\"The Advanced Measurement Approach requires financial institutions to develop internal models to evaluate their capital charges. Traditionally, the Loss Distribution Approach (LDA) is used mixing frequencies and severities to build a Loss Distribution Function (LDF). This distribution represents annual losses, consequently the 99.9 percentile of the distribution providing the capital charge denotes the worst year in a thousand. The current approach suggested by the regulator implemented in the financial institutions assumes the independence of the losses. In this paper, we propose a solution to address the issues arising when autocorrelations are detected between the losses. Our approach suggests working with the losses considered as time series. Thus, the losses are aggregated periodically and time series processes are adjusted on the related time series among AR, ARFI, and Gegenbauer processes, and a distribution is fitted on the residuals. Finally a Monte Carlo simulation enables constructing the LDF, and the pertaining risk measures are evaluated. In order to show the impact of the choice of the internal models retained by the companies on the capital charges, the paper draws a parallel between the static traditional approach and an appropriate dynamical modelling. If by implementing the traditional LDA, no particular distribution proves its adequacy to the data - as soon as the goodness-of-fits tests rejects them -, keeping the LDA modelling corresponds to an arbitrary choice. We suggest in this paper an alternative and robust approach. For instance, for the two data sets we explore in this paper, with the strategies presented in this paper, the independence assumption is released and we are able to capture the autocorrelations inside the losses through the time series modelling. The construction of the related LDF enables the computation of the capital charge and therefore permits complying with the regulation taking into account as the same time the large losses with adequate distributions on the residuals and the correlations between losses with the time series modelling.\"],\"language\":\"und\",\"subjects\":[\"Operation risk; time series; Gegenbauer processes; Monte Carlo; risk measures\"],\"creators\":[\"Dominique Guegan\",\"Bertrand Hassani\"],\"publicationdate\":\"2012-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/77/13/87/PDF/12091.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387/document\",\"id\":\"oai:RePEc:hal:cesptp:halshs-00771387\"},\"trust\":0.7320868}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:halshs-00771387"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dominique Guegan","Bertrand Hassani"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:cesptp:halshs-00771387"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Operation risk; time series; Gegenbauer processes; Monte Carlo; risk measures"]},"trust":{"type":"FLOAT","value":0.7320868},"target_publication_title":{"type":"STRING","value":"An Autocorrelated Loss Distribution Approach: back to the time series"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:halshs-00771387\",\"titles\":[\"An Autocorrelated Loss Distribution Approach: back to the time series\"],\"abstracts\":[\"The Advanced Measurement Approach requires financial institutions to develop internal models to evaluate their capital charges. Traditionally, the Loss Distribution Approach (LDA) is used mixing frequencies and severities to build a Loss Distribution Function (LDF). This distribution represents annual losses, consequently the 99.9 percentile of the distribution providing the capital charge denotes the worst year in a thousand. The current approach suggested by the regulator implemented in the financial institutions assumes the independence of the losses. In this paper, we propose a solution to address the issues arising when autocorrelations are detected between the losses. Our approach suggests working with the losses considered as time series. Thus, the losses are aggregated periodically and time series processes are adjusted on the related time series among AR, ARFI, and Gegenbauer processes, and a distribution is fitted on the residuals. Finally a Monte Carlo simulation enables constructing the LDF, and the pertaining risk measures are evaluated. In order to show the impact of the choice of the internal models retained by the companies on the capital charges, the paper draws a parallel between the static traditional approach and an appropriate dynamical modelling. If by implementing the traditional LDA, no particular distribution proves its adequacy to the data - as soon as the goodness-of-fits tests rejects them -, keeping the LDA modelling corresponds to an arbitrary choice. We suggest in this paper an alternative and robust approach. For instance, for the two data sets we explore in this paper, with the strategies presented in this paper, the independence assumption is released and we are able to capture the autocorrelations inside the losses through the time series modelling. The construction of the related LDF enables the computation of the capital charge and therefore permits complying with the regulation taking into account as the same time the large losses with adequate distributions on the residuals and the correlations between losses with the time series modelling.\"],\"language\":\"und\",\"subjects\":[\"Operation risk; time series; Gegenbauer processes; Monte Carlo; risk measures\"],\"creators\":[\"Dominique Guegan\",\"Bertrand Hassani\"],\"publicationdate\":\"2012-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/77/13/87/PDF/12091.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00771387\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00771387\"},\"trust\":0.16084957}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:halshs-00771387"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dominique Guegan","Bertrand Hassani"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00771387"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Operation risk; time series; Gegenbauer processes; Monte Carlo; risk measures"]},"trust":{"type":"FLOAT","value":0.16084957},"target_publication_title":{"type":"STRING","value":"An Autocorrelated Loss Distribution Approach: back to the time series"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:halshs-00771387\",\"titles\":[\"An Autocorrelated Loss Distribution Approach: back to the time series\"],\"abstracts\":[\"The Advanced Measurement Approach requires financial institutions to develop internal models to evaluate their capital charges. Traditionally, the Loss Distribution Approach (LDA) is used mixing frequencies and severities to build a Loss Distribution Function (LDF). This distribution represents annual losses, consequently the 99.9 percentile of the distribution providing the capital charge denotes the worst year in a thousand. The current approach suggested by the regulator implemented in the financial institutions assumes the independence of the losses. In this paper, we propose a solution to address the issues arising when autocorrelations are detected between the losses. Our approach suggests working with the losses considered as time series. Thus, the losses are aggregated periodically and time series processes are adjusted on the related time series among AR, ARFI, and Gegenbauer processes, and a distribution is fitted on the residuals. Finally a Monte Carlo simulation enables constructing the LDF, and the pertaining risk measures are evaluated. In order to show the impact of the choice of the internal models retained by the companies on the capital charges, the paper draws a parallel between the static traditional approach and an appropriate dynamical modelling. If by implementing the traditional LDA, no particular distribution proves its adequacy to the data - as soon as the goodness-of-fits tests rejects them -, keeping the LDA modelling corresponds to an arbitrary choice. We suggest in this paper an alternative and robust approach. For instance, for the two data sets we explore in this paper, with the strategies presented in this paper, the independence assumption is released and we are able to capture the autocorrelations inside the losses through the time series modelling. The construction of the related LDF enables the computation of the capital charge and therefore permits complying with the regulation taking into account as the same time the large losses with adequate distributions on the residuals and the correlations between losses with the time series modelling.\"],\"language\":\"und\",\"subjects\":[\"Operation risk; time series; Gegenbauer processes; Monte Carlo; risk measures\"],\"creators\":[\"Dominique Guegan\",\"Bertrand Hassani\"],\"publicationdate\":\"2012-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/77/13/87/PDF/12091.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387\",\"id\":\"oai:HAL:halshs-00771387v1\"},\"trust\":0.4759937}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:halshs-00771387"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dominique Guegan","Bertrand Hassani"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00771387v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Operation risk; time series; Gegenbauer processes; Monte Carlo; risk measures"]},"trust":{"type":"FLOAT","value":0.4759937},"target_publication_title":{"type":"STRING","value":"An Autocorrelated Loss Distribution Approach: back to the time series"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00771387v1\",\"titles\":[\"An Autocorrelated Loss Distribution Approach: back to the time series\"],\"abstracts\":[\"Classification JEL : C - Mathematical and Quantitative Methods/ C1 - Econometric and Statistical Methods and Methodology : General/ C18 - Methodological Issues : General \\u003cbr /\\u003e URL des Documents de travail : http://centredeconomiesorbonne.univ-paris1.fr/bandeau-haut/documents-de-travail/\",\"Documents de travail du Centre d\\u0027Economie de la Sorbonne 2012.91 - ISSN : 1955-611X\",\"The Advanced Measurement Approach requires financial institutions to develop internal models to evaluate their capital charges. Traditionally, the Loss Distribution Approach (LDA) is used mixing frequencies and severities to build a Loss Distribution Function (LDF). This distribution represents annual losses, consequently the 99.9 percentile of the distribution providing the capital charge denotes the worst year in a thousand. The current approach suggested by the regulator implemented in the financial institutions assumes the independence of the losses. In this paper, we propose a solution to address the issues arising when autocorrelations are detected between the losses. Our approach suggests working with the losses considered as time series. Thus, the losses are aggregated periodically and time series processes are adjusted on the related time series among AR, ARFI, and Gegenbauer processes, and a distribution is fitted on the residuals. Finally a Monte Carlo simulation enables constructing the LDF, and the pertaining risk measures are evaluated. In order to show the impact of the choice of the internal models retained by the companies on the capital charges, the paper draws a parallel between the static traditional approach and an appropriate dynamical modelling. If by implementing the traditional LDA, no particular distribution proves its adequacy to the data - as soon as the goodness-of-fits tests rejects them -, keeping the LDA modelling corresponds to an arbitrary choice. We suggest in this paper an alternative and robust approach. For instance, for the two data sets we explore in this paper, with the strategies presented in this paper, the independence assumption is released and we are able to capture the autocorrelations inside the losses through the time series modelling. The construction of the related LDF enables the computation of the capital charge and therefore permits complying with the regulation taking into account as the same time the large losses with adequate distributions on the residuals and the correlations between losses with the time series modelling.\",\"L\\u0027AMA demande aux institutions de définir leurs modèles internes. Pour les risques opérations, la LDA est la méthode classique. Dans cet article, nous proposons une autre solution prenant en compte l\\u0027existence des corrélations entre les pertes. Notre approche est basée sur l\\u0027utilisation des processus AR, et les processus Gegenbauer avec différentes distributions pour les résidus. Afin de montrer l\\u0027impact du choix des modéles internes retenus par les entreprises sur les exigences de fonds propres.\"],\"language\":\"eng\",\"subjects\":[\"risk measures\",\"Monte Carlo\",\"Gegenbauer processes\",\"Operation risk\",\"time series\",\"mesures du risque\",\"Monte-Carlo\",\"Risque opérationnel\",\"séries chronologiques\",\"Gegenbauer processus\",\"[SHS.ECO] Humanities and Social Sciences/Economies and finances\",\"[SHS.GESTION] Humanities and Social Sciences/Business administration\",\"[SHS.STAT] Humanities and Social Sciences/Methods and statistics\",\"[MATH.MATH-PR] Mathematics/Probability\",\"[MATH.MATH-ST] Mathematics/Statistics\",\"[STAT.TH] Statistics/Statistics Theory\"],\"creators\":[\"Guegan, Dominique\",\"Hassani, Bertrand\"],\"publicationdate\":\"2012-12-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Axe Finance ; Centre d\\u0027économie de la Sorbonne (CES) ; Université Paris I - Panthéon-Sorbonne - CNRS - Université Paris I - Panthéon-Sorbonne - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387/document\",\"id\":\"oai:RePEc:hal:cesptp:halshs-00771387\"},\"trust\":0.8871194}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00771387v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guegan, Dominique","Hassani, Bertrand"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:cesptp:halshs-00771387"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["risk measures","Monte Carlo","Gegenbauer processes","Operation risk","time series","mesures du risque","Monte-Carlo","Risque opérationnel","séries chronologiques","Gegenbauer processus","[SHS.ECO] Humanities and Social Sciences/Economies and finances","[SHS.GESTION] Humanities and Social Sciences/Business administration","[SHS.STAT] Humanities and Social Sciences/Methods and statistics","[MATH.MATH-PR] Mathematics/Probability","[MATH.MATH-ST] Mathematics/Statistics","[STAT.TH] Statistics/Statistics Theory"]},"trust":{"type":"FLOAT","value":0.8871194},"target_publication_title":{"type":"STRING","value":"An Autocorrelated Loss Distribution Approach: back to the time series"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00771387v1\",\"titles\":[\"An Autocorrelated Loss Distribution Approach: back to the time series\"],\"abstracts\":[\"Classification JEL : C - Mathematical and Quantitative Methods/ C1 - Econometric and Statistical Methods and Methodology : General/ C18 - Methodological Issues : General \\u003cbr /\\u003e URL des Documents de travail : http://centredeconomiesorbonne.univ-paris1.fr/bandeau-haut/documents-de-travail/\",\"Documents de travail du Centre d\\u0027Economie de la Sorbonne 2012.91 - ISSN : 1955-611X\",\"The Advanced Measurement Approach requires financial institutions to develop internal models to evaluate their capital charges. Traditionally, the Loss Distribution Approach (LDA) is used mixing frequencies and severities to build a Loss Distribution Function (LDF). This distribution represents annual losses, consequently the 99.9 percentile of the distribution providing the capital charge denotes the worst year in a thousand. The current approach suggested by the regulator implemented in the financial institutions assumes the independence of the losses. In this paper, we propose a solution to address the issues arising when autocorrelations are detected between the losses. Our approach suggests working with the losses considered as time series. Thus, the losses are aggregated periodically and time series processes are adjusted on the related time series among AR, ARFI, and Gegenbauer processes, and a distribution is fitted on the residuals. Finally a Monte Carlo simulation enables constructing the LDF, and the pertaining risk measures are evaluated. In order to show the impact of the choice of the internal models retained by the companies on the capital charges, the paper draws a parallel between the static traditional approach and an appropriate dynamical modelling. If by implementing the traditional LDA, no particular distribution proves its adequacy to the data - as soon as the goodness-of-fits tests rejects them -, keeping the LDA modelling corresponds to an arbitrary choice. We suggest in this paper an alternative and robust approach. For instance, for the two data sets we explore in this paper, with the strategies presented in this paper, the independence assumption is released and we are able to capture the autocorrelations inside the losses through the time series modelling. The construction of the related LDF enables the computation of the capital charge and therefore permits complying with the regulation taking into account as the same time the large losses with adequate distributions on the residuals and the correlations between losses with the time series modelling.\",\"L\\u0027AMA demande aux institutions de définir leurs modèles internes. Pour les risques opérations, la LDA est la méthode classique. Dans cet article, nous proposons une autre solution prenant en compte l\\u0027existence des corrélations entre les pertes. Notre approche est basée sur l\\u0027utilisation des processus AR, et les processus Gegenbauer avec différentes distributions pour les résidus. Afin de montrer l\\u0027impact du choix des modéles internes retenus par les entreprises sur les exigences de fonds propres.\"],\"language\":\"eng\",\"subjects\":[\"risk measures\",\"Monte Carlo\",\"Gegenbauer processes\",\"Operation risk\",\"time series\",\"mesures du risque\",\"Monte-Carlo\",\"Risque opérationnel\",\"séries chronologiques\",\"Gegenbauer processus\",\"[SHS.ECO] Humanities and Social Sciences/Economies and finances\",\"[SHS.GESTION] Humanities and Social Sciences/Business administration\",\"[SHS.STAT] Humanities and Social Sciences/Methods and statistics\",\"[MATH.MATH-PR] Mathematics/Probability\",\"[MATH.MATH-ST] Mathematics/Statistics\",\"[STAT.TH] Statistics/Statistics Theory\"],\"creators\":[\"Guegan, Dominique\",\"Hassani, Bertrand\"],\"publicationdate\":\"2012-12-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Axe Finance ; Centre d\\u0027économie de la Sorbonne (CES) ; Université Paris I - Panthéon-Sorbonne - CNRS - Université Paris I - Panthéon-Sorbonne - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00771387\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00771387\"},\"trust\":0.47602975}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00771387v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guegan, Dominique","Hassani, Bertrand"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00771387"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["risk measures","Monte Carlo","Gegenbauer processes","Operation risk","time series","mesures du risque","Monte-Carlo","Risque opérationnel","séries chronologiques","Gegenbauer processus","[SHS.ECO] Humanities and Social Sciences/Economies and finances","[SHS.GESTION] Humanities and Social Sciences/Business administration","[SHS.STAT] Humanities and Social Sciences/Methods and statistics","[MATH.MATH-PR] Mathematics/Probability","[MATH.MATH-ST] Mathematics/Statistics","[STAT.TH] Statistics/Statistics Theory"]},"trust":{"type":"FLOAT","value":0.47602975},"target_publication_title":{"type":"STRING","value":"An Autocorrelated Loss Distribution Approach: back to the time series"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00771387v1\",\"titles\":[\"An Autocorrelated Loss Distribution Approach: back to the time series\"],\"abstracts\":[\"Classification JEL : C - Mathematical and Quantitative Methods/ C1 - Econometric and Statistical Methods and Methodology : General/ C18 - Methodological Issues : General \\u003cbr /\\u003e URL des Documents de travail : http://centredeconomiesorbonne.univ-paris1.fr/bandeau-haut/documents-de-travail/\",\"Documents de travail du Centre d\\u0027Economie de la Sorbonne 2012.91 - ISSN : 1955-611X\",\"The Advanced Measurement Approach requires financial institutions to develop internal models to evaluate their capital charges. Traditionally, the Loss Distribution Approach (LDA) is used mixing frequencies and severities to build a Loss Distribution Function (LDF). This distribution represents annual losses, consequently the 99.9 percentile of the distribution providing the capital charge denotes the worst year in a thousand. The current approach suggested by the regulator implemented in the financial institutions assumes the independence of the losses. In this paper, we propose a solution to address the issues arising when autocorrelations are detected between the losses. Our approach suggests working with the losses considered as time series. Thus, the losses are aggregated periodically and time series processes are adjusted on the related time series among AR, ARFI, and Gegenbauer processes, and a distribution is fitted on the residuals. Finally a Monte Carlo simulation enables constructing the LDF, and the pertaining risk measures are evaluated. In order to show the impact of the choice of the internal models retained by the companies on the capital charges, the paper draws a parallel between the static traditional approach and an appropriate dynamical modelling. If by implementing the traditional LDA, no particular distribution proves its adequacy to the data - as soon as the goodness-of-fits tests rejects them -, keeping the LDA modelling corresponds to an arbitrary choice. We suggest in this paper an alternative and robust approach. For instance, for the two data sets we explore in this paper, with the strategies presented in this paper, the independence assumption is released and we are able to capture the autocorrelations inside the losses through the time series modelling. The construction of the related LDF enables the computation of the capital charge and therefore permits complying with the regulation taking into account as the same time the large losses with adequate distributions on the residuals and the correlations between losses with the time series modelling.\",\"L\\u0027AMA demande aux institutions de définir leurs modèles internes. Pour les risques opérations, la LDA est la méthode classique. Dans cet article, nous proposons une autre solution prenant en compte l\\u0027existence des corrélations entre les pertes. Notre approche est basée sur l\\u0027utilisation des processus AR, et les processus Gegenbauer avec différentes distributions pour les résidus. Afin de montrer l\\u0027impact du choix des modéles internes retenus par les entreprises sur les exigences de fonds propres.\"],\"language\":\"eng\",\"subjects\":[\"risk measures\",\"Monte Carlo\",\"Gegenbauer processes\",\"Operation risk\",\"time series\",\"mesures du risque\",\"Monte-Carlo\",\"Risque opérationnel\",\"séries chronologiques\",\"Gegenbauer processus\",\"[SHS.ECO] Humanities and Social Sciences/Economies and finances\",\"[SHS.GESTION] Humanities and Social Sciences/Business administration\",\"[SHS.STAT] Humanities and Social Sciences/Methods and statistics\",\"[MATH.MATH-PR] Mathematics/Probability\",\"[MATH.MATH-ST] Mathematics/Statistics\",\"[STAT.TH] Statistics/Statistics Theory\"],\"creators\":[\"Guegan, Dominique\",\"Hassani, Bertrand\"],\"publicationdate\":\"2012-12-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Axe Finance ; Centre d\\u0027économie de la Sorbonne (CES) ; Université Paris I - Panthéon-Sorbonne - CNRS - Université Paris I - Panthéon-Sorbonne - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00771387\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/77/13/87/PDF/12091.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/77/13/87/PDF/12091.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/77/13/87/PDF/12091.pdf\",\"id\":\"oai:RePEc:hal:journl:halshs-00771387\"},\"trust\":0.8427791}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00771387v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guegan, Dominique","Hassani, Bertrand"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:journl:halshs-00771387"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["risk measures","Monte Carlo","Gegenbauer processes","Operation risk","time series","mesures du risque","Monte-Carlo","Risque opérationnel","séries chronologiques","Gegenbauer processus","[SHS.ECO] Humanities and Social Sciences/Economies and finances","[SHS.GESTION] Humanities and Social Sciences/Business administration","[SHS.STAT] Humanities and Social Sciences/Methods and statistics","[MATH.MATH-PR] Mathematics/Probability","[MATH.MATH-ST] Mathematics/Statistics","[STAT.TH] Statistics/Statistics Theory"]},"trust":{"type":"FLOAT","value":0.8427791},"target_publication_title":{"type":"STRING","value":"An Autocorrelated Loss Distribution Approach: back to the time series"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00334774v1\",\"titles\":[\"Détection automatique des points de fuite et calcul de leur incertitude à l\\u0027aide de la géométrie projective\"],\"abstracts\":[\"National audience\",\"Un algorithme entièrement automatique de détection de points de fuite dans des images de scènes urbaines est présenté. Cette approche s\\u0027appuie sur un théorème classique de géométrie projective (théorème de Chasles- Steiner), qui permet de transformer le problème de détection des points de fuites à partir de segments et leur incertitude en un problème de détection de cercles dans un fouillis de points (chaque point correspond à un segment, et à chaque point on associe une incertitude). L\\u0027extraction de cercles utilise une méthode robuste de type RanSac, modifiée pour être très rapide par rapport à des techniques accumulatives (de type Hough ou autres). Cette estimation robuste est ensuite raffinée par une propagation d\\u0027incertitude par moindres carrés exploitant les variances individuelles de chaque segment. L\\u0027algorithme développé est robuste, sa précision est la meilleure au sens des moindres carres compte tenu des incertitudes associées aux segments détectés et en outre il est entièrement automatique. Son bon fonctionnement a été testé sur un grand nombre d\\u0027images de paysages urbains varié\"],\"language\":\"fra/fre\",\"subjects\":[\"Points de fuite\",\"géométrie projective\",\"propagation d\\u0027erreur\",\"vision par ordinateur\",\"[SPI.SIGNAL] Engineering Sciences/Signal and Image processing\",\"[INFO.INFO-TS] Computer Science/Signal and Image Processing\"],\"creators\":[\"Kalantari, Mahzad\",\"Jung, Franck\",\"Guédon, Jeanpierre\",\"Paparoditis, Nicolas\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Institut de Recherche en Communications et en Cybernétique de Nantes (IRCCyN) ; École Centrale de Nantes - École Nationale Supérieure des Mines - Nantes - Ecole Polytechnique de l\\u0027Université de Nantes - PRES Université Nantes Angers Le Mans [UNAM] - CNRS\",\"MATIS ; IGN\",\"Institut de recherche en sciences et en technologies de la ville (IRSTV) ; Université d\\u0027Angers - Université de La Rochelle - École Centrale de Nantes - EC. ARCHIT. NANTES\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00334774\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00334774\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00334774\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00334774\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00334774\"},\"trust\":0.44952053}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00334774v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kalantari, Mahzad","Jung, Franck","Guédon, Jeanpierre","Paparoditis, Nicolas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00334774"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Points de fuite","géométrie projective","propagation d\u0027erreur","vision par ordinateur","[SPI.SIGNAL] Engineering Sciences/Signal and Image processing","[INFO.INFO-TS] Computer Science/Signal and Image Processing"]},"trust":{"type":"FLOAT","value":0.44952053},"target_publication_title":{"type":"STRING","value":"Détection automatique des points de fuite et calcul de leur incertitude à l\u0027aide de la géométrie projective"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00334774\",\"titles\":[\"Détection automatique des points de fuite et calcul de leur incertitude à l\\u0027aide de la géométrie projective\"],\"abstracts\":[\"Un algorithme entièrement automatique de détection de points de fuite dans des images de scènes urbaines est présenté. Cette approche s\\u0027appuie sur un théorème classique de géométrie projective (théorème de Chasles- Steiner), qui permet de transformer le problème de détection des points de fuites à partir de segments et leur incertitude en un problème de détection de cercles dans un fouillis de points (chaque point correspond à un segment, et à chaque point on associe une incertitude). L\\u0027extraction de cercles utilise une méthode robuste de type RanSac, modifiée pour être très rapide par rapport à des techniques accumulatives (de type Hough ou autres). Cette estimation robuste est ensuite raffinée par une propagation d\\u0027incertitude par moindres carrés exploitant les variances individuelles de chaque segment. L\\u0027algorithme développé est robuste, sa précision est la meilleure au sens des moindres carres compte tenu des incertitudes associées aux segments détectés et en outre il est entièrement automatique. Son bon fonctionnement a été testé sur un grand nombre d\\u0027images de paysages urbains varié\"],\"language\":\"fra/fre\",\"subjects\":[\"[SPI:SIGNAL] Engineering Sciences/Signal and Image processing\",\"[SPI:SIGNAL] Sciences de l\\u0027ingénieur/Traitement du signal et de l\\u0027image\",\"[INFO:INFO_TS] Computer Science/Signal and Image Processing\",\"[INFO:INFO_TS] Informatique/Traitement du signal et de l\\u0027image\",\"Points de fuite\",\"géométrie projective\",\"propagation d\\u0027erreur\",\"vision par ordinateur\"],\"creators\":[\"Kalantari, Mahzad\",\"Jung, Franck\",\"Guédon, Jeanpierre\",\"Paparoditis, Nicolas\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00334774\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00334774\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00334774\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00334774\",\"id\":\"oai:HAL:hal-00334774v1\"},\"trust\":0.12207109}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00334774"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kalantari, Mahzad","Jung, Franck","Guédon, Jeanpierre","Paparoditis, Nicolas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00334774v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SPI:SIGNAL] Engineering Sciences/Signal and Image processing","[SPI:SIGNAL] Sciences de l\u0027ingénieur/Traitement du signal et de l\u0027image","[INFO:INFO_TS] Computer Science/Signal and Image Processing","[INFO:INFO_TS] Informatique/Traitement du signal et de l\u0027image","Points de fuite","géométrie projective","propagation d\u0027erreur","vision par ordinateur"]},"trust":{"type":"FLOAT","value":0.12207109},"target_publication_title":{"type":"STRING","value":"Détection automatique des points de fuite et calcul de leur incertitude à l\u0027aide de la géométrie projective"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3264404\",\"titles\":[\"Hemolytic Uremic Syndrome: Toxins, Vessels, and Inflammation\"],\"abstracts\":[\"Hemolytic uremic syndrome (HUS) is characterized by thrombotic microangiopathy of the glomerular microcirculation and other vascular beds. Its defining clinical phenotype is acute kidney injury (AKI), microangiopathic anemia, and thrombocytopenia. There are many etiologies of HUS including infection by Shiga toxin-producing bacterial strains, medications, viral infections, malignancy, and mutations of genes coding for proteins involved in the alternative pathway of complement. In the aggregate, although HUS is a rare disease, it is one of the most common causes of AKI in previously healthy children and accounts for a sizable number of pediatric and adult patients who progress to end stage kidney disease. There has been great progress over the past 20 years in understanding the pathophysiology of HUS and its related disorders. There has been intense focus on vascular injury in HUS as the major mechanism of disease and target for effective therapies for this acute illness. In all forms of HUS, there is evidence of both systemic and intra-glomerular inflammation and perturbations in the immune system. Renewed investigation into these aspects of HUS may prove helpful in developing new interventions that can attenuate glomerular and tubular injury and improve clinical outcomes in patients with HUS.\"],\"language\":\"eng\",\"subjects\":[\"Medicine\",\"Mini Reviews in Medicine\",\"thrombotic microangiopathy\",\"hemolytic uremic syndrome\",\"Shiga toxin\",\"inflammation\",\"alternative pathway of complement\"],\"creators\":[\"Cheung, Victoria\",\"Trachtman, Howard\"],\"publicationdate\":\"2014-11-01\",\"publisher\":\"Frontiers Media S.A.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Frontiers in Medicine\",\"issn\":\"\",\"eissn\":\"2296-858X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3389/fmed.2014.00042\",\"type\":\"doi\"},{\"value\":\"PMC4292208\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4292208\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.3389/fmed.2014.00042\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.3389/fmed.2014.00042\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Frontiers\",\"url\":\"http://dx.doi.org/10.3389/fmed.2014.00042\",\"id\":\"10.3389/fmed.2014.00042\"},\"trust\":0.22382301}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3264404"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cheung, Victoria","Trachtman, Howard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.3389/fmed.2014.00042"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::3db634fc5446f389d0b826ea400a5da6"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Medicine","Mini Reviews in Medicine","thrombotic microangiopathy","hemolytic uremic syndrome","Shiga toxin","inflammation","alternative pathway of complement"]},"trust":{"type":"FLOAT","value":0.22382301},"target_publication_title":{"type":"STRING","value":"Hemolytic Uremic Syndrome: Toxins, Vessels, and Inflammation"},"provenance_datasource_name":{"type":"STRING","value":"Frontiers"},"target_dateofacceptance":{"type":"DATE","value":"2014-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2492237\",\"titles\":[\"Logic minimization and rule extraction for identification of functional sites in molecular sequences\"],\"abstracts\":[\"Background Logic minimization is the application of algebraic axioms to a binary dataset with the purpose of reducing the number of digital variables and/or rules needed to express it. Although logic minimization techniques have been applied to bioinformatics datasets before, they have not been used in classification and rule discovery problems. In this paper, we propose a method based on logic minimization to extract predictive rules for two bioinformatics problems involving the identification of functional sites in molecular sequences: transcription factor binding sites (TFBS) in DNA and O-glycosylation sites in proteins. TFBS are important in various developmental processes and glycosylation is a posttranslational modification critical to protein functions. Methods In the present study, we first transformed the original biological dataset into a suitable binary form. Logic minimization was then applied to generate sets of simple rules to describe the transformed dataset. These rules were used to predict TFBS and O-glycosylation sites. The TFBS dataset is obtained from the TRANSFAC database, while the glycosylation dataset was compiled using information from OGLYCBASE and the Swiss-Prot Database. We performed the same predictions using two standard classification techniques, Artificial Neural Networks (ANN) and Support Vector Machines (SVM), and used their sensitivities and positive predictive values as benchmarks for the performance of our proposed algorithm. SVM were also used to reduce the number of variables included in the logic minimization approach. Results For both TFBS and O-glycosylation sites, the prediction performance of the proposed logic minimization method was generally comparable and, in some cases, superior to the standard ANN and SVM classification methods with the advantage of providing intelligible rules to describe the datasets. In TFBS prediction, logic minimization produced a very small set of simple rules. In glycosylation site prediction, the rules produced were also interpretable and the most popular rules generated appeared to correlate well with recently reported hydrophilic/hydrophobic enhancement values of amino acids around possible O-glycosylation sites. Experiments with Self-Organizing Neural Networks corroborate the practical worth of the logic minimization method for these case studies. Conclusions The proposed logic minimization algorithm provides sets of rules that can be used to predict TFBS and O-glycosylation sites with sensitivity and positive predictive value comparable to those from ANN and SVM. Moreover, the logic minimization method has the additional capability of generating interpretable rules that allow biological scientists to correlate the predictions with other experimental results and to form new hypotheses for further investigation. Additional experiments with alternative rule-extraction techniques demonstrate that the logic minimization method is able to produce accurate rules from datasets with large numbers of variables and limited numbers of positive examples.\"],\"language\":\"eng\",\"subjects\":[\"Research\"],\"creators\":[\"Cruz-Cano, Raul\",\"Lee, Mei-Ling Ting\",\"Leung, Ming-Ying\"],\"publicationdate\":\"2012-08-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"BioData Mining\",\"issn\":\"\",\"eissn\":\"1756-0381\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1756-0381-5-10\",\"type\":\"doi\"},{\"value\":\"PMC3492099\",\"type\":\"pmc\"},{\"value\":\"22897894\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3492099\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.biodatamining.org/content/5/1/10\",\"license\":\"OPEN\",\"hostedby\":\"BioData Mining\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.biodatamining.org/content/5/1/10\",\"license\":\"OPEN\",\"hostedby\":\"BioData Mining\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.biodatamining.org/content/5/1/10\",\"id\":\"oai:doaj.org/article:3763a2ec538f46afa3998263d4afe4f6\"},\"trust\":0.41050506}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2492237"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cruz-Cano, Raul","Lee, Mei-Ling Ting","Leung, Ming-Ying"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:3763a2ec538f46afa3998263d4afe4f6"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research"]},"trust":{"type":"FLOAT","value":0.41050506},"target_publication_title":{"type":"STRING","value":"Logic minimization and rule extraction for identification of functional sites in molecular sequences"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1043069\",\"titles\":[\"The Price of Freedom*\"],\"abstracts\":[\"\"],\"language\":\"eng\",\"subjects\":[\"General Articles and News\"],\"creators\":[\"Walshe, Francis\"],\"publicationdate\":\"1957-12-07\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC1963066\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC1963066\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://cybergeo.revues.org/23628\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://cybergeo.revues.org/23628\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://cybergeo.revues.org/23628\",\"id\":\"oai:doaj.org/article:b70b5c8226214720bbfd54946f54883a\"},\"trust\":0.70598537}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1043069"},"target_publication_author_list":{"type":"LIST_STRING","value":["Walshe, Francis"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:b70b5c8226214720bbfd54946f54883a"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["General Articles and News"]},"trust":{"type":"FLOAT","value":0.70598537},"target_publication_title":{"type":"STRING","value":"The Price of Freedom*"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"1957-12-07"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1043069\",\"titles\":[\"The Price of Freedom*\"],\"abstracts\":[\"\",\"Founded in April 1996, the journal Cybergeo is fifteen years old. Multilingual, European, it is now first among the francophone geography journals in the number of visitors to its site (330,000 in 2010, with 30 new articles published, and more than 500 articles since its creation). All of this while remaining in Open Access, free, and holding to very high standards of quality in the work that it puts online. This success has a price: the journal exists thanks to the support of the CNRS, which...\"],\"language\":\"eng\",\"subjects\":[\"General Articles and News\"],\"creators\":[\"Walshe, Francis\"],\"publicationdate\":\"1957-12-07\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC1963066\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC1963066\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"Founded in April 1996, the journal Cybergeo is fifteen years old. Multilingual, European, it is now first among the francophone geography journals in the number of visitors to its site (330,000 in 2010, with 30 new articles published, and more than 500 articles since its creation). All of this while remaining in Open Access, free, and holding to very high standards of quality in the work that it puts online. This success has a price: the journal exists thanks to the support of the CNRS, which...\"]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://cybergeo.revues.org/23628\",\"id\":\"oai:doaj.org/article:b70b5c8226214720bbfd54946f54883a\"},\"trust\":0.9663267}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1043069"},"target_publication_author_list":{"type":"LIST_STRING","value":["Walshe, Francis"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:b70b5c8226214720bbfd54946f54883a"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["General Articles and News"]},"trust":{"type":"FLOAT","value":0.9663267},"target_publication_title":{"type":"STRING","value":"The Price of Freedom*"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"1957-12-07"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00251076\",\"titles\":[\"SOUND PROPAGATION IN RANDOM MEDIA. Backscattering correction to the multiple forward scattering theory\"],\"abstracts\":[\"The Parabolic Equation Method (PEM) is the commonly used method to deal with wave propagation in random media. This method basically requires the small ratio of wave length to correlation length (small angle scattering). Recently, de Wolf/2/ and Rino/3/ extended the PEM by including the backscattered wave, retaining the small angle scattering. In his dissertation, Groβe/4/ generalized the PEM to the case of forward wide angle scattering. In this paper, a further generalization leads to a solution for the first moment of the scalar Helmholtz equation without any restriction concerning the scattering angles.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\"],\"creators\":[\"Li, B.\",\"Grosse, R.\",\"Mellert, V.\"],\"publicationdate\":\"1992-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jp4:19921120\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00251076\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00251076\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00251076\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00251076\",\"id\":\"oai:HAL:jpa-00251076v1\"},\"trust\":0.3355512}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00251076"},"target_publication_author_list":{"type":"LIST_STRING","value":["Li, B.","Grosse, R.","Mellert, V."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00251076v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens"]},"trust":{"type":"FLOAT","value":0.3355512},"target_publication_title":{"type":"STRING","value":"SOUND PROPAGATION IN RANDOM MEDIA. Backscattering correction to the multiple forward scattering theory"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1992-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00251076v1\",\"titles\":[\"SOUND PROPAGATION IN RANDOM MEDIA. Backscattering correction to the multiple forward scattering theory\"],\"abstracts\":[\"The Parabolic Equation Method (PEM) is the commonly used method to deal with wave propagation in random media. This method basically requires the small ratio of wave length to correlation length (small angle scattering). Recently, de Wolf/2/ and Rino/3/ extended the PEM by including the backscattered wave, retaining the small angle scattering. In his dissertation, Groβe/4/ generalized the PEM to the case of forward wide angle scattering. In this paper, a further generalization leads to a solution for the first moment of the scalar Helmholtz equation without any restriction concerning the scattering angles.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Li, B.\",\"Grosse, R.\",\"Mellert, V.\"],\"publicationdate\":\"1992-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jp4:19921120\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00251076\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00251076\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00251076\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00251076\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00251076\"},\"trust\":0.31879646}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00251076v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Li, B.","Grosse, R.","Mellert, V."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00251076"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.31879646},"target_publication_title":{"type":"STRING","value":"SOUND PROPAGATION IN RANDOM MEDIA. Backscattering correction to the multiple forward scattering theory"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1992-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:aes:infoec:v:13:y:2009:i:2:p:20-31\",\"titles\":[\"Web Content Management Systems, a Collaborative Environment in the Information Society\"],\"abstracts\":[\"The aim of the present paper is to analyze the main models of collaboration and the use of a Web CMS, in order to develop an online community. Taking into consideration the multitude of the existing Web CMSs on the market and their diverse functionalities, we conducted a prospective study that tests the development trends in the field, with the view of finding out which are the most important Web CMSs in practice, and which are the most important functionalities they have to possess, in order to develop a collaborative online community. The results of the study show that the most popular Web CMS is Joomla, and the most widespread programming language is PHP. Likewise, we consider that this study can help the entry-level web developers to get an overview of the most popular Web CMSs, and their functionalities.\"],\"language\":\"und\",\"subjects\":[\"collaboration, content management, web content management systems\"],\"creators\":[\"Mican, Daniel\",\"Tomai, Nicolae\",\"Coros, Robert Ioan\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Informatica Economica\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://revistaie.ase.ro/content/50/003%20-%20Mican.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://revistaie.ase.ro/content/50/003%20-%20Mican.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Informatica Economica Journal\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://revistaie.ase.ro/content/50/003%20-%20Mican.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Informatica Economica Journal\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://revistaie.ase.ro/content/50/003%20-%20Mican.pdf\",\"id\":\"oai:doaj.org/article:8e818c28b92c4730bc5068cd878eb432\"},\"trust\":0.09239286}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:aes:infoec:v:13:y:2009:i:2:p:20-31"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mican, Daniel","Tomai, Nicolae","Coros, Robert Ioan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:8e818c28b92c4730bc5068cd878eb432"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collaboration, content management, web content management systems"]},"trust":{"type":"FLOAT","value":0.09239286},"target_publication_title":{"type":"STRING","value":"Web Content Management Systems, a Collaborative Environment in the Information Society"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3647885\",\"titles\":[\"Joint preserved reconstruction after curettage in giant cell tumor of bone arising in the distal radius: Case report\"],\"abstracts\":[\"Highlights • Giant cell tumor of bone is a locally aggressive tumor. • Preserved joint reconstruction for tumors in the distal radius is challenging. • To preserve the joint, we developed a new reconstruction technique using β-tricalcium phosphate (TCP) with strong compressive resistance. • Function remains excellent, without any complications.\",\"Introduction Giant cell tumor of bone is a locally aggressive tumor. Preserved joint reconstruction for tumors in the distal radius is challenging, especially when there is extraosseous extension and less subarticular bone. Presentation of case To preserve the joint, we developed a new reconstruction technique using β-tricalcium phosphate (TCP) with strong compressive resistance. Discussion and conclusion Giant cell tumor of bone in the distal radius was treated by curettage and bone grafting, plus the use of β-TCP. This new method will preserve joint junction.\"],\"language\":\"eng\",\"subjects\":[\"Case Report\",\"TCP, tricalcium phosphate\",\"MRI, magnetic resonance imaging\",\"CT, computed tomography\",\"Giant cell tumor of bone\",\"Distal radius\",\"β-Tricalcium phosphate (β-TCP)\"],\"creators\":[\"Sakamoto, Akio\"],\"publicationdate\":\"2015-10-01\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"International Journal of Surgery Case Reports\",\"issn\":\"\",\"eissn\":\"2210-2612\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1016/j.ijscr.2015.10.007\",\"type\":\"doi\"},{\"value\":\"PMC4643479\",\"type\":\"pmc\"},{\"value\":\"26492357\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4643479\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.sciencedirect.com/science/article/pii/S2210261215004435\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.sciencedirect.com/science/article/pii/S2210261215004435\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.sciencedirect.com/science/article/pii/S2210261215004435\",\"id\":\"oai:doaj.org/article:1fe10d634e2f4ef2ab2d98f9af9671c5\"},\"trust\":0.314754}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3647885"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sakamoto, Akio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:1fe10d634e2f4ef2ab2d98f9af9671c5"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Case Report","TCP, tricalcium phosphate","MRI, magnetic resonance imaging","CT, computed tomography","Giant cell tumor of bone","Distal radius","β-Tricalcium phosphate (β-TCP)"]},"trust":{"type":"FLOAT","value":0.314754},"target_publication_title":{"type":"STRING","value":"Joint preserved reconstruction after curettage in giant cell tumor of bone arising in the distal radius: Case report"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2015-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.tue.nl:433618\",\"titles\":[\"Comment to European patent 0020829\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Ramaekers, Jah\"],\"publicationdate\":\"1984-01-01\",\"publisher\":\"Technische Hogeschool Eindhoven\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repository TU/e\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.tue.nl/433618\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"External research report\"},{\"url\":\"http://repository.tue.nl/433618\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.tue.nl/433618\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.tue.nl/433618\",\"id\":\"tue:oai:library.tue.nl:433618\"},\"trust\":0.7391789}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repository TU/e"},"target_publication_id":{"type":"STRING","value":"oai:library.tue.nl:433618"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ramaekers, Jah"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tue:oai:library.tue.nl:433618"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.7391789},"target_publication_title":{"type":"STRING","value":"Comment to European patent 0020829"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1984-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::99c5e07b4d5de9d18c350cdf64c5aa3d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:lirmm-00108788v1\",\"titles\":[\"A Simple Linear-Time Modular Decomposition Algorithm\"],\"abstracts\":[\"International audience\",\"A Simple Linear-Time Modular Decomposition Algorithm\"],\"language\":\"eng\",\"subjects\":[\"[INFO.INFO-OH] Computer Science/Other\"],\"creators\":[\"Habib, M.\",\"Montgolfier, F.\",\"Paul, Christophe\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire d\\u0027Informatique de Robotique et de Microélectronique de Montpellier (LIRMM) ; Université Montpellier II - Sciences et techniques - CNRS\",\"INFO/ALGCO ; Laboratoire d\\u0027Informatique de Robotique et de Microélectronique de Montpellier (LIRMM) ; Université Montpellier II - Sciences et techniques - CNRS - Université Montpellier II - Sciences et techniques - CNRS\",\"Hagerup T.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal-lirmm.ccsd.cnrs.fr/lirmm-00108788\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal-lirmm.ccsd.cnrs.fr/lirmm-00108788\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-lirmm.ccsd.cnrs.fr/lirmm-00108788\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-lirmm.ccsd.cnrs.fr/lirmm-00108788\",\"id\":\"oai:hal-lirmm.ccsd.cnrs.fr:lirmm-00108788\"},\"trust\":0.4468652}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:lirmm-00108788v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Habib, M.","Montgolfier, F.","Paul, Christophe"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal-lirmm.ccsd.cnrs.fr:lirmm-00108788"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO.INFO-OH] Computer Science/Other"]},"trust":{"type":"FLOAT","value":0.4468652},"target_publication_title":{"type":"STRING","value":"A Simple Linear-Time Modular Decomposition Algorithm"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal-lirmm.ccsd.cnrs.fr:lirmm-00108788\",\"titles\":[\"A Simple Linear-Time Modular Decomposition Algorithm\"],\"abstracts\":[\"A Simple Linear-Time Modular Decomposition Algorithm\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_OH] Computer Science/Other\",\"[INFO:INFO_OH] Informatique/Autre\"],\"creators\":[\"Habib, M.\",\"Montgolfier, F.\",\"Paul, Christophe\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal-lirmm.ccsd.cnrs.fr/lirmm-00108788\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"http://hal-lirmm.ccsd.cnrs.fr/lirmm-00108788\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-lirmm.ccsd.cnrs.fr/lirmm-00108788\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-lirmm.ccsd.cnrs.fr/lirmm-00108788\",\"id\":\"oai:HAL:lirmm-00108788v1\"},\"trust\":0.4517228}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal-lirmm.ccsd.cnrs.fr:lirmm-00108788"},"target_publication_author_list":{"type":"LIST_STRING","value":["Habib, M.","Montgolfier, F.","Paul, Christophe"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:lirmm-00108788v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_OH] Computer Science/Other","[INFO:INFO_OH] Informatique/Autre"]},"trust":{"type":"FLOAT","value":0.4517228},"target_publication_title":{"type":"STRING","value":"A Simple Linear-Time Modular Decomposition Algorithm"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:repositorio.ipl.pt:10400.21/2484\",\"titles\":[\"Effects of fungal contamination on respiratory symptoms of poultry workers\"],\"abstracts\":[\"Exposure to certain fungi (molds) can cause human illness by 3 specific mechanisms: generation of a harmful immune response, direct infection by the organism or/and toxic-irritant effects from mold byproducts. Moulds are considered central elements in daily exposure of poultry workers and can be the cause of an increased risk of occupational respiratory diseases, like allergic and non-allergic rhinitis and asthma.\"],\"language\":\"eng\",\"subjects\":[\"Environmental health\",\"Occupational health\",\"Fungal contamination\",\"Poultry\",\"Fungi\",\"Asthma\",\"Rhinitis\"],\"creators\":[\"Faísca, Vanessa Mateus\",\"Carolino, Elisabete\",\"Sabino, Raquel\",\"Veríssimo, C.\",\"Viegas, Carla\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repositório Científico do Instituto Politécnico de Lisboa\"],\"pids\":[{\"value\":\"10.1111/j.1439-0507.2012.02206.x/pdf\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/10400.21/2484\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico do Instituto Politécnico de Lisboa\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1111/j.1439-0507.2012.02206.x/pdf\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Repositório Científico do Instituto Politécnico de Lisboa\",\"url\":\"http://hdl.handle.net/10400.21/2511\",\"id\":\"oai:repositorio.ipl.pt:10400.21/2511\"},\"trust\":0.059703648}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repositório Científico do Instituto Politécnico de Lisboa"},"target_publication_id":{"type":"STRING","value":"oai:repositorio.ipl.pt:10400.21/2484"},"target_publication_author_list":{"type":"LIST_STRING","value":["Faísca, Vanessa Mateus","Carolino, Elisabete","Sabino, Raquel","Veríssimo, C.","Viegas, Carla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repositorio.ipl.pt:10400.21/2511"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ce758408f6ef98d7c7a7b786eca7b3a8"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Environmental health","Occupational health","Fungal contamination","Poultry","Fungi","Asthma","Rhinitis"]},"trust":{"type":"FLOAT","value":0.059703648},"target_publication_title":{"type":"STRING","value":"Effects of fungal contamination on respiratory symptoms of poultry workers"},"provenance_datasource_name":{"type":"STRING","value":"Repositório Científico do Instituto Politécnico de Lisboa"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ce758408f6ef98d7c7a7b786eca7b3a8"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:repositorio.ipl.pt:10400.21/2484\",\"titles\":[\"Effects of fungal contamination on respiratory symptoms of poultry workers\"],\"abstracts\":[\"Exposure to certain fungi (molds) can cause human illness by 3 specific mechanisms: generation of a harmful immune response, direct infection by the organism or/and toxic-irritant effects from mold byproducts. Moulds are considered central elements in daily exposure of poultry workers and can be the cause of an increased risk of occupational respiratory diseases, like allergic and non-allergic rhinitis and asthma.\"],\"language\":\"eng\",\"subjects\":[\"Environmental health\",\"Occupational health\",\"Fungal contamination\",\"Poultry\",\"Fungi\",\"Asthma\",\"Rhinitis\"],\"creators\":[\"Faísca, Vanessa Mateus\",\"Carolino, Elisabete\",\"Sabino, Raquel\",\"Veríssimo, C.\",\"Viegas, Carla\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repositório Científico do Instituto Politécnico de Lisboa\"],\"pids\":[{\"value\":\"10.1111/j.1439-0507.2012.02206.x/pdf\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/10400.21/2484\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico do Instituto Politécnico de Lisboa\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1111/j.1439-0507.2012.02206.x/pdf\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Repositório Científico do Instituto Politécnico de Lisboa\",\"url\":\"http://hdl.handle.net/10400.21/2511\",\"id\":\"oai:repositorio.ipl.pt:10400.21/2511\"},\"trust\":0.059703648}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repositório Científico do Instituto Politécnico de Lisboa"},"target_publication_id":{"type":"STRING","value":"oai:repositorio.ipl.pt:10400.21/2484"},"target_publication_author_list":{"type":"LIST_STRING","value":["Faísca, Vanessa Mateus","Carolino, Elisabete","Sabino, Raquel","Veríssimo, C.","Viegas, Carla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repositorio.ipl.pt:10400.21/2511"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ce758408f6ef98d7c7a7b786eca7b3a8"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Environmental health","Occupational health","Fungal contamination","Poultry","Fungi","Asthma","Rhinitis"]},"trust":{"type":"FLOAT","value":0.059703648},"target_publication_title":{"type":"STRING","value":"Effects of fungal contamination on respiratory symptoms of poultry workers"},"provenance_datasource_name":{"type":"STRING","value":"Repositório Científico do Instituto Politécnico de Lisboa"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ce758408f6ef98d7c7a7b786eca7b3a8"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repositorio.ipl.pt:10400.21/2484\",\"titles\":[\"Effects of fungal contamination on respiratory symptoms of poultry workers\"],\"abstracts\":[\"Exposure to certain fungi (molds) can cause human illness by 3 specific mechanisms: generation of a harmful immune response, direct infection by the organism or/and toxic-irritant effects from mold byproducts. Moulds are considered central elements in daily exposure of poultry workers and can be the cause of an increased risk of occupational respiratory diseases, like allergic and non-allergic rhinitis and asthma.\"],\"language\":\"eng\",\"subjects\":[\"Environmental health\",\"Occupational health\",\"Fungal contamination\",\"Poultry\",\"Fungi\",\"Asthma\",\"Rhinitis\"],\"creators\":[\"Faísca, Vanessa Mateus\",\"Carolino, Elisabete\",\"Sabino, Raquel\",\"Veríssimo, C.\",\"Viegas, Carla\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repositório Científico do Instituto Politécnico de Lisboa\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10400.21/2484\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico do Instituto Politécnico de Lisboa\",\"instancetype\":\"Conference object\"},{\"url\":\"http://hdl.handle.net/10400.21/2511\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico do Instituto Politécnico de Lisboa\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10400.21/2511\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico do Instituto Politécnico de Lisboa\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"Repositório Científico do Instituto Politécnico de Lisboa\",\"url\":\"http://hdl.handle.net/10400.21/2511\",\"id\":\"oai:repositorio.ipl.pt:10400.21/2511\"},\"trust\":0.44882315}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repositório Científico do Instituto Politécnico de Lisboa"},"target_publication_id":{"type":"STRING","value":"oai:repositorio.ipl.pt:10400.21/2484"},"target_publication_author_list":{"type":"LIST_STRING","value":["Faísca, Vanessa Mateus","Carolino, Elisabete","Sabino, Raquel","Veríssimo, C.","Viegas, Carla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repositorio.ipl.pt:10400.21/2511"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ce758408f6ef98d7c7a7b786eca7b3a8"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Environmental health","Occupational health","Fungal contamination","Poultry","Fungi","Asthma","Rhinitis"]},"trust":{"type":"FLOAT","value":0.44882315},"target_publication_title":{"type":"STRING","value":"Effects of fungal contamination on respiratory symptoms of poultry workers"},"provenance_datasource_name":{"type":"STRING","value":"Repositório Científico do Instituto Politécnico de Lisboa"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ce758408f6ef98d7c7a7b786eca7b3a8"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repositorio.ipl.pt:10400.21/2511\",\"titles\":[\"Effects of fungal contamination on respiratory symptoms of poultry workers\"],\"abstracts\":[\"Moulds are considered central elements in daily exposure of poultry workers and can be the cause of an increased risk of occupational respiratory diseases, like allergic and non-allergic rhinitis and asthma. The objective is to evaluate the exposure to different species of moulds in poultries and relate them with respiratory symptoms in poultry workers. Seven Portuguese poultries were analyzed in order to assess air fungal contamination, as well as to evaluate the existence of clinical symptoms associated with asthma and other allergy diseases by European Community Respiratory Health Survey questionnaire.\"],\"language\":\"eng\",\"subjects\":[\"Environmental health\",\"Occupational health\",\"Fungal contamination\",\"Poultry\",\"Farmers\",\"Respiratory diseases\",\"Asthma\",\"Portugal\"],\"creators\":[\"Faísca, Vanessa Mateus\",\"Carolino, Elisabete\",\"Sabino, Raquel\",\"Veríssimo, Cristina\",\"Viegas, Carla\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"Wiley\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repositório Científico do Instituto Politécnico de Lisboa\"],\"pids\":[{\"value\":\"10.1111/j.1439-0507.2012.02206.x/pdf\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/10400.21/2511\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico do Instituto Politécnico de Lisboa\",\"instancetype\":\"Conference object\"},{\"url\":\"http://hdl.handle.net/10400.21/2484\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico do Instituto Politécnico de Lisboa\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10400.21/2484\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico do Instituto Politécnico de Lisboa\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"Repositório Científico do Instituto Politécnico de Lisboa\",\"url\":\"http://hdl.handle.net/10400.21/2484\",\"id\":\"oai:repositorio.ipl.pt:10400.21/2484\"},\"trust\":0.3293541}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repositório Científico do Instituto Politécnico de Lisboa"},"target_publication_id":{"type":"STRING","value":"oai:repositorio.ipl.pt:10400.21/2511"},"target_publication_author_list":{"type":"LIST_STRING","value":["Faísca, Vanessa Mateus","Carolino, Elisabete","Sabino, Raquel","Veríssimo, Cristina","Viegas, Carla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repositorio.ipl.pt:10400.21/2484"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ce758408f6ef98d7c7a7b786eca7b3a8"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Environmental health","Occupational health","Fungal contamination","Poultry","Farmers","Respiratory diseases","Asthma","Portugal"]},"trust":{"type":"FLOAT","value":0.3293541},"target_publication_title":{"type":"STRING","value":"Effects of fungal contamination on respiratory symptoms of poultry workers"},"provenance_datasource_name":{"type":"STRING","value":"Repositório Científico do Instituto Politécnico de Lisboa"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ce758408f6ef98d7c7a7b786eca7b3a8"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:tin:wpaper:20090079\",\"titles\":[\"Defining European Wholesale Electricity Markets: An “And/Or” Approach\"],\"abstracts\":[\"An important question in the dynamic European wholesale markets for electricity is whether to define the geographical market at the level of an individual member state or more broadly. We show that if we currently take the traditional approach by considering for each member state whether there is one single other country that provides a substitute for domestic production, the market in each separate member state has still to be considered a separate market. However, if we allow for the possibility that at different moments in time there is another country that provides a substitute for domestic production, then the conclusion should be that certain member states do not constitute a separate geographical market. This is in particular true for Belgium, but also for The Netherlands, France, and to some extent also for Germany and Austria. We call this alternative approach the \\\"and/or\\\" approach.\"],\"language\":\"und\",\"subjects\":[\"Electricity, convergence, market definition, market coupling\"],\"creators\":[\"Elbert Dijkgraaf\",\"Janssen, Maarten C. W.\"],\"publicationdate\":\"2009-09-14\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/1765/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1765/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1765/16812\",\"id\":\"eur:oai:repub.eur.nl:16812\"},\"trust\":0.65698874}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:tin:wpaper:20090079"},"target_publication_author_list":{"type":"LIST_STRING","value":["Elbert Dijkgraaf","Janssen, Maarten C. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["eur:oai:repub.eur.nl:16812"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Electricity, convergence, market definition, market coupling"]},"trust":{"type":"FLOAT","value":0.65698874},"target_publication_title":{"type":"STRING","value":"Defining European Wholesale Electricity Markets: An “And/Or” Approach"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:tin:wpaper:20090079\",\"titles\":[\"Defining European Wholesale Electricity Markets: An “And/Or” Approach\"],\"abstracts\":[\"An important question in the dynamic European wholesale markets for electricity is whether to define the geographical market at the level of an individual member state or more broadly. We show that if we currently take the traditional approach by considering for each member state whether there is one single other country that provides a substitute for domestic production, the market in each separate member state has still to be considered a separate market. However, if we allow for the possibility that at different moments in time there is another country that provides a substitute for domestic production, then the conclusion should be that certain member states do not constitute a separate geographical market. This is in particular true for Belgium, but also for The Netherlands, France, and to some extent also for Germany and Austria. We call this alternative approach the \\\"and/or\\\" approach.\"],\"language\":\"und\",\"subjects\":[\"Electricity, convergence, market definition, market coupling\"],\"creators\":[\"Elbert Dijkgraaf\",\"Janssen, Maarten C. W.\"],\"publicationdate\":\"2009-09-14\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/87047\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/87047\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/87047\",\"id\":\"oai:econstor.eu:10419/87047\"},\"trust\":0.051635027}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:tin:wpaper:20090079"},"target_publication_author_list":{"type":"LIST_STRING","value":["Elbert Dijkgraaf","Janssen, Maarten C. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/87047"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Electricity, convergence, market definition, market coupling"]},"trust":{"type":"FLOAT","value":0.051635027},"target_publication_title":{"type":"STRING","value":"Defining European Wholesale Electricity Markets: An “And/Or” Approach"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:tin:wpaper:20090079\",\"titles\":[\"Defining European Wholesale Electricity Markets: An “And/Or” Approach\"],\"abstracts\":[\"An important question in the dynamic European wholesale markets for electricity is whether to define the geographical market at the level of an individual member state or more broadly. We show that if we currently take the traditional approach by considering for each member state whether there is one single other country that provides a substitute for domestic production, the market in each separate member state has still to be considered a separate market. However, if we allow for the possibility that at different moments in time there is another country that provides a substitute for domestic production, then the conclusion should be that certain member states do not constitute a separate geographical market. This is in particular true for Belgium, but also for The Netherlands, France, and to some extent also for Germany and Austria. We call this alternative approach the \\\"and/or\\\" approach.\"],\"language\":\"und\",\"subjects\":[\"Electricity, convergence, market definition, market coupling\"],\"creators\":[\"Elbert Dijkgraaf\",\"Janssen, Maarten C. W.\"],\"publicationdate\":\"2009-09-14\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://repub.eur.nl/pub/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repub.eur.nl/pub/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Erasmus University Institutional Repository\",\"url\":\"http://repub.eur.nl/pub/16812\",\"id\":\"oai:repub.eur.nl:16812\"},\"trust\":0.89273727}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:tin:wpaper:20090079"},"target_publication_author_list":{"type":"LIST_STRING","value":["Elbert Dijkgraaf","Janssen, Maarten C. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repub.eur.nl:16812"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9c3b1830513cc3b8fc4b76635d32e692"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Electricity, convergence, market definition, market coupling"]},"trust":{"type":"FLOAT","value":0.89273727},"target_publication_title":{"type":"STRING","value":"Defining European Wholesale Electricity Markets: An “And/Or” Approach"},"provenance_datasource_name":{"type":"STRING","value":"Erasmus University Institutional Repository"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:tin:wpaper:20090079\",\"titles\":[\"Defining European Wholesale Electricity Markets: An “And/Or” Approach\"],\"abstracts\":[\"An important question in the dynamic European wholesale markets for electricity is whether to define the geographical market at the level of an individual member state or more broadly. We show that if we currently take the traditional approach by considering for each member state whether there is one single other country that provides a substitute for domestic production, the market in each separate member state has still to be considered a separate market. However, if we allow for the possibility that at different moments in time there is another country that provides a substitute for domestic production, then the conclusion should be that certain member states do not constitute a separate geographical market. This is in particular true for Belgium, but also for The Netherlands, France, and to some extent also for Germany and Austria. We call this alternative approach the \\\"and/or\\\" approach.\"],\"language\":\"und\",\"subjects\":[\"Electricity, convergence, market definition, market coupling\"],\"creators\":[\"Elbert Dijkgraaf\",\"Janssen, Maarten C. W.\"],\"publicationdate\":\"2009-09-14\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"id\":\"oai:RePEc:dgr:uvatin:20090079\"},\"trust\":0.7999135}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:tin:wpaper:20090079"},"target_publication_author_list":{"type":"LIST_STRING","value":["Elbert Dijkgraaf","Janssen, Maarten C. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:dgr:uvatin:20090079"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Electricity, convergence, market definition, market coupling"]},"trust":{"type":"FLOAT","value":0.7999135},"target_publication_title":{"type":"STRING","value":"Defining European Wholesale Electricity Markets: An “And/Or” Approach"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/87047\",\"titles\":[\"Defining European Wholesale Electricity Markets: An “And/Or” Approach\"],\"abstracts\":[\"An important question in the dynamic European wholesale markets for electricity is whether to define the geographical market at the level of an individual member state or more broadly. We show that if we currently take the traditional approach by considering for each member state whether there is one single other country that provides a substitute for domestic production, the market in each separate member state has still to be considered a separate market. However, if we allow for the possibility that at different moments in time there is another country that provides a substitute for domestic production, then the conclusion should be that certain member states do not constitute a separate geographical market. This is in particular true for Belgium, but also for The Netherlands, France, and to some extent also for Germany and Austria. We call this alternative approach the and/or approach.\"],\"language\":\"eng\",\"subjects\":[\"L94\",\"L40\",\"ddc:330\",\"Electricity\",\"convergence\",\"market definition\",\"market coupling\",\"Energiemarkt\",\"Marktgröße\",\"EU-Staaten\"],\"creators\":[\"Dijkgraaf, Elbert\",\"Janssen, Maarten C. W.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"Tinbergen Institute Amsterdam and Rotterdam\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/87047\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/1765/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1765/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1765/16812\",\"id\":\"eur:oai:repub.eur.nl:16812\"},\"trust\":0.41611487}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/87047"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dijkgraaf, Elbert","Janssen, Maarten C. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["eur:oai:repub.eur.nl:16812"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["L94","L40","ddc:330","Electricity","convergence","market definition","market coupling","Energiemarkt","Marktgröße","EU-Staaten"]},"trust":{"type":"FLOAT","value":0.41611487},"target_publication_title":{"type":"STRING","value":"Defining European Wholesale Electricity Markets: An “And/Or” Approach"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/87047\",\"titles\":[\"Defining European Wholesale Electricity Markets: An “And/Or” Approach\"],\"abstracts\":[\"An important question in the dynamic European wholesale markets for electricity is whether to define the geographical market at the level of an individual member state or more broadly. We show that if we currently take the traditional approach by considering for each member state whether there is one single other country that provides a substitute for domestic production, the market in each separate member state has still to be considered a separate market. However, if we allow for the possibility that at different moments in time there is another country that provides a substitute for domestic production, then the conclusion should be that certain member states do not constitute a separate geographical market. This is in particular true for Belgium, but also for The Netherlands, France, and to some extent also for Germany and Austria. We call this alternative approach the and/or approach.\"],\"language\":\"eng\",\"subjects\":[\"L94\",\"L40\",\"ddc:330\",\"Electricity\",\"convergence\",\"market definition\",\"market coupling\",\"Energiemarkt\",\"Marktgröße\",\"EU-Staaten\"],\"creators\":[\"Dijkgraaf, Elbert\",\"Janssen, Maarten C. W.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"Tinbergen Institute Amsterdam and Rotterdam\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/87047\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"id\":\"oai:RePEc:tin:wpaper:20090079\"},\"trust\":0.37819147}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/87047"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dijkgraaf, Elbert","Janssen, Maarten C. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:tin:wpaper:20090079"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["L94","L40","ddc:330","Electricity","convergence","market definition","market coupling","Energiemarkt","Marktgröße","EU-Staaten"]},"trust":{"type":"FLOAT","value":0.37819147},"target_publication_title":{"type":"STRING","value":"Defining European Wholesale Electricity Markets: An “And/Or” Approach"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/87047\",\"titles\":[\"Defining European Wholesale Electricity Markets: An “And/Or” Approach\"],\"abstracts\":[\"An important question in the dynamic European wholesale markets for electricity is whether to define the geographical market at the level of an individual member state or more broadly. We show that if we currently take the traditional approach by considering for each member state whether there is one single other country that provides a substitute for domestic production, the market in each separate member state has still to be considered a separate market. However, if we allow for the possibility that at different moments in time there is another country that provides a substitute for domestic production, then the conclusion should be that certain member states do not constitute a separate geographical market. This is in particular true for Belgium, but also for The Netherlands, France, and to some extent also for Germany and Austria. We call this alternative approach the and/or approach.\"],\"language\":\"eng\",\"subjects\":[\"L94\",\"L40\",\"ddc:330\",\"Electricity\",\"convergence\",\"market definition\",\"market coupling\",\"Energiemarkt\",\"Marktgröße\",\"EU-Staaten\"],\"creators\":[\"Dijkgraaf, Elbert\",\"Janssen, Maarten C. W.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"Tinbergen Institute Amsterdam and Rotterdam\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/87047\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://repub.eur.nl/pub/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repub.eur.nl/pub/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Erasmus University Institutional Repository\",\"url\":\"http://repub.eur.nl/pub/16812\",\"id\":\"oai:repub.eur.nl:16812\"},\"trust\":0.36038005}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/87047"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dijkgraaf, Elbert","Janssen, Maarten C. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repub.eur.nl:16812"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9c3b1830513cc3b8fc4b76635d32e692"},"target_publication_subject_list":{"type":"LIST_STRING","value":["L94","L40","ddc:330","Electricity","convergence","market definition","market coupling","Energiemarkt","Marktgröße","EU-Staaten"]},"trust":{"type":"FLOAT","value":0.36038005},"target_publication_title":{"type":"STRING","value":"Defining European Wholesale Electricity Markets: An “And/Or” Approach"},"provenance_datasource_name":{"type":"STRING","value":"Erasmus University Institutional Repository"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/87047\",\"titles\":[\"Defining European Wholesale Electricity Markets: An “And/Or” Approach\"],\"abstracts\":[\"An important question in the dynamic European wholesale markets for electricity is whether to define the geographical market at the level of an individual member state or more broadly. We show that if we currently take the traditional approach by considering for each member state whether there is one single other country that provides a substitute for domestic production, the market in each separate member state has still to be considered a separate market. However, if we allow for the possibility that at different moments in time there is another country that provides a substitute for domestic production, then the conclusion should be that certain member states do not constitute a separate geographical market. This is in particular true for Belgium, but also for The Netherlands, France, and to some extent also for Germany and Austria. We call this alternative approach the and/or approach.\"],\"language\":\"eng\",\"subjects\":[\"L94\",\"L40\",\"ddc:330\",\"Electricity\",\"convergence\",\"market definition\",\"market coupling\",\"Energiemarkt\",\"Marktgröße\",\"EU-Staaten\"],\"creators\":[\"Dijkgraaf, Elbert\",\"Janssen, Maarten C. W.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"Tinbergen Institute Amsterdam and Rotterdam\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/87047\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"id\":\"oai:RePEc:dgr:uvatin:20090079\"},\"trust\":0.39454442}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/87047"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dijkgraaf, Elbert","Janssen, Maarten C. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:dgr:uvatin:20090079"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["L94","L40","ddc:330","Electricity","convergence","market definition","market coupling","Energiemarkt","Marktgröße","EU-Staaten"]},"trust":{"type":"FLOAT","value":0.39454442},"target_publication_title":{"type":"STRING","value":"Defining European Wholesale Electricity Markets: An “And/Or” Approach"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repub.eur.nl:16812\",\"titles\":[\"Defining European Wholesale Electricity Markets: An “And/Or” Approach\"],\"abstracts\":[\"An important question in the dynamic European wholesale markets for electricity is whether to define the geographical market at the level of an individual member state or more broadly. We show that if we currently take the traditional approach by considering for each member state whether there is one single other country that provides a substitute for domestic production, the market in each separate member state has still to be considered a separate market. However, if we allow for the possibility that at different moments in time there is another country that provides a substitute for domestic production, then the conclusion should be that certain member states do not constitute a separate geographical market. This is in particular true for Belgium, but also for The Netherlands, France, and to some extent also for Germany and Austria. We call this alternative approach the \\\"and/or\\\" approach.\"],\"language\":\"eng\",\"subjects\":[\"convergence\",\"electricity\",\"market coupling\",\"market definition\"],\"creators\":[\"Dijkgraaf, E.\",\"Janssen, M. C. W.\"],\"publicationdate\":\"2009-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Erasmus University Institutional Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repub.eur.nl/pub/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/1765/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1765/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1765/16812\",\"id\":\"eur:oai:repub.eur.nl:16812\"},\"trust\":0.56188995}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Erasmus University Institutional Repository"},"target_publication_id":{"type":"STRING","value":"oai:repub.eur.nl:16812"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dijkgraaf, E.","Janssen, M. C. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["eur:oai:repub.eur.nl:16812"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["convergence","electricity","market coupling","market definition"]},"trust":{"type":"FLOAT","value":0.56188995},"target_publication_title":{"type":"STRING","value":"Defining European Wholesale Electricity Markets: An “And/Or” Approach"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9c3b1830513cc3b8fc4b76635d32e692"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repub.eur.nl:16812\",\"titles\":[\"Defining European Wholesale Electricity Markets: An “And/Or” Approach\"],\"abstracts\":[\"An important question in the dynamic European wholesale markets for electricity is whether to define the geographical market at the level of an individual member state or more broadly. We show that if we currently take the traditional approach by considering for each member state whether there is one single other country that provides a substitute for domestic production, the market in each separate member state has still to be considered a separate market. However, if we allow for the possibility that at different moments in time there is another country that provides a substitute for domestic production, then the conclusion should be that certain member states do not constitute a separate geographical market. This is in particular true for Belgium, but also for The Netherlands, France, and to some extent also for Germany and Austria. We call this alternative approach the \\\"and/or\\\" approach.\"],\"language\":\"eng\",\"subjects\":[\"convergence\",\"electricity\",\"market coupling\",\"market definition\"],\"creators\":[\"Dijkgraaf, E.\",\"Janssen, M. C. W.\"],\"publicationdate\":\"2009-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Erasmus University Institutional Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repub.eur.nl/pub/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"},{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"id\":\"oai:RePEc:tin:wpaper:20090079\"},\"trust\":0.6973374}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Erasmus University Institutional Repository"},"target_publication_id":{"type":"STRING","value":"oai:repub.eur.nl:16812"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dijkgraaf, E.","Janssen, M. C. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:tin:wpaper:20090079"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["convergence","electricity","market coupling","market definition"]},"trust":{"type":"FLOAT","value":0.6973374},"target_publication_title":{"type":"STRING","value":"Defining European Wholesale Electricity Markets: An “And/Or” Approach"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9c3b1830513cc3b8fc4b76635d32e692"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repub.eur.nl:16812\",\"titles\":[\"Defining European Wholesale Electricity Markets: An “And/Or” Approach\"],\"abstracts\":[\"An important question in the dynamic European wholesale markets for electricity is whether to define the geographical market at the level of an individual member state or more broadly. We show that if we currently take the traditional approach by considering for each member state whether there is one single other country that provides a substitute for domestic production, the market in each separate member state has still to be considered a separate market. However, if we allow for the possibility that at different moments in time there is another country that provides a substitute for domestic production, then the conclusion should be that certain member states do not constitute a separate geographical market. This is in particular true for Belgium, but also for The Netherlands, France, and to some extent also for Germany and Austria. We call this alternative approach the \\\"and/or\\\" approach.\"],\"language\":\"eng\",\"subjects\":[\"convergence\",\"electricity\",\"market coupling\",\"market definition\"],\"creators\":[\"Dijkgraaf, E.\",\"Janssen, M. C. W.\"],\"publicationdate\":\"2009-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Erasmus University Institutional Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repub.eur.nl/pub/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/87047\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/87047\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/87047\",\"id\":\"oai:econstor.eu:10419/87047\"},\"trust\":0.11092353}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Erasmus University Institutional Repository"},"target_publication_id":{"type":"STRING","value":"oai:repub.eur.nl:16812"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dijkgraaf, E.","Janssen, M. C. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/87047"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["convergence","electricity","market coupling","market definition"]},"trust":{"type":"FLOAT","value":0.11092353},"target_publication_title":{"type":"STRING","value":"Defining European Wholesale Electricity Markets: An “And/Or” Approach"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9c3b1830513cc3b8fc4b76635d32e692"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repub.eur.nl:16812\",\"titles\":[\"Defining European Wholesale Electricity Markets: An “And/Or” Approach\"],\"abstracts\":[\"An important question in the dynamic European wholesale markets for electricity is whether to define the geographical market at the level of an individual member state or more broadly. We show that if we currently take the traditional approach by considering for each member state whether there is one single other country that provides a substitute for domestic production, the market in each separate member state has still to be considered a separate market. However, if we allow for the possibility that at different moments in time there is another country that provides a substitute for domestic production, then the conclusion should be that certain member states do not constitute a separate geographical market. This is in particular true for Belgium, but also for The Netherlands, France, and to some extent also for Germany and Austria. We call this alternative approach the \\\"and/or\\\" approach.\"],\"language\":\"eng\",\"subjects\":[\"convergence\",\"electricity\",\"market coupling\",\"market definition\"],\"creators\":[\"Dijkgraaf, E.\",\"Janssen, M. C. W.\"],\"publicationdate\":\"2009-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Erasmus University Institutional Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repub.eur.nl/pub/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"},{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"id\":\"oai:RePEc:dgr:uvatin:20090079\"},\"trust\":0.99973875}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Erasmus University Institutional Repository"},"target_publication_id":{"type":"STRING","value":"oai:repub.eur.nl:16812"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dijkgraaf, E.","Janssen, M. C. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:dgr:uvatin:20090079"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["convergence","electricity","market coupling","market definition"]},"trust":{"type":"FLOAT","value":0.99973875},"target_publication_title":{"type":"STRING","value":"Defining European Wholesale Electricity Markets: An “And/Or” Approach"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9c3b1830513cc3b8fc4b76635d32e692"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:dgr:uvatin:20090079\",\"titles\":[\"Defining European Wholesale Electricity Markets: An “And/Or” Approach\"],\"abstracts\":[\"An important question in the dynamic European wholesale markets for electricity is whether to define the geographical market at the level of an individual member state or more broadly. We show that if we currently take the traditional approach by considering for each member state whether there is one single other country that provides a substitute for domestic production, the market in each separate member state has still to be considered a separate market. However, if we allow for the possibility that at different moments in time there is another country that provides a substitute for domestic production, then the conclusion should be that certain member states do not constitute a separate geographical market. This is in particular true for Belgium, but also for The Netherlands, France, and to some extent also for Germany and Austria. We call this alternative approach the \\\"and/or\\\" approach.\"],\"language\":\"und\",\"subjects\":[\"Electricity, convergence, market definition, market coupling\"],\"creators\":[\"Elbert Dijkgraaf\",\"Janssen, Maarten C. W.\"],\"publicationdate\":\"2009-09-14\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/1765/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1765/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1765/16812\",\"id\":\"eur:oai:repub.eur.nl:16812\"},\"trust\":0.2664163}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:dgr:uvatin:20090079"},"target_publication_author_list":{"type":"LIST_STRING","value":["Elbert Dijkgraaf","Janssen, Maarten C. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["eur:oai:repub.eur.nl:16812"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Electricity, convergence, market definition, market coupling"]},"trust":{"type":"FLOAT","value":0.2664163},"target_publication_title":{"type":"STRING","value":"Defining European Wholesale Electricity Markets: An “And/Or” Approach"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:dgr:uvatin:20090079\",\"titles\":[\"Defining European Wholesale Electricity Markets: An “And/Or” Approach\"],\"abstracts\":[\"An important question in the dynamic European wholesale markets for electricity is whether to define the geographical market at the level of an individual member state or more broadly. We show that if we currently take the traditional approach by considering for each member state whether there is one single other country that provides a substitute for domestic production, the market in each separate member state has still to be considered a separate market. However, if we allow for the possibility that at different moments in time there is another country that provides a substitute for domestic production, then the conclusion should be that certain member states do not constitute a separate geographical market. This is in particular true for Belgium, but also for The Netherlands, France, and to some extent also for Germany and Austria. We call this alternative approach the \\\"and/or\\\" approach.\"],\"language\":\"und\",\"subjects\":[\"Electricity, convergence, market definition, market coupling\"],\"creators\":[\"Elbert Dijkgraaf\",\"Janssen, Maarten C. W.\"],\"publicationdate\":\"2009-09-14\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"id\":\"oai:RePEc:tin:wpaper:20090079\"},\"trust\":0.77154267}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:dgr:uvatin:20090079"},"target_publication_author_list":{"type":"LIST_STRING","value":["Elbert Dijkgraaf","Janssen, Maarten C. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:tin:wpaper:20090079"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Electricity, convergence, market definition, market coupling"]},"trust":{"type":"FLOAT","value":0.77154267},"target_publication_title":{"type":"STRING","value":"Defining European Wholesale Electricity Markets: An “And/Or” Approach"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:dgr:uvatin:20090079\",\"titles\":[\"Defining European Wholesale Electricity Markets: An “And/Or” Approach\"],\"abstracts\":[\"An important question in the dynamic European wholesale markets for electricity is whether to define the geographical market at the level of an individual member state or more broadly. We show that if we currently take the traditional approach by considering for each member state whether there is one single other country that provides a substitute for domestic production, the market in each separate member state has still to be considered a separate market. However, if we allow for the possibility that at different moments in time there is another country that provides a substitute for domestic production, then the conclusion should be that certain member states do not constitute a separate geographical market. This is in particular true for Belgium, but also for The Netherlands, France, and to some extent also for Germany and Austria. We call this alternative approach the \\\"and/or\\\" approach.\"],\"language\":\"und\",\"subjects\":[\"Electricity, convergence, market definition, market coupling\"],\"creators\":[\"Elbert Dijkgraaf\",\"Janssen, Maarten C. W.\"],\"publicationdate\":\"2009-09-14\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/87047\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/87047\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/87047\",\"id\":\"oai:econstor.eu:10419/87047\"},\"trust\":0.6012145}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:dgr:uvatin:20090079"},"target_publication_author_list":{"type":"LIST_STRING","value":["Elbert Dijkgraaf","Janssen, Maarten C. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/87047"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Electricity, convergence, market definition, market coupling"]},"trust":{"type":"FLOAT","value":0.6012145},"target_publication_title":{"type":"STRING","value":"Defining European Wholesale Electricity Markets: An “And/Or” Approach"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:dgr:uvatin:20090079\",\"titles\":[\"Defining European Wholesale Electricity Markets: An “And/Or” Approach\"],\"abstracts\":[\"An important question in the dynamic European wholesale markets for electricity is whether to define the geographical market at the level of an individual member state or more broadly. We show that if we currently take the traditional approach by considering for each member state whether there is one single other country that provides a substitute for domestic production, the market in each separate member state has still to be considered a separate market. However, if we allow for the possibility that at different moments in time there is another country that provides a substitute for domestic production, then the conclusion should be that certain member states do not constitute a separate geographical market. This is in particular true for Belgium, but also for The Netherlands, France, and to some extent also for Germany and Austria. We call this alternative approach the \\\"and/or\\\" approach.\"],\"language\":\"und\",\"subjects\":[\"Electricity, convergence, market definition, market coupling\"],\"creators\":[\"Elbert Dijkgraaf\",\"Janssen, Maarten C. W.\"],\"publicationdate\":\"2009-09-14\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://papers.tinbergen.nl/09079.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://repub.eur.nl/pub/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repub.eur.nl/pub/16812\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Erasmus University Institutional Repository\",\"url\":\"http://repub.eur.nl/pub/16812\",\"id\":\"oai:repub.eur.nl:16812\"},\"trust\":0.029067278}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:dgr:uvatin:20090079"},"target_publication_author_list":{"type":"LIST_STRING","value":["Elbert Dijkgraaf","Janssen, Maarten C. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repub.eur.nl:16812"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9c3b1830513cc3b8fc4b76635d32e692"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Electricity, convergence, market definition, market coupling"]},"trust":{"type":"FLOAT","value":0.029067278},"target_publication_title":{"type":"STRING","value":"Defining European Wholesale Electricity Markets: An “And/Or” Approach"},"provenance_datasource_name":{"type":"STRING","value":"Erasmus University Institutional Repository"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:localhost:10336/3797\",\"titles\":[\"El \\u0027metagrafo\\u0027 entre los mentefactos y los mapas mentales: una estrategia para el aprendizaje de la toma de decisiones profesionales en fisioterapia\"],\"abstracts\":[],\"language\":\"esl/spa\",\"subjects\":[\"PUBLICACIONES UNIVERSITARIAS ? INVESTIGACIONES - BOGOTA (COLOMBIA)\",\"PUBLICACIONES ACADEMICAS ? INVESTIGACIONES - BOGOTA (COLOMBIA)\",\"EDUCACION SUPERIOR ? INVESTIGACIONES - BOGOTA (COLOMBIA) ? PUBLICACIONES SERIADAS\",\"UNIVERSIDAD DEL ROSARIO ? INVESTIGACIONES ? BOGOTA (COLOMBIA) ? PUBLICACIONES SERIADAS\",\"FISIOTERAPIA - INVESTIGACIONES\",\"MEDICINA - INVESTIGACIONES\",\"Aprendizaje\",\"Educaci?n superior\",\"Fisioterapia ? Formaci?n profesional\",\"Fisioterapia ? Toma de decisiones\",\"Inteligencia\",\"Mapeo conceptual\",\"M?todos de ense?anza - Esquemas\"],\"creators\":[\"Forero Nieto, Sandra Liliana\",\"D Az Castillo, Luz Ngela\",\"Universidad Del Rosario, Escuela Medicina Y. Ciencias La Salud\"],\"publicationdate\":\"2010-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"edocUR\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10336/3797\",\"license\":\"OPEN\",\"hostedby\":\"edocUR\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10336/3797\",\"license\":\"OPEN\",\"hostedby\":\"edocUR\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10336/3797\",\"license\":\"OPEN\",\"hostedby\":\"edocUR\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"edocUR\",\"url\":\"http://hdl.handle.net/10336/3797\",\"id\":\"oai:repository.urosario.edu.co:10336/3797\"},\"trust\":0.37433863}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"edocUR"},"target_publication_id":{"type":"STRING","value":"oai:localhost:10336/3797"},"target_publication_author_list":{"type":"LIST_STRING","value":["Forero Nieto, Sandra Liliana","D Az Castillo, Luz Ngela","Universidad Del Rosario, Escuela Medicina Y. Ciencias La Salud"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repository.urosario.edu.co:10336/3797"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::3546ab441e56fa333f8b44b610d95691"},"target_publication_subject_list":{"type":"LIST_STRING","value":["PUBLICACIONES UNIVERSITARIAS ? INVESTIGACIONES - BOGOTA (COLOMBIA)","PUBLICACIONES ACADEMICAS ? INVESTIGACIONES - BOGOTA (COLOMBIA)","EDUCACION SUPERIOR ? INVESTIGACIONES - BOGOTA (COLOMBIA) ? PUBLICACIONES SERIADAS","UNIVERSIDAD DEL ROSARIO ? INVESTIGACIONES ? BOGOTA (COLOMBIA) ? PUBLICACIONES SERIADAS","FISIOTERAPIA - INVESTIGACIONES","MEDICINA - INVESTIGACIONES","Aprendizaje","Educaci?n superior","Fisioterapia ? Formaci?n profesional","Fisioterapia ? Toma de decisiones","Inteligencia","Mapeo conceptual","M?todos de ense?anza - Esquemas"]},"trust":{"type":"FLOAT","value":0.37433863},"target_publication_title":{"type":"STRING","value":"El \u0027metagrafo\u0027 entre los mentefactos y los mapas mentales: una estrategia para el aprendizaje de la toma de decisiones profesionales en fisioterapia"},"provenance_datasource_name":{"type":"STRING","value":"edocUR"},"target_dateofacceptance":{"type":"DATE","value":"2010-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::3546ab441e56fa333f8b44b610d95691"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:localhost:10336/3797\",\"titles\":[\"El \\u0027metagrafo\\u0027 entre los mentefactos y los mapas mentales: una estrategia para el aprendizaje de la toma de decisiones profesionales en fisioterapia\"],\"abstracts\":[\"2145-4744\"],\"language\":\"esl/spa\",\"subjects\":[\"PUBLICACIONES UNIVERSITARIAS ? INVESTIGACIONES - BOGOTA (COLOMBIA)\",\"PUBLICACIONES ACADEMICAS ? INVESTIGACIONES - BOGOTA (COLOMBIA)\",\"EDUCACION SUPERIOR ? INVESTIGACIONES - BOGOTA (COLOMBIA) ? PUBLICACIONES SERIADAS\",\"UNIVERSIDAD DEL ROSARIO ? INVESTIGACIONES ? BOGOTA (COLOMBIA) ? PUBLICACIONES SERIADAS\",\"FISIOTERAPIA - INVESTIGACIONES\",\"MEDICINA - INVESTIGACIONES\",\"Aprendizaje\",\"Educaci?n superior\",\"Fisioterapia ? Formaci?n profesional\",\"Fisioterapia ? Toma de decisiones\",\"Inteligencia\",\"Mapeo conceptual\",\"M?todos de ense?anza - Esquemas\"],\"creators\":[\"Forero Nieto, Sandra Liliana\",\"D Az Castillo, Luz Ngela\",\"Universidad Del Rosario, Escuela Medicina Y. Ciencias La Salud\"],\"publicationdate\":\"2010-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"edocUR\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10336/3797\",\"license\":\"OPEN\",\"hostedby\":\"edocUR\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"2145-4744\"]},\"provenance\":{\"repositoryName\":\"edocUR\",\"url\":\"http://hdl.handle.net/10336/3797\",\"id\":\"oai:repository.urosario.edu.co:10336/3797\"},\"trust\":0.9837162}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"edocUR"},"target_publication_id":{"type":"STRING","value":"oai:localhost:10336/3797"},"target_publication_author_list":{"type":"LIST_STRING","value":["Forero Nieto, Sandra Liliana","D Az Castillo, Luz Ngela","Universidad Del Rosario, Escuela Medicina Y. Ciencias La Salud"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repository.urosario.edu.co:10336/3797"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::3546ab441e56fa333f8b44b610d95691"},"target_publication_subject_list":{"type":"LIST_STRING","value":["PUBLICACIONES UNIVERSITARIAS ? INVESTIGACIONES - BOGOTA (COLOMBIA)","PUBLICACIONES ACADEMICAS ? INVESTIGACIONES - BOGOTA (COLOMBIA)","EDUCACION SUPERIOR ? INVESTIGACIONES - BOGOTA (COLOMBIA) ? PUBLICACIONES SERIADAS","UNIVERSIDAD DEL ROSARIO ? INVESTIGACIONES ? BOGOTA (COLOMBIA) ? PUBLICACIONES SERIADAS","FISIOTERAPIA - INVESTIGACIONES","MEDICINA - INVESTIGACIONES","Aprendizaje","Educaci?n superior","Fisioterapia ? Formaci?n profesional","Fisioterapia ? Toma de decisiones","Inteligencia","Mapeo conceptual","M?todos de ense?anza - Esquemas"]},"trust":{"type":"FLOAT","value":0.9837162},"target_publication_title":{"type":"STRING","value":"El \u0027metagrafo\u0027 entre los mentefactos y los mapas mentales: una estrategia para el aprendizaje de la toma de decisiones profesionales en fisioterapia"},"provenance_datasource_name":{"type":"STRING","value":"edocUR"},"target_dateofacceptance":{"type":"DATE","value":"2010-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::3546ab441e56fa333f8b44b610d95691"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.urosario.edu.co:10336/3797\",\"titles\":[\"El \\u0027metagrafo\\u0027 entre los mentefactos y los mapas mentales: una estrategia para el aprendizaje de la toma de decisiones profesionales en fisioterapia\"],\"abstracts\":[\"2145-4744\"],\"language\":\"esl/spa\",\"subjects\":[\"Aprendizaje\",\"Educación superior\",\"Fisioterapia – Formación profesional\",\"Fisioterapia – Toma de decisiones\",\"Inteligencia\",\"Mapeo conceptual\",\"Métodos de enseñanza - Esquemas\",\"PUBLICACIONES UNIVERSITARIAS – INVESTIGACIONES - BOGOTA (COLOMBIA)\",\"PUBLICACIONES ACADEMICAS – INVESTIGACIONES - BOGOTA (COLOMBIA)\",\"EDUCACION SUPERIOR – INVESTIGACIONES - BOGOTA (COLOMBIA) – PUBLICACIONES SERIADAS\",\"UNIVERSIDAD DEL ROSARIO – INVESTIGACIONES – BOGOTA (COLOMBIA) – PUBLICACIONES SERIADAS\",\"FISIOTERAPIA - INVESTIGACIONES\",\"MEDICINA - INVESTIGACIONES\"],\"creators\":[\"Forero Nieto, Sandra Liliana\",\"Díaz Castillo, Luz Ángela\",\"Universidad Del Rosario, Escuela Medicina Y. Ciencias La Salud\"],\"publicationdate\":\"2010-09-01\",\"publisher\":\"Universidad del Rosario\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"edocUR\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10336/3797\",\"license\":\"OPEN\",\"hostedby\":\"edocUR\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hdl.handle.net/10336/3797\",\"license\":\"OPEN\",\"hostedby\":\"edocUR\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10336/3797\",\"license\":\"OPEN\",\"hostedby\":\"edocUR\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"edocUR\",\"url\":\"http://hdl.handle.net/10336/3797\",\"id\":\"oai:localhost:10336/3797\"},\"trust\":0.6119047}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"edocUR"},"target_publication_id":{"type":"STRING","value":"oai:repository.urosario.edu.co:10336/3797"},"target_publication_author_list":{"type":"LIST_STRING","value":["Forero Nieto, Sandra Liliana","Díaz Castillo, Luz Ángela","Universidad Del Rosario, Escuela Medicina Y. Ciencias La Salud"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:localhost:10336/3797"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::3546ab441e56fa333f8b44b610d95691"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Aprendizaje","Educación superior","Fisioterapia – Formación profesional","Fisioterapia – Toma de decisiones","Inteligencia","Mapeo conceptual","Métodos de enseñanza - Esquemas","PUBLICACIONES UNIVERSITARIAS – INVESTIGACIONES - BOGOTA (COLOMBIA)","PUBLICACIONES ACADEMICAS – INVESTIGACIONES - BOGOTA (COLOMBIA)","EDUCACION SUPERIOR – INVESTIGACIONES - BOGOTA (COLOMBIA) – PUBLICACIONES SERIADAS","UNIVERSIDAD DEL ROSARIO – INVESTIGACIONES – BOGOTA (COLOMBIA) – PUBLICACIONES SERIADAS","FISIOTERAPIA - INVESTIGACIONES","MEDICINA - INVESTIGACIONES"]},"trust":{"type":"FLOAT","value":0.6119047},"target_publication_title":{"type":"STRING","value":"El \u0027metagrafo\u0027 entre los mentefactos y los mapas mentales: una estrategia para el aprendizaje de la toma de decisiones profesionales en fisioterapia"},"provenance_datasource_name":{"type":"STRING","value":"edocUR"},"target_dateofacceptance":{"type":"DATE","value":"2010-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::3546ab441e56fa333f8b44b610d95691"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dare.ubvu.vu.nl:1871/21810\",\"titles\":[\"Een bescheiden wetenschap\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Groot, H. L. F.\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at VU\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/1871/21810\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1871/21810\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1871/21810\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1871/21810\",\"id\":\"vu:oai:dare.ubvu.vu.nl:1871/21810\"},\"trust\":0.16288054}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_publication_id":{"type":"STRING","value":"oai:dare.ubvu.vu.nl:1871/21810"},"target_publication_author_list":{"type":"LIST_STRING","value":["Groot, H. L. F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["vu:oai:dare.ubvu.vu.nl:1871/21810"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.16288054},"target_publication_title":{"type":"STRING","value":"Een bescheiden wetenschap"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00255338v1\",\"titles\":[\"A Detailed Study of the Metallic Function of Bimetallic Platinum-Rhodium Post Combustion Catalysts by X.A.S., M.E.T. : Correlations with their Catalytic Activity\"],\"abstracts\":[\"In automobile catalytic converters, the reaction between carbon oxide (CO) and nitrogen oxides (NOx) over Pt-containing catalyst particle is done in order to obtain CO2 and NO2. In this paper, we report a stuctural characterization of the metallic part of a bimetallic Pt-Rh catalyst conducted thrugh the combined use of three characterization techniques i.e. X-ray absorption spectroscopy (Exafs) and high resolution micmscopy by transmission (STEM). Based on all these results, a coherent model seems to distinguish two families of metallic cluster. One is made of nanometric size Pt clusters for which the diameter is less than the nanometer. The second one, made of Pt and Rh atoms has a diameter more important. For this second one, the repartition of the metals is not statistic. It seems that platinum is at the core of the cluster, the surface being composed by a mixture of Pt and Rh atoms.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Bazin, D.\",\"Maire, F.\",\"Schneider, S.\",\"Meunier, G.\",\"Garin, F.\",\"Maire, G.\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jp4:1997255\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00255338\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00255338\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00255338\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00255338\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00255338\"},\"trust\":0.8995562}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00255338v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bazin, D.","Maire, F.","Schneider, S.","Meunier, G.","Garin, F.","Maire, G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00255338"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.8995562},"target_publication_title":{"type":"STRING","value":"A Detailed Study of the Metallic Function of Bimetallic Platinum-Rhodium Post Combustion Catalysts by X.A.S., M.E.T. : Correlations with their Catalytic Activity"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00255338\",\"titles\":[\"A Detailed Study of the Metallic Function of Bimetallic Platinum-Rhodium Post Combustion Catalysts by X.A.S., M.E.T. : Correlations with their Catalytic Activity\"],\"abstracts\":[\"In automobile catalytic converters, the reaction between carbon oxide (CO) and nitrogen oxides (NOx) over Pt-containing catalyst particle is done in order to obtain CO2 and NO2. In this paper, we report a stuctural characterization of the metallic part of a bimetallic Pt-Rh catalyst conducted thrugh the combined use of three characterization techniques i.e. X-ray absorption spectroscopy (Exafs) and high resolution micmscopy by transmission (STEM). Based on all these results, a coherent model seems to distinguish two families of metallic cluster. One is made of nanometric size Pt clusters for which the diameter is less than the nanometer. The second one, made of Pt and Rh atoms has a diameter more important. For this second one, the repartition of the metals is not statistic. It seems that platinum is at the core of the cluster, the surface being composed by a mixture of Pt and Rh atoms.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\"],\"creators\":[\"Bazin, D.\",\"Maire, F.\",\"Schneider, S.\",\"Meunier, G.\",\"Garin, F.\",\"Maire, G.\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jp4:1997255\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00255338\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00255338\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00255338\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00255338\",\"id\":\"oai:HAL:jpa-00255338v1\"},\"trust\":0.7285395}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00255338"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bazin, D.","Maire, F.","Schneider, S.","Meunier, G.","Garin, F.","Maire, G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00255338v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens"]},"trust":{"type":"FLOAT","value":0.7285395},"target_publication_title":{"type":"STRING","value":"A Detailed Study of the Metallic Function of Bimetallic Platinum-Rhodium Post Combustion Catalysts by X.A.S., M.E.T. : Correlations with their Catalytic Activity"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00800497v1\",\"titles\":[\"New modular multiplication and division algorithms based on continued fraction expansion\"],\"abstracts\":[\"In this paper, we apply results on number systems based on continued fraction expansions to modular arithmetic. We provide two new algorithms in order to compute modular multiplication and modular division. The presented algorithms are based on the Euclidean algorithm and are of quadratic complexity.\"],\"language\":\"eng\",\"subjects\":[\"Modular arithmetic\",\"Continued fraction\",\"Euclidean algorithm\",\"Ostrowski number system\",\"G.1.0\",\"[INFO.INFO-AO] Computer Science/Computer Arithmetic\"],\"creators\":[\"Gouicem, Mourad\"],\"publicationdate\":\"2013-03-13\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire d\\u0027Informatique de Paris 6 (LIP6) ; Université Pierre et Marie Curie (UPMC) - Paris VI - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00800497\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/1303.3445\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1303.3445\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1303.3445\",\"id\":\"oai:arXiv.org:1303.3445\"},\"trust\":0.69149387}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00800497v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gouicem, Mourad"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1303.3445"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Modular arithmetic","Continued fraction","Euclidean algorithm","Ostrowski number system","G.1.0","[INFO.INFO-AO] Computer Science/Computer Arithmetic"]},"trust":{"type":"FLOAT","value":0.69149387},"target_publication_title":{"type":"STRING","value":"New modular multiplication and division algorithms based on continued fraction expansion"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00800497v1\",\"titles\":[\"New modular multiplication and division algorithms based on continued fraction expansion\"],\"abstracts\":[\"In this paper, we apply results on number systems based on continued fraction expansions to modular arithmetic. We provide two new algorithms in order to compute modular multiplication and modular division. The presented algorithms are based on the Euclidean algorithm and are of quadratic complexity.\"],\"language\":\"eng\",\"subjects\":[\"Modular arithmetic\",\"Continued fraction\",\"Euclidean algorithm\",\"Ostrowski number system\",\"G.1.0\",\"[INFO.INFO-AO] Computer Science/Computer Arithmetic\"],\"creators\":[\"Gouicem, Mourad\"],\"publicationdate\":\"2013-03-13\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire d\\u0027Informatique de Paris 6 (LIP6) ; Université Pierre et Marie Curie (UPMC) - Paris VI - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00800497\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00800497\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00800497\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00800497\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00800497\"},\"trust\":0.9424363}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00800497v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gouicem, Mourad"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00800497"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Modular arithmetic","Continued fraction","Euclidean algorithm","Ostrowski number system","G.1.0","[INFO.INFO-AO] Computer Science/Computer Arithmetic"]},"trust":{"type":"FLOAT","value":0.9424363},"target_publication_title":{"type":"STRING","value":"New modular multiplication and division algorithms based on continued fraction expansion"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1303.3445\",\"titles\":[\"New modular multiplication and division algorithms based on continued fraction expansion\"],\"abstracts\":[\" In this paper, we apply results on number systems based on continued fraction\\nexpansions to modular arithmetic. We provide two new algorithms in order to\\ncompute modular multiplication and modular division. The presented algorithms\\nare based on the Euclidean algorithm and are of quadratic complexity.\\n\"],\"language\":\"eng\",\"subjects\":[\"Computer Science - Data Structures and Algorithms\",\"Computer Science - Symbolic Computation\",\"G.1.0\"],\"creators\":[\"Gouicem, Mourad\"],\"publicationdate\":\"2013-03-14\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/1303.3445\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00800497\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00800497\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00800497\",\"id\":\"oai:HAL:hal-00800497v1\"},\"trust\":0.15094721}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1303.3445"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gouicem, Mourad"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00800497v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Computer Science - Data Structures and Algorithms","Computer Science - Symbolic Computation","G.1.0"]},"trust":{"type":"FLOAT","value":0.15094721},"target_publication_title":{"type":"STRING","value":"New modular multiplication and division algorithms based on continued fraction expansion"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1303.3445\",\"titles\":[\"New modular multiplication and division algorithms based on continued fraction expansion\"],\"abstracts\":[\" In this paper, we apply results on number systems based on continued fraction\\nexpansions to modular arithmetic. We provide two new algorithms in order to\\ncompute modular multiplication and modular division. The presented algorithms\\nare based on the Euclidean algorithm and are of quadratic complexity.\\n\"],\"language\":\"eng\",\"subjects\":[\"Computer Science - Data Structures and Algorithms\",\"Computer Science - Symbolic Computation\",\"G.1.0\"],\"creators\":[\"Gouicem, Mourad\"],\"publicationdate\":\"2013-03-14\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/1303.3445\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00800497\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00800497\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00800497\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00800497\"},\"trust\":0.346727}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1303.3445"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gouicem, Mourad"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00800497"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Computer Science - Data Structures and Algorithms","Computer Science - Symbolic Computation","G.1.0"]},"trust":{"type":"FLOAT","value":0.346727},"target_publication_title":{"type":"STRING","value":"New modular multiplication and division algorithms based on continued fraction expansion"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00800497\",\"titles\":[\"New modular multiplication and division algorithms based on continued fraction expansion\"],\"abstracts\":[\"In this paper, we apply results on number systems based on continued fraction expansions to modular arithmetic. We provide two new algorithms in order to compute modular multiplication and modular division. The presented algorithms are based on the Euclidean algorithm and are of quadratic complexity.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_AO] Computer Science/Computer Arithmetic\",\"[INFO:INFO_AO] Informatique/Arithmétique des ordinateurs\",\"Modular arithmetic\",\"Continued fraction\",\"Euclidean algorithm\",\"Ostrowski number system\"],\"creators\":[\"Gouicem, Mourad\"],\"publicationdate\":\"2013-03-13\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00800497\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00800497\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00800497\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00800497\",\"id\":\"oai:HAL:hal-00800497v1\"},\"trust\":0.29572302}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00800497"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gouicem, Mourad"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00800497v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_AO] Computer Science/Computer Arithmetic","[INFO:INFO_AO] Informatique/Arithmétique des ordinateurs","Modular arithmetic","Continued fraction","Euclidean algorithm","Ostrowski number system"]},"trust":{"type":"FLOAT","value":0.29572302},"target_publication_title":{"type":"STRING","value":"New modular multiplication and division algorithms based on continued fraction expansion"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00800497\",\"titles\":[\"New modular multiplication and division algorithms based on continued fraction expansion\"],\"abstracts\":[\"In this paper, we apply results on number systems based on continued fraction expansions to modular arithmetic. We provide two new algorithms in order to compute modular multiplication and modular division. The presented algorithms are based on the Euclidean algorithm and are of quadratic complexity.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_AO] Computer Science/Computer Arithmetic\",\"[INFO:INFO_AO] Informatique/Arithmétique des ordinateurs\",\"Modular arithmetic\",\"Continued fraction\",\"Euclidean algorithm\",\"Ostrowski number system\"],\"creators\":[\"Gouicem, Mourad\"],\"publicationdate\":\"2013-03-13\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00800497\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"},{\"url\":\"http://arxiv.org/abs/1303.3445\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1303.3445\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1303.3445\",\"id\":\"oai:arXiv.org:1303.3445\"},\"trust\":0.5926717}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00800497"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gouicem, Mourad"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1303.3445"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_AO] Computer Science/Computer Arithmetic","[INFO:INFO_AO] Informatique/Arithmétique des ordinateurs","Modular arithmetic","Continued fraction","Euclidean algorithm","Ostrowski number system"]},"trust":{"type":"FLOAT","value":0.5926717},"target_publication_title":{"type":"STRING","value":"New modular multiplication and division algorithms based on continued fraction expansion"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00713860v1\",\"titles\":[\"An Optimal Arc Consistency Algorithm for a Chain of Atmost Constraints with Cardinality\"],\"abstracts\":[\"International audience\",\"The ATMOSTSEQCARD constraint is the conjunction of a cardinality constraint on a sequence of n variables and of n - q + 1 constraints ATMOST u on each subsequence of size q. This constraint is useful in car-sequencing and crew-rostering problems. In [18], two algorithms designed for the AMONGSEQ constraint were adapted to this constraint with a O(2^q n) and O(n^3) worst case time complexity, respectively. In [10], another algorithm with a O(n2 log n) worst case time complexity and similarly adaptable to filter ATMOSTSEQCARD in O(n log n) was proposed. In this paper, we introduce an algorithm for achieving Arc Consistency on the ATMOSTSEQCARD constraint with a O(n) (hence optimal) worst case time complexity. We then empirically study the efficiency of our propagator on instances of the car-sequencing and crew-rostering problems.\"],\"language\":\"eng\",\"subjects\":[\"[INFO.INFO-AI] Computer Science/Artificial Intelligence\",\"[INFO.INFO-RO] Computer Science/Operations Research\"],\"creators\":[\"Siala, Mohamed\",\"Hebrard, Emmanuel\",\"Huguet, Marie-José\"],\"publicationdate\":\"2012-10-08\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"LAAS-MOGISA ; Laboratoire d\\u0027analyse et d\\u0027architecture des systèmes [Toulouse] (LAAS) ; CNRS - Université Paul Sabatier (UPS) - Toulouse III - Institut National Polytechnique de Toulouse - INPT - Institut National des Sciences Appliquées [INSA] - Toulouse - CNRS - Université Paul Sabatier (UPS) - Toulouse III - Institut National Polytechnique de Toulouse - INPT - Institut National des Sciences Appliquées [INSA] - Toulouse\",\"Michela Milano\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/978-3-642-33558-7_7\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00713860\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00713860\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00713860\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00713860\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00713860\"},\"trust\":0.50862145}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00713860v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Siala, Mohamed","Hebrard, Emmanuel","Huguet, Marie-José"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00713860"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO.INFO-AI] Computer Science/Artificial Intelligence","[INFO.INFO-RO] Computer Science/Operations Research"]},"trust":{"type":"FLOAT","value":0.50862145},"target_publication_title":{"type":"STRING","value":"An Optimal Arc Consistency Algorithm for a Chain of Atmost Constraints with Cardinality"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-10-08"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00713860\",\"titles\":[\"An Optimal Arc Consistency Algorithm for a Chain of Atmost Constraints with Cardinality\"],\"abstracts\":[\"The ATMOSTSEQCARD constraint is the conjunction of a cardinality constraint on a sequence of n variables and of n - q + 1 constraints ATMOST u on each subsequence of size q. This constraint is useful in car-sequencing and crew-rostering problems. In [18], two algorithms designed for the AMONGSEQ constraint were adapted to this constraint with a O(2^q n) and O(n^3) worst case time complexity, respectively. In [10], another algorithm with a O(n2 log n) worst case time complexity and similarly adaptable to filter ATMOSTSEQCARD in O(n log n) was proposed. In this paper, we introduce an algorithm for achieving Arc Consistency on the ATMOSTSEQCARD constraint with a O(n) (hence optimal) worst case time complexity. We then empirically study the efficiency of our propagator on instances of the car-sequencing and crew-rostering problems.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_AI] Computer Science/Artificial Intelligence\",\"[INFO:INFO_AI] Informatique/Intelligence artificielle\",\"[INFO:INFO_RO] Computer Science/Operations Research\",\"[INFO:INFO_RO] Informatique/Recherche opérationnelle\"],\"creators\":[\"Siala, Mohamed\",\"Hebrard, Emmanuel\",\"Huguet, Marie-José\"],\"publicationdate\":\"2012-10-08\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/978-3-642-33558-7_7\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00713860\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00713860\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00713860\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00713860\",\"id\":\"oai:HAL:hal-00713860v1\"},\"trust\":0.5621939}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00713860"},"target_publication_author_list":{"type":"LIST_STRING","value":["Siala, Mohamed","Hebrard, Emmanuel","Huguet, Marie-José"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00713860v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_AI] Computer Science/Artificial Intelligence","[INFO:INFO_AI] Informatique/Intelligence artificielle","[INFO:INFO_RO] Computer Science/Operations Research","[INFO:INFO_RO] Informatique/Recherche opérationnelle"]},"trust":{"type":"FLOAT","value":0.5621939},"target_publication_title":{"type":"STRING","value":"An Optimal Arc Consistency Algorithm for a Chain of Atmost Constraints with Cardinality"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-10-08"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1104211\",\"titles\":[\"Highly conserved gene order and numerous novel repetitive elements in genomic regions linked to wing pattern variation in Heliconius butterflies\"],\"abstracts\":[\"Background With over 20 parapatric races differing in their warningly colored wing patterns, the butterfly Heliconius erato provides a fascinating example of an adaptive radiation. Together with matching races of its co-mimic Heliconius melpomene, H. erato also represents a textbook case of Müllerian mimicry, a phenomenon where common warning signals are shared amongst noxious organisms. It is of great interest to identify the specific genes that control the mimetic wing patterns of H. erato and H. melpomene. To this end we have undertaken comparative mapping and targeted genomic sequencing in both species. This paper reports on a comparative analysis of genomic sequences linked to color pattern mimicry genes in Heliconius. Results Scoring AFLP polymorphisms in H. erato broods allowed us to survey loci at approximately 362 kb intervals across the genome. With this strategy we were able to identify markers tightly linked to two color pattern genes: D and Cr, which were then used to screen H. erato BAC libraries in order to identify clones for sequencing. Gene density across 600 kb of BAC sequences appeared relatively low, although the number of predicted open reading frames was typical for an insect. We focused analyses on the D- and Cr-linked H. erato BAC sequences and on the Yb-linked H. melpomene BAC sequence. A comparative analysis between homologous regions of H. erato (Cr-linked BAC) and H. melpomene (Yb-linked BAC) revealed high levels of sequence conservation and microsynteny between the two species. We found that repeated elements constitute 26% and 20% of BAC sequences from H. erato and H. melpomene respectively. The majority of these repetitive sequences appear to be novel, as they showed no significant similarity to any other available insect sequences. We also observed signs of fine scale conservation of gene order between Heliconius and the moth Bombyx mori, suggesting that lepidopteran genome architecture may be conserved over very long evolutionary time scales. Conclusion Here we have demonstrated the tractability of progressing from a genetic linkage map to genomic sequence data in Heliconius butterflies. We have also shown that fine-scale gene order is highly conserved between distantly related Heliconius species, and also between Heliconius and B. mori. Together, these findings suggest that genome structure in macrolepidoptera might be very conserved, and show that mapping and positional cloning efforts in different lepidopteran species can be reciprocally informative.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Papa, Riccardo\",\"Morrison, Clayton M.\",\"Walters, James R.\",\"Counterman, Brian A.\",\"Chen, Rui\",\"Halder, Georg\",\"Ferguson, Laura\",\"Chamberlain, Nicola\",\"Ffrench-Constant, Richard\",\"Kapan, Durrell D.\"],\"publicationdate\":\"2008-07-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"BMC Genomics\",\"issn\":\"\",\"eissn\":\"1471-2164\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1471-2164-9-345\",\"type\":\"doi\"},{\"value\":\"PMC2515155\",\"type\":\"pmc\"},{\"value\":\"18647405\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2515155\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11213320\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11213320\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Digital Access to Scholarship at Harvard\",\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11213320\",\"id\":\"oai:dash.harvard.edu:1/11213320\"},\"trust\":0.9355222}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1104211"},"target_publication_author_list":{"type":"LIST_STRING","value":["Papa, Riccardo","Morrison, Clayton M.","Walters, James R.","Counterman, Brian A.","Chen, Rui","Halder, Georg","Ferguson, Laura","Chamberlain, Nicola","Ffrench-Constant, Richard","Kapan, Durrell D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dash.harvard.edu:1/11213320"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.9355222},"target_publication_title":{"type":"STRING","value":"Highly conserved gene order and numerous novel repetitive elements in genomic regions linked to wing pattern variation in Heliconius butterflies"},"provenance_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_dateofacceptance":{"type":"DATE","value":"2008-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:dash.harvard.edu:1/11213320\",\"titles\":[\"Highly conserved gene order and numerous novel repetitive elements in genomic regions linked to wing pattern variation in Heliconius butterflies\"],\"abstracts\":[\"Background: With over 20 parapatric races differing in their warningly colored wing patterns, the butterfly Heliconius erato provides a fascinating example of an adaptive radiation. Together with matching races of its co-mimic Heliconius melpomene, H. erato also represents a textbook case of Müllerian mimicry, a phenomenon where common warning signals are shared amongst noxious organisms. It is of great interest to identify the specific genes that control the mimetic wing patterns of H. erato and H. melpomene. To this end we have undertaken comparative mapping and targeted genomic sequencing in both species. This paper reports on a comparative analysis of genomic sequences linked to color pattern mimicry genes in Heliconius. Results: Scoring AFLP polymorphisms in H. erato broods allowed us to survey loci at approximately 362 kb intervals across the genome. With this strategy we were able to identify markers tightly linked to two color pattern genes: D and Cr, which were then used to screen H. erato BAC libraries in order to identify clones for sequencing. Gene density across 600 kb of BAC sequences appeared relatively low, although the number of predicted open reading frames was typical for an insect. We focused analyses on the D- and Cr-linked H. erato BAC sequences and on the Yb-linked H. melpomene BAC sequence. A comparative analysis between homologous regions of H. erato (Cr-linked BAC) and H. melpomene (Yb-linked BAC) revealed high levels of sequence conservation and microsynteny between the two species. We found that repeated elements constitute 26% and 20% of BAC sequences from H. erato and H. melpomene respectively. The majority of these repetitive sequences appear to be novel, as they showed no significant similarity to any other available insect sequences. We also observed signs of fine scale conservation of gene order between Heliconius and the moth Bombyx mori, suggesting that lepidopteran genome architecture may be conserved over very long evolutionary time scales. Conclusion: Here we have demonstrated the tractability of progressing from a genetic linkage map to genomic sequence data in Heliconius butterflies. We have also shown that fine-scale gene order is highly conserved between distantly related Heliconius species, and also between Heliconius and B. mori. Together, these findings suggest that genome structure in macrolepidoptera might be very conserved, and show that mapping and positional cloning efforts in different lepidopteran species can be reciprocally informative.\",\"Other Research Unit\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Papa, Riccardo\",\"Morrison, Clayton M.\",\"Walters, James R.\",\"Counterman, Brian A.\",\"Chen, Rui\",\"Halder, Georg\",\"Ferguson, Laura\",\"Ffrench-Constant, Richard\",\"Kapan, Durrell D.\",\"Jiggins, Chris D.\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Digital Access to Scholarship at Harvard\"],\"pids\":[{\"value\":\"10.1186/1471-2164-9-345\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11213320\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1186/1471-2164-9-345\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2515155\",\"id\":\"oai:europepmc.org:1104211\"},\"trust\":0.72640574}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_publication_id":{"type":"STRING","value":"oai:dash.harvard.edu:1/11213320"},"target_publication_author_list":{"type":"LIST_STRING","value":["Papa, Riccardo","Morrison, Clayton M.","Walters, James R.","Counterman, Brian A.","Chen, Rui","Halder, Georg","Ferguson, Laura","Ffrench-Constant, Richard","Kapan, Durrell D.","Jiggins, Chris D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1104211"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.72640574},"target_publication_title":{"type":"STRING","value":"Highly conserved gene order and numerous novel repetitive elements in genomic regions linked to wing pattern variation in Heliconius butterflies"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:dash.harvard.edu:1/11213320\",\"titles\":[\"Highly conserved gene order and numerous novel repetitive elements in genomic regions linked to wing pattern variation in Heliconius butterflies\"],\"abstracts\":[\"Background: With over 20 parapatric races differing in their warningly colored wing patterns, the butterfly Heliconius erato provides a fascinating example of an adaptive radiation. Together with matching races of its co-mimic Heliconius melpomene, H. erato also represents a textbook case of Müllerian mimicry, a phenomenon where common warning signals are shared amongst noxious organisms. It is of great interest to identify the specific genes that control the mimetic wing patterns of H. erato and H. melpomene. To this end we have undertaken comparative mapping and targeted genomic sequencing in both species. This paper reports on a comparative analysis of genomic sequences linked to color pattern mimicry genes in Heliconius. Results: Scoring AFLP polymorphisms in H. erato broods allowed us to survey loci at approximately 362 kb intervals across the genome. With this strategy we were able to identify markers tightly linked to two color pattern genes: D and Cr, which were then used to screen H. erato BAC libraries in order to identify clones for sequencing. Gene density across 600 kb of BAC sequences appeared relatively low, although the number of predicted open reading frames was typical for an insect. We focused analyses on the D- and Cr-linked H. erato BAC sequences and on the Yb-linked H. melpomene BAC sequence. A comparative analysis between homologous regions of H. erato (Cr-linked BAC) and H. melpomene (Yb-linked BAC) revealed high levels of sequence conservation and microsynteny between the two species. We found that repeated elements constitute 26% and 20% of BAC sequences from H. erato and H. melpomene respectively. The majority of these repetitive sequences appear to be novel, as they showed no significant similarity to any other available insect sequences. We also observed signs of fine scale conservation of gene order between Heliconius and the moth Bombyx mori, suggesting that lepidopteran genome architecture may be conserved over very long evolutionary time scales. Conclusion: Here we have demonstrated the tractability of progressing from a genetic linkage map to genomic sequence data in Heliconius butterflies. We have also shown that fine-scale gene order is highly conserved between distantly related Heliconius species, and also between Heliconius and B. mori. Together, these findings suggest that genome structure in macrolepidoptera might be very conserved, and show that mapping and positional cloning efforts in different lepidopteran species can be reciprocally informative.\",\"Other Research Unit\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Papa, Riccardo\",\"Morrison, Clayton M.\",\"Walters, James R.\",\"Counterman, Brian A.\",\"Chen, Rui\",\"Halder, Georg\",\"Ferguson, Laura\",\"Ffrench-Constant, Richard\",\"Kapan, Durrell D.\",\"Jiggins, Chris D.\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Digital Access to Scholarship at Harvard\"],\"pids\":[{\"value\":\"PMC2515155\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11213320\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2515155\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2515155\",\"id\":\"oai:europepmc.org:1104211\"},\"trust\":0.72640574}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_publication_id":{"type":"STRING","value":"oai:dash.harvard.edu:1/11213320"},"target_publication_author_list":{"type":"LIST_STRING","value":["Papa, Riccardo","Morrison, Clayton M.","Walters, James R.","Counterman, Brian A.","Chen, Rui","Halder, Georg","Ferguson, Laura","Ffrench-Constant, Richard","Kapan, Durrell D.","Jiggins, Chris D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1104211"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.72640574},"target_publication_title":{"type":"STRING","value":"Highly conserved gene order and numerous novel repetitive elements in genomic regions linked to wing pattern variation in Heliconius butterflies"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:dash.harvard.edu:1/11213320\",\"titles\":[\"Highly conserved gene order and numerous novel repetitive elements in genomic regions linked to wing pattern variation in Heliconius butterflies\"],\"abstracts\":[\"Background: With over 20 parapatric races differing in their warningly colored wing patterns, the butterfly Heliconius erato provides a fascinating example of an adaptive radiation. Together with matching races of its co-mimic Heliconius melpomene, H. erato also represents a textbook case of Müllerian mimicry, a phenomenon where common warning signals are shared amongst noxious organisms. It is of great interest to identify the specific genes that control the mimetic wing patterns of H. erato and H. melpomene. To this end we have undertaken comparative mapping and targeted genomic sequencing in both species. This paper reports on a comparative analysis of genomic sequences linked to color pattern mimicry genes in Heliconius. Results: Scoring AFLP polymorphisms in H. erato broods allowed us to survey loci at approximately 362 kb intervals across the genome. With this strategy we were able to identify markers tightly linked to two color pattern genes: D and Cr, which were then used to screen H. erato BAC libraries in order to identify clones for sequencing. Gene density across 600 kb of BAC sequences appeared relatively low, although the number of predicted open reading frames was typical for an insect. We focused analyses on the D- and Cr-linked H. erato BAC sequences and on the Yb-linked H. melpomene BAC sequence. A comparative analysis between homologous regions of H. erato (Cr-linked BAC) and H. melpomene (Yb-linked BAC) revealed high levels of sequence conservation and microsynteny between the two species. We found that repeated elements constitute 26% and 20% of BAC sequences from H. erato and H. melpomene respectively. The majority of these repetitive sequences appear to be novel, as they showed no significant similarity to any other available insect sequences. We also observed signs of fine scale conservation of gene order between Heliconius and the moth Bombyx mori, suggesting that lepidopteran genome architecture may be conserved over very long evolutionary time scales. Conclusion: Here we have demonstrated the tractability of progressing from a genetic linkage map to genomic sequence data in Heliconius butterflies. We have also shown that fine-scale gene order is highly conserved between distantly related Heliconius species, and also between Heliconius and B. mori. Together, these findings suggest that genome structure in macrolepidoptera might be very conserved, and show that mapping and positional cloning efforts in different lepidopteran species can be reciprocally informative.\",\"Other Research Unit\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Papa, Riccardo\",\"Morrison, Clayton M.\",\"Walters, James R.\",\"Counterman, Brian A.\",\"Chen, Rui\",\"Halder, Georg\",\"Ferguson, Laura\",\"Ffrench-Constant, Richard\",\"Kapan, Durrell D.\",\"Jiggins, Chris D.\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Digital Access to Scholarship at Harvard\"],\"pids\":[{\"value\":\"18647405\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11213320\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"18647405\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2515155\",\"id\":\"oai:europepmc.org:1104211\"},\"trust\":0.72640574}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_publication_id":{"type":"STRING","value":"oai:dash.harvard.edu:1/11213320"},"target_publication_author_list":{"type":"LIST_STRING","value":["Papa, Riccardo","Morrison, Clayton M.","Walters, James R.","Counterman, Brian A.","Chen, Rui","Halder, Georg","Ferguson, Laura","Ffrench-Constant, Richard","Kapan, Durrell D.","Jiggins, Chris D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1104211"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.72640574},"target_publication_title":{"type":"STRING","value":"Highly conserved gene order and numerous novel repetitive elements in genomic regions linked to wing pattern variation in Heliconius butterflies"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:dash.harvard.edu:1/11213320\",\"titles\":[\"Highly conserved gene order and numerous novel repetitive elements in genomic regions linked to wing pattern variation in Heliconius butterflies\"],\"abstracts\":[\"Background: With over 20 parapatric races differing in their warningly colored wing patterns, the butterfly Heliconius erato provides a fascinating example of an adaptive radiation. Together with matching races of its co-mimic Heliconius melpomene, H. erato also represents a textbook case of Müllerian mimicry, a phenomenon where common warning signals are shared amongst noxious organisms. It is of great interest to identify the specific genes that control the mimetic wing patterns of H. erato and H. melpomene. To this end we have undertaken comparative mapping and targeted genomic sequencing in both species. This paper reports on a comparative analysis of genomic sequences linked to color pattern mimicry genes in Heliconius. Results: Scoring AFLP polymorphisms in H. erato broods allowed us to survey loci at approximately 362 kb intervals across the genome. With this strategy we were able to identify markers tightly linked to two color pattern genes: D and Cr, which were then used to screen H. erato BAC libraries in order to identify clones for sequencing. Gene density across 600 kb of BAC sequences appeared relatively low, although the number of predicted open reading frames was typical for an insect. We focused analyses on the D- and Cr-linked H. erato BAC sequences and on the Yb-linked H. melpomene BAC sequence. A comparative analysis between homologous regions of H. erato (Cr-linked BAC) and H. melpomene (Yb-linked BAC) revealed high levels of sequence conservation and microsynteny between the two species. We found that repeated elements constitute 26% and 20% of BAC sequences from H. erato and H. melpomene respectively. The majority of these repetitive sequences appear to be novel, as they showed no significant similarity to any other available insect sequences. We also observed signs of fine scale conservation of gene order between Heliconius and the moth Bombyx mori, suggesting that lepidopteran genome architecture may be conserved over very long evolutionary time scales. Conclusion: Here we have demonstrated the tractability of progressing from a genetic linkage map to genomic sequence data in Heliconius butterflies. We have also shown that fine-scale gene order is highly conserved between distantly related Heliconius species, and also between Heliconius and B. mori. Together, these findings suggest that genome structure in macrolepidoptera might be very conserved, and show that mapping and positional cloning efforts in different lepidopteran species can be reciprocally informative.\",\"Other Research Unit\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Papa, Riccardo\",\"Morrison, Clayton M.\",\"Walters, James R.\",\"Counterman, Brian A.\",\"Chen, Rui\",\"Halder, Georg\",\"Ferguson, Laura\",\"Ffrench-Constant, Richard\",\"Kapan, Durrell D.\",\"Jiggins, Chris D.\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Digital Access to Scholarship at Harvard\"],\"pids\":[{\"value\":\"10.1186/1471-2164-9-345\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11213320\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1186/1471-2164-9-345\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2515155\",\"id\":\"oai:europepmc.org:1104211\"},\"trust\":0.72640574}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_publication_id":{"type":"STRING","value":"oai:dash.harvard.edu:1/11213320"},"target_publication_author_list":{"type":"LIST_STRING","value":["Papa, Riccardo","Morrison, Clayton M.","Walters, James R.","Counterman, Brian A.","Chen, Rui","Halder, Georg","Ferguson, Laura","Ffrench-Constant, Richard","Kapan, Durrell D.","Jiggins, Chris D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1104211"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.72640574},"target_publication_title":{"type":"STRING","value":"Highly conserved gene order and numerous novel repetitive elements in genomic regions linked to wing pattern variation in Heliconius butterflies"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:dash.harvard.edu:1/11213320\",\"titles\":[\"Highly conserved gene order and numerous novel repetitive elements in genomic regions linked to wing pattern variation in Heliconius butterflies\"],\"abstracts\":[\"Background: With over 20 parapatric races differing in their warningly colored wing patterns, the butterfly Heliconius erato provides a fascinating example of an adaptive radiation. Together with matching races of its co-mimic Heliconius melpomene, H. erato also represents a textbook case of Müllerian mimicry, a phenomenon where common warning signals are shared amongst noxious organisms. It is of great interest to identify the specific genes that control the mimetic wing patterns of H. erato and H. melpomene. To this end we have undertaken comparative mapping and targeted genomic sequencing in both species. This paper reports on a comparative analysis of genomic sequences linked to color pattern mimicry genes in Heliconius. Results: Scoring AFLP polymorphisms in H. erato broods allowed us to survey loci at approximately 362 kb intervals across the genome. With this strategy we were able to identify markers tightly linked to two color pattern genes: D and Cr, which were then used to screen H. erato BAC libraries in order to identify clones for sequencing. Gene density across 600 kb of BAC sequences appeared relatively low, although the number of predicted open reading frames was typical for an insect. We focused analyses on the D- and Cr-linked H. erato BAC sequences and on the Yb-linked H. melpomene BAC sequence. A comparative analysis between homologous regions of H. erato (Cr-linked BAC) and H. melpomene (Yb-linked BAC) revealed high levels of sequence conservation and microsynteny between the two species. We found that repeated elements constitute 26% and 20% of BAC sequences from H. erato and H. melpomene respectively. The majority of these repetitive sequences appear to be novel, as they showed no significant similarity to any other available insect sequences. We also observed signs of fine scale conservation of gene order between Heliconius and the moth Bombyx mori, suggesting that lepidopteran genome architecture may be conserved over very long evolutionary time scales. Conclusion: Here we have demonstrated the tractability of progressing from a genetic linkage map to genomic sequence data in Heliconius butterflies. We have also shown that fine-scale gene order is highly conserved between distantly related Heliconius species, and also between Heliconius and B. mori. Together, these findings suggest that genome structure in macrolepidoptera might be very conserved, and show that mapping and positional cloning efforts in different lepidopteran species can be reciprocally informative.\",\"Other Research Unit\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Papa, Riccardo\",\"Morrison, Clayton M.\",\"Walters, James R.\",\"Counterman, Brian A.\",\"Chen, Rui\",\"Halder, Georg\",\"Ferguson, Laura\",\"Ffrench-Constant, Richard\",\"Kapan, Durrell D.\",\"Jiggins, Chris D.\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Digital Access to Scholarship at Harvard\"],\"pids\":[{\"value\":\"PMC2515155\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11213320\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2515155\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2515155\",\"id\":\"oai:europepmc.org:1104211\"},\"trust\":0.72640574}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_publication_id":{"type":"STRING","value":"oai:dash.harvard.edu:1/11213320"},"target_publication_author_list":{"type":"LIST_STRING","value":["Papa, Riccardo","Morrison, Clayton M.","Walters, James R.","Counterman, Brian A.","Chen, Rui","Halder, Georg","Ferguson, Laura","Ffrench-Constant, Richard","Kapan, Durrell D.","Jiggins, Chris D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1104211"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.72640574},"target_publication_title":{"type":"STRING","value":"Highly conserved gene order and numerous novel repetitive elements in genomic regions linked to wing pattern variation in Heliconius butterflies"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:dash.harvard.edu:1/11213320\",\"titles\":[\"Highly conserved gene order and numerous novel repetitive elements in genomic regions linked to wing pattern variation in Heliconius butterflies\"],\"abstracts\":[\"Background: With over 20 parapatric races differing in their warningly colored wing patterns, the butterfly Heliconius erato provides a fascinating example of an adaptive radiation. Together with matching races of its co-mimic Heliconius melpomene, H. erato also represents a textbook case of Müllerian mimicry, a phenomenon where common warning signals are shared amongst noxious organisms. It is of great interest to identify the specific genes that control the mimetic wing patterns of H. erato and H. melpomene. To this end we have undertaken comparative mapping and targeted genomic sequencing in both species. This paper reports on a comparative analysis of genomic sequences linked to color pattern mimicry genes in Heliconius. Results: Scoring AFLP polymorphisms in H. erato broods allowed us to survey loci at approximately 362 kb intervals across the genome. With this strategy we were able to identify markers tightly linked to two color pattern genes: D and Cr, which were then used to screen H. erato BAC libraries in order to identify clones for sequencing. Gene density across 600 kb of BAC sequences appeared relatively low, although the number of predicted open reading frames was typical for an insect. We focused analyses on the D- and Cr-linked H. erato BAC sequences and on the Yb-linked H. melpomene BAC sequence. A comparative analysis between homologous regions of H. erato (Cr-linked BAC) and H. melpomene (Yb-linked BAC) revealed high levels of sequence conservation and microsynteny between the two species. We found that repeated elements constitute 26% and 20% of BAC sequences from H. erato and H. melpomene respectively. The majority of these repetitive sequences appear to be novel, as they showed no significant similarity to any other available insect sequences. We also observed signs of fine scale conservation of gene order between Heliconius and the moth Bombyx mori, suggesting that lepidopteran genome architecture may be conserved over very long evolutionary time scales. Conclusion: Here we have demonstrated the tractability of progressing from a genetic linkage map to genomic sequence data in Heliconius butterflies. We have also shown that fine-scale gene order is highly conserved between distantly related Heliconius species, and also between Heliconius and B. mori. Together, these findings suggest that genome structure in macrolepidoptera might be very conserved, and show that mapping and positional cloning efforts in different lepidopteran species can be reciprocally informative.\",\"Other Research Unit\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Papa, Riccardo\",\"Morrison, Clayton M.\",\"Walters, James R.\",\"Counterman, Brian A.\",\"Chen, Rui\",\"Halder, Georg\",\"Ferguson, Laura\",\"Ffrench-Constant, Richard\",\"Kapan, Durrell D.\",\"Jiggins, Chris D.\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Digital Access to Scholarship at Harvard\"],\"pids\":[{\"value\":\"18647405\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11213320\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"18647405\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2515155\",\"id\":\"oai:europepmc.org:1104211\"},\"trust\":0.72640574}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_publication_id":{"type":"STRING","value":"oai:dash.harvard.edu:1/11213320"},"target_publication_author_list":{"type":"LIST_STRING","value":["Papa, Riccardo","Morrison, Clayton M.","Walters, James R.","Counterman, Brian A.","Chen, Rui","Halder, Georg","Ferguson, Laura","Ffrench-Constant, Richard","Kapan, Durrell D.","Jiggins, Chris D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1104211"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.72640574},"target_publication_title":{"type":"STRING","value":"Highly conserved gene order and numerous novel repetitive elements in genomic regions linked to wing pattern variation in Heliconius butterflies"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00741618v1\",\"titles\":[\"On Simultaneous Identification of the Shape and Generalized Impedance Boundary Condition in Obstacle Scattering\"],\"abstracts\":[\"International audience\",\"We consider the inverse obstacle scattering problem of determining both the shape and the \\\"equiva- lent impedance\\\" from far field measurements at a fixed frequency. In this work, the surface impedance is represented by a second order surface differential operator (refer to as generalized impedance boundary condition) as opposed to a scalar function. The generalized impedance boundary condition can be seen as a more accurate model for effective impedances and is widely used in the scattering problem for thin coatings. Our approach is based on a least square optimization technique. A major part of our analysis is to characterize the derivative of the cost function with respect to the boundary and this complex surface impedance configuration. In particular, we provide an extension of the notion of shape derivative to the case where the involved impedance parameters do not need to be surface traces of given functions, which leads (in general) to a non-vanishing tangential boundary perturbation. The efficiency of considering this type of derivative is illustrated by several 2D numerical experiments based on a (classical) steepest descent method. The feasibility of retrieving both the shape and the impedance parameters is also discussed in our numerical experiments.\"],\"language\":\"eng\",\"subjects\":[\"[MATH.MATH-NA] Mathematics/Numerical Analysis\"],\"creators\":[\"Bourgeois, Laurent\",\"Chaulet, Nicolas\",\"Haddar, Houssem\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Society for Industrial and Applied Mathematics\",\"embargoenddate\":\"\",\"contributor\":[\"Propagation des Ondes, Etude Mathématique et Simulation (POEMS) ; INRIA - ENSTA ParisTech - CNRS\",\"DEFI (INRIA Saclay - Ile de France) ; INRIA - Polytechnique - X - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1137/110850347\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.inria.fr/hal-00741618\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/1307.6039\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1307.6039\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1307.6039\",\"id\":\"oai:arXiv.org:1307.6039\"},\"trust\":0.44097012}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00741618v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourgeois, Laurent","Chaulet, Nicolas","Haddar, Houssem"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1307.6039"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH.MATH-NA] Mathematics/Numerical Analysis"]},"trust":{"type":"FLOAT","value":0.44097012},"target_publication_title":{"type":"STRING","value":"On Simultaneous Identification of the Shape and Generalized Impedance Boundary Condition in Obstacle Scattering"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00741618v1\",\"titles\":[\"On Simultaneous Identification of the Shape and Generalized Impedance Boundary Condition in Obstacle Scattering\"],\"abstracts\":[\"International audience\",\"We consider the inverse obstacle scattering problem of determining both the shape and the \\\"equiva- lent impedance\\\" from far field measurements at a fixed frequency. In this work, the surface impedance is represented by a second order surface differential operator (refer to as generalized impedance boundary condition) as opposed to a scalar function. The generalized impedance boundary condition can be seen as a more accurate model for effective impedances and is widely used in the scattering problem for thin coatings. Our approach is based on a least square optimization technique. A major part of our analysis is to characterize the derivative of the cost function with respect to the boundary and this complex surface impedance configuration. In particular, we provide an extension of the notion of shape derivative to the case where the involved impedance parameters do not need to be surface traces of given functions, which leads (in general) to a non-vanishing tangential boundary perturbation. The efficiency of considering this type of derivative is illustrated by several 2D numerical experiments based on a (classical) steepest descent method. The feasibility of retrieving both the shape and the impedance parameters is also discussed in our numerical experiments.\"],\"language\":\"eng\",\"subjects\":[\"[MATH.MATH-NA] Mathematics/Numerical Analysis\"],\"creators\":[\"Bourgeois, Laurent\",\"Chaulet, Nicolas\",\"Haddar, Houssem\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Society for Industrial and Applied Mathematics\",\"embargoenddate\":\"\",\"contributor\":[\"Propagation des Ondes, Etude Mathématique et Simulation (POEMS) ; INRIA - ENSTA ParisTech - CNRS\",\"DEFI (INRIA Saclay - Ile de France) ; INRIA - Polytechnique - X - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1137/110850347\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.inria.fr/hal-00741618\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.inria.fr/hal-00741618\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/hal-00741618\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/hal-00741618\",\"id\":\"oai:hal.inria.fr:hal-00741618\"},\"trust\":0.49203056}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00741618v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourgeois, Laurent","Chaulet, Nicolas","Haddar, Houssem"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:hal-00741618"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH.MATH-NA] Mathematics/Numerical Analysis"]},"trust":{"type":"FLOAT","value":0.49203056},"target_publication_title":{"type":"STRING","value":"On Simultaneous Identification of the Shape and Generalized Impedance Boundary Condition in Obstacle Scattering"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1307.6039\",\"titles\":[\"On simultaneous identification of the shape and generalized impedance boundary condition in obstacle scattering\"],\"abstracts\":[\" We consider the inverse obstacle scattering problem of determining both the\\nshape and the \\\"equivalent impedance\\\" from far field measurements at a fixed\\nfrequency. In this work, the surface impedance is represented by a second order\\nsurface differential operator (refer to as generalized impedance boundary\\ncondition) as opposed to a scalar function. The generalized impedance boundary\\ncondition can be seen as a more accurate model for effective impedances and is\\nwidely used in the scattering problem for thin coatings. Our approach is based\\non a least square optimization technique. A major part of our analysis is to\\ncharacterize the derivative of the cost function with respect to the boundary\\nand this complex surface impedance configuration. In particular, we provide an\\nextension of the notion of shape derivative to the case where the involved\\nimpedance parameters do not need to be surface traces of given functions, which\\nleads (in general) to a non-vanishing tangential boundary perturbation. The\\nefficiency of considering this type of derivative is illustrated by several 2D\\nnumerical experiments based on a (classical) steepest descent method. The\\nfeasibility of retrieving both the shape and the impedance parameters is also\\ndiscussed in our numerical experiments.\\n\",\"Comment: SIAM J. Sci. Comp. 2012\"],\"language\":\"eng\",\"subjects\":[\"Mathematics - Numerical Analysis\"],\"creators\":[\"Bourgeois, Laurent\",\"Chaulet, Nicolas\",\"Haddar, Houssem\"],\"publicationdate\":\"2013-07-23\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1137/110850347\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1307.6039\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.inria.fr/hal-00741618\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/hal-00741618\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/hal-00741618\",\"id\":\"oai:HAL:hal-00741618v1\"},\"trust\":0.9990995}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1307.6039"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourgeois, Laurent","Chaulet, Nicolas","Haddar, Houssem"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00741618v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematics - Numerical Analysis"]},"trust":{"type":"FLOAT","value":0.9990995},"target_publication_title":{"type":"STRING","value":"On simultaneous identification of the shape and generalized impedance boundary condition in obstacle scattering"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-07-23"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1307.6039\",\"titles\":[\"On simultaneous identification of the shape and generalized impedance boundary condition in obstacle scattering\"],\"abstracts\":[\" We consider the inverse obstacle scattering problem of determining both the\\nshape and the \\\"equivalent impedance\\\" from far field measurements at a fixed\\nfrequency. In this work, the surface impedance is represented by a second order\\nsurface differential operator (refer to as generalized impedance boundary\\ncondition) as opposed to a scalar function. The generalized impedance boundary\\ncondition can be seen as a more accurate model for effective impedances and is\\nwidely used in the scattering problem for thin coatings. Our approach is based\\non a least square optimization technique. A major part of our analysis is to\\ncharacterize the derivative of the cost function with respect to the boundary\\nand this complex surface impedance configuration. In particular, we provide an\\nextension of the notion of shape derivative to the case where the involved\\nimpedance parameters do not need to be surface traces of given functions, which\\nleads (in general) to a non-vanishing tangential boundary perturbation. The\\nefficiency of considering this type of derivative is illustrated by several 2D\\nnumerical experiments based on a (classical) steepest descent method. The\\nfeasibility of retrieving both the shape and the impedance parameters is also\\ndiscussed in our numerical experiments.\\n\",\"Comment: SIAM J. Sci. Comp. 2012\"],\"language\":\"eng\",\"subjects\":[\"Mathematics - Numerical Analysis\"],\"creators\":[\"Bourgeois, Laurent\",\"Chaulet, Nicolas\",\"Haddar, Houssem\"],\"publicationdate\":\"2013-07-23\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1137/110850347\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1307.6039\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.inria.fr/hal-00741618\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/hal-00741618\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/hal-00741618\",\"id\":\"oai:hal.inria.fr:hal-00741618\"},\"trust\":0.21126819}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1307.6039"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourgeois, Laurent","Chaulet, Nicolas","Haddar, Houssem"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:hal-00741618"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematics - Numerical Analysis"]},"trust":{"type":"FLOAT","value":0.21126819},"target_publication_title":{"type":"STRING","value":"On simultaneous identification of the shape and generalized impedance boundary condition in obstacle scattering"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-07-23"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:hal-00741618\",\"titles\":[\"On Simultaneous Identification of the Shape and Generalized Impedance Boundary Condition in Obstacle Scattering\"],\"abstracts\":[\"We consider the inverse obstacle scattering problem of determining both the shape and the \\\"equiva- lent impedance\\\" from far field measurements at a fixed frequency. In this work, the surface impedance is represented by a second order surface differential operator (refer to as generalized impedance boundary condition) as opposed to a scalar function. The generalized impedance boundary condition can be seen as a more accurate model for effective impedances and is widely used in the scattering problem for thin coatings. Our approach is based on a least square optimization technique. A major part of our analysis is to characterize the derivative of the cost function with respect to the boundary and this complex surface impedance configuration. In particular, we provide an extension of the notion of shape derivative to the case where the involved impedance parameters do not need to be surface traces of given functions, which leads (in general) to a non-vanishing tangential boundary perturbation. The efficiency of considering this type of derivative is illustrated by several 2D numerical experiments based on a (classical) steepest descent method. The feasibility of retrieving both the shape and the impedance parameters is also discussed in our numerical experiments.\"],\"language\":\"eng\",\"subjects\":[\"[MATH:MATH_NA] Mathematics/Numerical Analysis\",\"[MATH:MATH_NA] Mathématiques/Analyse numérique\"],\"creators\":[\"Bourgeois, Laurent\",\"Chaulet, Nicolas\",\"Haddar, Houssem\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1137/110850347\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.inria.fr/hal-00741618\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.inria.fr/hal-00741618\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/hal-00741618\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/hal-00741618\",\"id\":\"oai:HAL:hal-00741618v1\"},\"trust\":0.011991501}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:hal-00741618"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourgeois, Laurent","Chaulet, Nicolas","Haddar, Houssem"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00741618v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH:MATH_NA] Mathematics/Numerical Analysis","[MATH:MATH_NA] Mathématiques/Analyse numérique"]},"trust":{"type":"FLOAT","value":0.011991501},"target_publication_title":{"type":"STRING","value":"On Simultaneous Identification of the Shape and Generalized Impedance Boundary Condition in Obstacle Scattering"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:hal-00741618\",\"titles\":[\"On Simultaneous Identification of the Shape and Generalized Impedance Boundary Condition in Obstacle Scattering\"],\"abstracts\":[\"We consider the inverse obstacle scattering problem of determining both the shape and the \\\"equiva- lent impedance\\\" from far field measurements at a fixed frequency. In this work, the surface impedance is represented by a second order surface differential operator (refer to as generalized impedance boundary condition) as opposed to a scalar function. The generalized impedance boundary condition can be seen as a more accurate model for effective impedances and is widely used in the scattering problem for thin coatings. Our approach is based on a least square optimization technique. A major part of our analysis is to characterize the derivative of the cost function with respect to the boundary and this complex surface impedance configuration. In particular, we provide an extension of the notion of shape derivative to the case where the involved impedance parameters do not need to be surface traces of given functions, which leads (in general) to a non-vanishing tangential boundary perturbation. The efficiency of considering this type of derivative is illustrated by several 2D numerical experiments based on a (classical) steepest descent method. The feasibility of retrieving both the shape and the impedance parameters is also discussed in our numerical experiments.\"],\"language\":\"eng\",\"subjects\":[\"[MATH:MATH_NA] Mathematics/Numerical Analysis\",\"[MATH:MATH_NA] Mathématiques/Analyse numérique\"],\"creators\":[\"Bourgeois, Laurent\",\"Chaulet, Nicolas\",\"Haddar, Houssem\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1137/110850347\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.inria.fr/hal-00741618\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/1307.6039\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1307.6039\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1307.6039\",\"id\":\"oai:arXiv.org:1307.6039\"},\"trust\":0.44607347}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:hal-00741618"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourgeois, Laurent","Chaulet, Nicolas","Haddar, Houssem"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1307.6039"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH:MATH_NA] Mathematics/Numerical Analysis","[MATH:MATH_NA] Mathématiques/Analyse numérique"]},"trust":{"type":"FLOAT","value":0.44607347},"target_publication_title":{"type":"STRING","value":"On Simultaneous Identification of the Shape and Generalized Impedance Boundary Condition in Obstacle Scattering"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00690944v1\",\"titles\":[\"PRATIQUES DE CONTROLE TOUT AU LONG DE LA RELATION DE FRANCHISE : UNE DOUBLE ENQUETE FRANCHISEUR-FRANCHISE\"],\"abstracts\":[\"International audience\",\"This communication proposes a study of the control in the service franchising networks throughout the franchisors-franchisees relationship. From an interview-based exploratory research previously realized, a franchising network control model was proposed. An empirical research from the dyad franchisors - franchisees presents a descriptive analysis of the control system and tests on the evolution of these practices all to the life cycle of the relation. The results show an evolution of the practices with an operations conformity control decreasing on the relation, an effectiveness management control relatively stable and a social control which develops progressively. This research gives a dynamic vision of the control while the models which were proposed until were rather static.\",\"Cette communication propose une étude du contrôle dans les réseaux de franchise de service tout au long de la relation franchiseurs-franchisés. A partir d\\u0027une étude exploratoire précédemment réalisée, un modèle de contrôle des réseaux de franchise a été proposé. Une recherche empirique de la dyade franchiseurs - franchisés présente une analyse descriptive du système de contrôle et des tests sur l\\u0027évolution de ces pratiques tout au cycle de vie de la relation. Les résultats montrent une évolution des pratiques avec un contrôle de conformité des opérations décroissant sur la relation, un contrôle d\\u0027efficacité de l\\u0027exploitation relativement stable et un contrôle social qui se développe au fur et à mesure. Cette recherche donne une vision dynamique du contrôle dont les modèles proposés jusqu\\u0027alors étaient plutôt statiques.\"],\"language\":\"fra/fre\",\"subjects\":[\"Franchising networks\",\"Interorganizational control\",\"Life cycle of the franchisors-franchisees relationship\",\"[SHS.GESTION] Humanities and Social Sciences/Business administration\"],\"creators\":[\"Goullet, Catherine\"],\"publicationdate\":\"2012-05-21\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Centre Européen de Recherche en Economie Financière et Gestion des Entreprises (CEREFIGE) ; Université Nancy II - Université de Metz\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00690944\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00690944\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00690944\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00690944\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00690944\"},\"trust\":0.068069994}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00690944v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Goullet, Catherine"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00690944"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Franchising networks","Interorganizational control","Life cycle of the franchisors-franchisees relationship","[SHS.GESTION] Humanities and Social Sciences/Business administration"]},"trust":{"type":"FLOAT","value":0.068069994},"target_publication_title":{"type":"STRING","value":"PRATIQUES DE CONTROLE TOUT AU LONG DE LA RELATION DE FRANCHISE : UNE DOUBLE ENQUETE FRANCHISEUR-FRANCHISE"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-05-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00690944v1\",\"titles\":[\"PRATIQUES DE CONTROLE TOUT AU LONG DE LA RELATION DE FRANCHISE : UNE DOUBLE ENQUETE FRANCHISEUR-FRANCHISE\"],\"abstracts\":[\"International audience\",\"This communication proposes a study of the control in the service franchising networks throughout the franchisors-franchisees relationship. From an interview-based exploratory research previously realized, a franchising network control model was proposed. An empirical research from the dyad franchisors - franchisees presents a descriptive analysis of the control system and tests on the evolution of these practices all to the life cycle of the relation. The results show an evolution of the practices with an operations conformity control decreasing on the relation, an effectiveness management control relatively stable and a social control which develops progressively. This research gives a dynamic vision of the control while the models which were proposed until were rather static.\",\"Cette communication propose une étude du contrôle dans les réseaux de franchise de service tout au long de la relation franchiseurs-franchisés. A partir d\\u0027une étude exploratoire précédemment réalisée, un modèle de contrôle des réseaux de franchise a été proposé. Une recherche empirique de la dyade franchiseurs - franchisés présente une analyse descriptive du système de contrôle et des tests sur l\\u0027évolution de ces pratiques tout au cycle de vie de la relation. Les résultats montrent une évolution des pratiques avec un contrôle de conformité des opérations décroissant sur la relation, un contrôle d\\u0027efficacité de l\\u0027exploitation relativement stable et un contrôle social qui se développe au fur et à mesure. Cette recherche donne une vision dynamique du contrôle dont les modèles proposés jusqu\\u0027alors étaient plutôt statiques.\"],\"language\":\"fra/fre\",\"subjects\":[\"Franchising networks\",\"Interorganizational control\",\"Life cycle of the franchisors-franchisees relationship\",\"[SHS.GESTION] Humanities and Social Sciences/Business administration\"],\"creators\":[\"Goullet, Catherine\"],\"publicationdate\":\"2012-05-21\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Centre Européen de Recherche en Economie Financière et Gestion des Entreprises (CEREFIGE) ; Université Nancy II - Université de Metz\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00690944\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/docs/00/69/09/44/PDF/432_Goullet.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/docs/00/69/09/44/PDF/432_Goullet.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://hal.archives-ouvertes.fr/docs/00/69/09/44/PDF/432_Goullet.pdf\",\"id\":\"oai:RePEc:hal:journl:hal-00690944\"},\"trust\":0.27264786}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00690944v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Goullet, Catherine"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:journl:hal-00690944"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Franchising networks","Interorganizational control","Life cycle of the franchisors-franchisees relationship","[SHS.GESTION] Humanities and Social Sciences/Business administration"]},"trust":{"type":"FLOAT","value":0.27264786},"target_publication_title":{"type":"STRING","value":"PRATIQUES DE CONTROLE TOUT AU LONG DE LA RELATION DE FRANCHISE : UNE DOUBLE ENQUETE FRANCHISEUR-FRANCHISE"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-05-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00690944\",\"titles\":[\"PRATIQUES DE CONTROLE TOUT AU LONG DE LA RELATION DE FRANCHISE : UNE DOUBLE ENQUETE FRANCHISEUR-FRANCHISE\"],\"abstracts\":[\"Cette communication propose une étude du contrôle dans les réseaux de franchise de service tout au long de la relation franchiseurs-franchisés. A partir d\\u0027une étude exploratoire précédemment réalisée, un modèle de contrôle des réseaux de franchise a été proposé. Une recherche empirique de la dyade franchiseurs - franchisés présente une analyse descriptive du système de contrôle et des tests sur l\\u0027évolution de ces pratiques tout au cycle de vie de la relation. Les résultats montrent une évolution des pratiques avec un contrôle de conformité des opérations décroissant sur la relation, un contrôle d\\u0027efficacité de l\\u0027exploitation relativement stable et un contrôle social qui se développe au fur et à mesure. Cette recherche donne une vision dynamique du contrôle dont les modèles proposés jusqu\\u0027alors étaient plutôt statiques.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:GESTION] Humanities and Social Sciences/Business administration\",\"[SHS:GESTION] Sciences de l\\u0027Homme et Société/Gestion et management\",\"Réseaux de franchise\",\"Contrôle inter organisationnel\",\"Cycle de vie de la relation franchiseurs-franchisés\"],\"creators\":[\"Goullet, Catherine\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00690944\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00690944\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00690944\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00690944\",\"id\":\"oai:HAL:hal-00690944v1\"},\"trust\":0.07989645}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00690944"},"target_publication_author_list":{"type":"LIST_STRING","value":["Goullet, Catherine"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00690944v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:GESTION] Humanities and Social Sciences/Business administration","[SHS:GESTION] Sciences de l\u0027Homme et Société/Gestion et management","Réseaux de franchise","Contrôle inter organisationnel","Cycle de vie de la relation franchiseurs-franchisés"]},"trust":{"type":"FLOAT","value":0.07989645},"target_publication_title":{"type":"STRING","value":"PRATIQUES DE CONTROLE TOUT AU LONG DE LA RELATION DE FRANCHISE : UNE DOUBLE ENQUETE FRANCHISEUR-FRANCHISE"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00690944\",\"titles\":[\"PRATIQUES DE CONTROLE TOUT AU LONG DE LA RELATION DE FRANCHISE : UNE DOUBLE ENQUETE FRANCHISEUR-FRANCHISE\"],\"abstracts\":[\"Cette communication propose une étude du contrôle dans les réseaux de franchise de service tout au long de la relation franchiseurs-franchisés. A partir d\\u0027une étude exploratoire précédemment réalisée, un modèle de contrôle des réseaux de franchise a été proposé. Une recherche empirique de la dyade franchiseurs - franchisés présente une analyse descriptive du système de contrôle et des tests sur l\\u0027évolution de ces pratiques tout au cycle de vie de la relation. Les résultats montrent une évolution des pratiques avec un contrôle de conformité des opérations décroissant sur la relation, un contrôle d\\u0027efficacité de l\\u0027exploitation relativement stable et un contrôle social qui se développe au fur et à mesure. Cette recherche donne une vision dynamique du contrôle dont les modèles proposés jusqu\\u0027alors étaient plutôt statiques.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:GESTION] Humanities and Social Sciences/Business administration\",\"[SHS:GESTION] Sciences de l\\u0027Homme et Société/Gestion et management\",\"Réseaux de franchise\",\"Contrôle inter organisationnel\",\"Cycle de vie de la relation franchiseurs-franchisés\"],\"creators\":[\"Goullet, Catherine\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00690944\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"http://hal.archives-ouvertes.fr/docs/00/69/09/44/PDF/432_Goullet.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/docs/00/69/09/44/PDF/432_Goullet.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://hal.archives-ouvertes.fr/docs/00/69/09/44/PDF/432_Goullet.pdf\",\"id\":\"oai:RePEc:hal:journl:hal-00690944\"},\"trust\":0.13986862}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00690944"},"target_publication_author_list":{"type":"LIST_STRING","value":["Goullet, Catherine"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:journl:hal-00690944"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:GESTION] Humanities and Social Sciences/Business administration","[SHS:GESTION] Sciences de l\u0027Homme et Société/Gestion et management","Réseaux de franchise","Contrôle inter organisationnel","Cycle de vie de la relation franchiseurs-franchisés"]},"trust":{"type":"FLOAT","value":0.13986862},"target_publication_title":{"type":"STRING","value":"PRATIQUES DE CONTROLE TOUT AU LONG DE LA RELATION DE FRANCHISE : UNE DOUBLE ENQUETE FRANCHISEUR-FRANCHISE"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:hal-00690944\",\"titles\":[\"PRATIQUES DE CONTROLE TOUT AU LONG DE LA RELATION DE FRANCHISE : UNE DOUBLE ENQUETE FRANCHISEUR-FRANCHISE\"],\"abstracts\":[\"Cette communication propose une étude du contrôle dans les réseaux de franchise de service tout au long de la relation franchiseurs-franchisés. A partir d\\u0027une étude exploratoire précédemment réalisée, un modèle de contrôle des réseaux de franchise a été proposé. Une recherche empirique de la dyade franchiseurs - franchisés présente une analyse descriptive du système de contrôle et des tests sur l\\u0027évolution de ces pratiques tout au cycle de vie de la relation. Les résultats montrent une évolution des pratiques avec un contrôle de conformité des opérations décroissant sur la relation, un contrôle d\\u0027efficacité de l\\u0027exploitation relativement stable et un contrôle social qui se développe au fur et à mesure. Cette recherche donne une vision dynamique du contrôle dont les modèles proposés jusqu\\u0027alors étaient plutôt statiques.\"],\"language\":\"und\",\"subjects\":[\"Réseaux de franchise, Contrôle inter organisationnel, Cycle de vie de la relation franchiseurs-franchisés\"],\"creators\":[\"Catherine Goullet\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/docs/00/69/09/44/PDF/432_Goullet.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00690944\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00690944\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00690944\",\"id\":\"oai:HAL:hal-00690944v1\"},\"trust\":0.5737333}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:hal-00690944"},"target_publication_author_list":{"type":"LIST_STRING","value":["Catherine Goullet"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00690944v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Réseaux de franchise, Contrôle inter organisationnel, Cycle de vie de la relation franchiseurs-franchisés"]},"trust":{"type":"FLOAT","value":0.5737333},"target_publication_title":{"type":"STRING","value":"PRATIQUES DE CONTROLE TOUT AU LONG DE LA RELATION DE FRANCHISE : UNE DOUBLE ENQUETE FRANCHISEUR-FRANCHISE"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:hal-00690944\",\"titles\":[\"PRATIQUES DE CONTROLE TOUT AU LONG DE LA RELATION DE FRANCHISE : UNE DOUBLE ENQUETE FRANCHISEUR-FRANCHISE\"],\"abstracts\":[\"Cette communication propose une étude du contrôle dans les réseaux de franchise de service tout au long de la relation franchiseurs-franchisés. A partir d\\u0027une étude exploratoire précédemment réalisée, un modèle de contrôle des réseaux de franchise a été proposé. Une recherche empirique de la dyade franchiseurs - franchisés présente une analyse descriptive du système de contrôle et des tests sur l\\u0027évolution de ces pratiques tout au cycle de vie de la relation. Les résultats montrent une évolution des pratiques avec un contrôle de conformité des opérations décroissant sur la relation, un contrôle d\\u0027efficacité de l\\u0027exploitation relativement stable et un contrôle social qui se développe au fur et à mesure. Cette recherche donne une vision dynamique du contrôle dont les modèles proposés jusqu\\u0027alors étaient plutôt statiques.\"],\"language\":\"und\",\"subjects\":[\"Réseaux de franchise, Contrôle inter organisationnel, Cycle de vie de la relation franchiseurs-franchisés\"],\"creators\":[\"Catherine Goullet\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/docs/00/69/09/44/PDF/432_Goullet.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00690944\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00690944\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00690944\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00690944\"},\"trust\":0.34499276}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:hal-00690944"},"target_publication_author_list":{"type":"LIST_STRING","value":["Catherine Goullet"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00690944"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Réseaux de franchise, Contrôle inter organisationnel, Cycle de vie de la relation franchiseurs-franchisés"]},"trust":{"type":"FLOAT","value":0.34499276},"target_publication_title":{"type":"STRING","value":"PRATIQUES DE CONTROLE TOUT AU LONG DE LA RELATION DE FRANCHISE : UNE DOUBLE ENQUETE FRANCHISEUR-FRANCHISE"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:11876\",\"titles\":[\"New supernova remnant candidates in M31\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Magnier, E. A.\",\"Prins, S.\",\"Paradijs, J. A.\",\"Lewin, W. H. G.\",\"Hasinger, G.\",\"Supper, R.\",\"Pietsch, W.\",\"Trumper, J. E.\"],\"publicationdate\":\"1995-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://dare.uva.nl/record/11876\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/11245/1.116977\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/11245/1.116977\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/11245/1.116977\",\"id\":\"uvapub:oai:uva.nl:116977\"},\"trust\":0.14250368}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:11876"},"target_publication_author_list":{"type":"LIST_STRING","value":["Magnier, E. A.","Prins, S.","Paradijs, J. A.","Lewin, W. H. G.","Hasinger, G.","Supper, R.","Pietsch, W.","Trumper, J. E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uvapub:oai:uva.nl:116977"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.14250368},"target_publication_title":{"type":"STRING","value":"New supernova remnant candidates in M31"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1995-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2465753\",\"titles\":[\"The Role of Semaphorins and Their Receptors in Gliomas\"],\"abstracts\":[\"Gliomas are the most common tumor in the central nervous system. High-grade glioblastomas are characterized by their high invasiveness and resistance to radiotherapy, leading to high recurrence rate and short median survival despite radical surgical resection. Characterizations of gliomas at molecular level have revealed aberrations of various growth factor receptors, receptor tyrosine kinases, and tumor suppressor genes that lead to deregulation of multiple signaling pathways, thereby contributing to abnormal proliferation, invasion, and resistance to apoptosis in cancer cells. Recently, accumulating evidence points to the emerging role of axon guidance molecules in glioma progression. Notably, many signaling events harnessed by guidance molecules to regulate cell migration and axon navigation during development are also found to be involved in the modulation of deregulated pathways in gliomas. This paper focused on the signalings triggered by the guidance molecule semaphorins and their receptors plexins and neuropilins, and how their crosstalk with oncogenic pathways in gliomas might modulate cancer progression. The emerging role of semaphorins and plexins as tumor suppressors or oncogenes is also discussed.\"],\"language\":\"eng\",\"subjects\":[\"Review Article\"],\"creators\":[\"Law, Janice Wai Sze\",\"Lee, Alan Yiu Wah\"],\"publicationdate\":\"2012-09-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Signal Transduction\",\"issn\":\"2090-1739\",\"eissn\":\"2090-1747\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2012/902854\",\"type\":\"doi\"},{\"value\":\"PMC3461631\",\"type\":\"pmc\"},{\"value\":\"23050142\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3461631\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2012/902854\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Signal Transduction\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2012/902854\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Signal Transduction\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2012/902854\",\"id\":\"oai:doaj.org/article:bb06c63654654bb1b0cae0cb1b3b9fe1\"},\"trust\":0.82493335}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2465753"},"target_publication_author_list":{"type":"LIST_STRING","value":["Law, Janice Wai Sze","Lee, Alan Yiu Wah"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:bb06c63654654bb1b0cae0cb1b3b9fe1"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Review Article"]},"trust":{"type":"FLOAT","value":0.82493335},"target_publication_title":{"type":"STRING","value":"The Role of Semaphorins and Their Receptors in Gliomas"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cbu:jrnlec:y:2010:v:4.i:p:331-336\",\"titles\":[\"Effects of the financial crisis. From nationalizing the achievements to internationalizing the losses\"],\"abstracts\":[\"We do not support the intervention of the state in the economy. Considering that freedom has its price. Only that, here it is, the Resolution of the European Parliament since March, 25t h 2010, referring to the effects of the world financial and economical crisis on the developing countries, shows that the fiscal paradises offer the possibility to hide money, stimulating actions that undermine the good governing, especially regarding the taxation and the legal state. The illegal capital flows coming from the developing countries are estimated at 641-941 billion dollars, representing about ten times the value of the world help for development. Does this mean the liberalization of the capitalmarket, of the currency exchange and of the international commerce? After all, the developing states are under a double pressure generated by the integration on the markets and by the money volatility.\"],\"language\":\"und\",\"subjects\":[\"financial crisis, corruption, the burden of the crisis, wealth transfers, poor states, rich states.\"],\"creators\":[\"Chiriţescu, Dorel-Dumitru\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Constatin Brancusi University of Targu Jiu Annals - Economy Series\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.utgjiu.ro/revista/ec/pdf/2010-04.I/32_DOREL_DUMITRU_CHIRITESCU.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.utgjiu.ro/revista/ec/pdf/2010-04.I/32_DOREL_DUMITRU_CHIRITESCU.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Analele Universităţii Constantin Brâncuşi din Târgu Jiu : Seria Economie\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.utgjiu.ro/revista/ec/pdf/2010-04.I/32_DOREL_DUMITRU_CHIRITESCU.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Analele Universităţii Constantin Brâncuşi din Târgu Jiu : Seria Economie\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.utgjiu.ro/revista/ec/pdf/2010-04.I/32_DOREL_DUMITRU_CHIRITESCU.pdf\",\"id\":\"oai:doaj.org/article:2861a3ff799c4823b69efd917a701650\"},\"trust\":0.71928144}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cbu:jrnlec:y:2010:v:4.i:p:331-336"},"target_publication_author_list":{"type":"LIST_STRING","value":["Chiriţescu, Dorel-Dumitru"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:2861a3ff799c4823b69efd917a701650"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["financial crisis, corruption, the burden of the crisis, wealth transfers, poor states, rich states."]},"trust":{"type":"FLOAT","value":0.71928144},"target_publication_title":{"type":"STRING","value":"Effects of the financial crisis. From nationalizing the achievements to internationalizing the losses"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/42893\",\"titles\":[\"Paisaje de Ladrilleros\",\"701036\",\"701036\"],\"abstracts\":[\"Paisaje de Ladrilleros. Costa Pacífica, . 1999\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"La Naturaleza\",\"Los Paisajes\",\"OTRO\",\"GERMAN PARRA\"],\"creators\":[\"Parra, German\"],\"publicationdate\":\"1999-10-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"GERMAN PARRA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/42893\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/33390\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/33390\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/33390\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/33390\"},\"trust\":0.9578394}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/42893"},"target_publication_author_list":{"type":"LIST_STRING","value":["Parra, German"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/33390"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["La Naturaleza","Los Paisajes","OTRO","GERMAN PARRA"]},"trust":{"type":"FLOAT","value":0.9578394},"target_publication_title":{"type":"STRING","value":"Paisaje de Ladrilleros"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1999-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/42893\",\"titles\":[\"Paisaje de Ladrilleros\",\"701036\",\"701036\"],\"abstracts\":[\"Paisaje de Ladrilleros. Costa Pacífica, . 1999\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"La Naturaleza\",\"Los Paisajes\",\"OTRO\",\"GERMAN PARRA\"],\"creators\":[\"Parra, German\"],\"publicationdate\":\"1999-10-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"GERMAN PARRA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/42893\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/24315\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/24315\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/24315\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/24315\"},\"trust\":0.38020545}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/42893"},"target_publication_author_list":{"type":"LIST_STRING","value":["Parra, German"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/24315"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["La Naturaleza","Los Paisajes","OTRO","GERMAN PARRA"]},"trust":{"type":"FLOAT","value":0.38020545},"target_publication_title":{"type":"STRING","value":"Paisaje de Ladrilleros"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1999-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/33390\",\"titles\":[\"Paisaje de Ladrilleros\",\"701036\",\"701036\"],\"abstracts\":[\"Paisaje de Ladrilleros. Costa Pacífica, . 1999\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"El Transporte\",\"La Aviación\",\"OTRO\",\"GERMAN PARRA\"],\"creators\":[\"Parra, German\"],\"publicationdate\":\"1999-10-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"GERMAN PARRA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/33390\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/42893\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/42893\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/42893\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/42893\"},\"trust\":0.6995964}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/33390"},"target_publication_author_list":{"type":"LIST_STRING","value":["Parra, German"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/42893"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["El Transporte","La Aviación","OTRO","GERMAN PARRA"]},"trust":{"type":"FLOAT","value":0.6995964},"target_publication_title":{"type":"STRING","value":"Paisaje de Ladrilleros"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1999-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/33390\",\"titles\":[\"Paisaje de Ladrilleros\",\"701036\",\"701036\"],\"abstracts\":[\"Paisaje de Ladrilleros. Costa Pacífica, . 1999\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"El Transporte\",\"La Aviación\",\"OTRO\",\"GERMAN PARRA\"],\"creators\":[\"Parra, German\"],\"publicationdate\":\"1999-10-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"GERMAN PARRA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/33390\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/24315\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/24315\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/24315\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/24315\"},\"trust\":0.84371793}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/33390"},"target_publication_author_list":{"type":"LIST_STRING","value":["Parra, German"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/24315"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["El Transporte","La Aviación","OTRO","GERMAN PARRA"]},"trust":{"type":"FLOAT","value":0.84371793},"target_publication_title":{"type":"STRING","value":"Paisaje de Ladrilleros"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1999-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/24315\",\"titles\":[\"Paisaje de Ladrilleros\",\"701036\",\"701036\"],\"abstracts\":[\"Paisaje de Ladrilleros. Costa Pacífica, . 1999\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"Los Municipios\",\"Ciudad\",\"OTRO\",\"GERMAN PARRA\"],\"creators\":[\"Parra, German\"],\"publicationdate\":\"1999-10-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"GERMAN PARRA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/24315\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/42893\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/42893\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/42893\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/42893\"},\"trust\":0.9159947}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/24315"},"target_publication_author_list":{"type":"LIST_STRING","value":["Parra, German"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/42893"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Los Municipios","Ciudad","OTRO","GERMAN PARRA"]},"trust":{"type":"FLOAT","value":0.9159947},"target_publication_title":{"type":"STRING","value":"Paisaje de Ladrilleros"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1999-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/24315\",\"titles\":[\"Paisaje de Ladrilleros\",\"701036\",\"701036\"],\"abstracts\":[\"Paisaje de Ladrilleros. Costa Pacífica, . 1999\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"Los Municipios\",\"Ciudad\",\"OTRO\",\"GERMAN PARRA\"],\"creators\":[\"Parra, German\"],\"publicationdate\":\"1999-10-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"GERMAN PARRA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/24315\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/33390\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/33390\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/33390\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/33390\"},\"trust\":0.69728565}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/24315"},"target_publication_author_list":{"type":"LIST_STRING","value":["Parra, German"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/33390"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Los Municipios","Ciudad","OTRO","GERMAN PARRA"]},"trust":{"type":"FLOAT","value":0.69728565},"target_publication_title":{"type":"STRING","value":"Paisaje de Ladrilleros"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1999-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/350670\",\"titles\":[\"Understanding how and why practitioners evaluate SDI performance\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Laboratorium voor Geo-informatiekunde en remote sensing\",\"Laboratory of Geo-information Science and Remote Sensing\",\"PE\\u0026RC\",\"PE\\u0026RC\"],\"creators\":[\"Lance, K.\",\"Georgiadou, Y.\",\"Bregt, A. K.\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/32399\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/350670\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/350670\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/350670\",\"id\":\"wur:oai:library.wur.nl:wurpubs/350670\"},\"trust\":0.2136975}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/350670"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lance, K.","Georgiadou, Y.","Bregt, A. K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/350670"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Laboratorium voor Geo-informatiekunde en remote sensing","Laboratory of Geo-information Science and Remote Sensing","PE\u0026RC","PE\u0026RC"]},"trust":{"type":"FLOAT","value":0.2136975},"target_publication_title":{"type":"STRING","value":"Understanding how and why practitioners evaluate SDI performance"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3197309\",\"titles\":[\"Thermoase-Derived Flaxseed Protein Hydrolysates and Membrane Ultrafiltration Peptide Fractions Have Systolic Blood Pressure-Lowering Effects in Spontaneously Hypertensive Rats\"],\"abstracts\":[\"Thermoase-digested flaxseed protein hydrolysate (FPH) samples and ultrafiltration membrane-separated peptide fractions were initially evaluated for in vitro inhibition of angiotensin I-converting enzyme (ACE) and renin activities. The two most active FPH samples and their corresponding peptide fractions were subsequently tested for in vivo antihypertensive activity in spontaneously hypertensive rats (SHR). The FPH produced with 3% thermoase digestion showed the highest ACE- and renin-inhibitory activities. Whereas membrane ultrafiltration resulted in significant (p \\u003c 0.05) increases in ACE inhibition by the \\u003c1 and 1–3 kDa peptides, only a marginal improvement in renin-inhibitory activity was observed for virtually all the samples after membrane ultrafiltration. The FPH samples and membrane fractions were also effective in lowering systolic blood pressure (SBP) in SHR with the largest effect occurring after oral administration (200 mg/kg body weight) of the 1–3 kDa peptide fraction of the 2.5% FPH and the 3–5 kDa fraction of the 3% FPH. Such potent SBP-lowering capacity indicates the potential of flaxseed protein-derived bioactive peptides as ingredients for the formulation of antihypertensive functional foods and nutraceuticals.\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"antihypertensive\",\"hypertension\",\"bioactive peptides\",\"thermoase\",\"flaxseed\",\"angiotensin converting enzyme\",\"renin\",\"spontaneously hypertensive rat\",\"membrane ultrafiltration\",\"systolic blood pressure\"],\"creators\":[\"Nwachukwu, Ifeanyi D.\",\"Girgih, Abraham T.\",\"Malomo, Sunday A.\",\"Onuh, John O.\",\"Aluko, Rotimi E.\"],\"publicationdate\":\"2014-10-01\",\"publisher\":\"MDPI\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"International Journal of Molecular Sciences\",\"issn\":\"\",\"eissn\":\"1422-0067\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3390/ijms151018131\",\"type\":\"doi\"},{\"value\":\"PMC4227207\",\"type\":\"pmc\"},{\"value\":\"25302619\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4227207\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.mdpi.com/1422-0067/15/10/18131\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.mdpi.com/1422-0067/15/10/18131\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.mdpi.com/1422-0067/15/10/18131\",\"id\":\"oai:doaj.org/article:ea708496e7e34425bb792de124050282\"},\"trust\":0.65327007}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3197309"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nwachukwu, Ifeanyi D.","Girgih, Abraham T.","Malomo, Sunday A.","Onuh, John O.","Aluko, Rotimi E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:ea708496e7e34425bb792de124050282"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","antihypertensive","hypertension","bioactive peptides","thermoase","flaxseed","angiotensin converting enzyme","renin","spontaneously hypertensive rat","membrane ultrafiltration","systolic blood pressure"]},"trust":{"type":"FLOAT","value":0.65327007},"target_publication_title":{"type":"STRING","value":"Thermoase-Derived Flaxseed Protein Hydrolysates and Membrane Ultrafiltration Peptide Fractions Have Systolic Blood Pressure-Lowering Effects in Spontaneously Hypertensive Rats"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00098656\",\"titles\":[\"Multi-objective qLPV Hinf / H2 Control of a half vehicle\"],\"abstracts\":[\"In this paper we compare LTI and qLPV Hinfinity/H2 controllers. The Pareto limit is used to show the compromise that has to be done when a mixed synthesis is achieved. Simulations on a nonlinear half vehicle model, with multiple objectives, are performed to show the efficiency of the method.\"],\"language\":\"eng\",\"subjects\":[\"[SPI:AUTO] Engineering Sciences/Automatic\",\"[SPI:AUTO] Sciences de l\\u0027ingénieur/Automatique / Robotique\",\"[MATH:MATH_OC] Mathematics/Optimization and Control\",\"[MATH:MATH_OC] Mathématiques/Optimisation et contrôle\",\"LMI based multi-objective synthesis\",\"qLPV systems\",\"Mixed qLPV polytopic Hinfinity / H2 control\",\"Pareto limit\",\"Half vehicle\"],\"creators\":[\"Poussot-Vassal, Charles\",\"Sename, Olivier\",\"Dugard, Luc\",\"Gaspar, Peter\",\"Szabo, Zoltan\",\"Bokor, Jozsef\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00098656\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00098656\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00098656\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00098656\",\"id\":\"oai:HAL:hal-00098656v1\"},\"trust\":0.9217715}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00098656"},"target_publication_author_list":{"type":"LIST_STRING","value":["Poussot-Vassal, Charles","Sename, Olivier","Dugard, Luc","Gaspar, Peter","Szabo, Zoltan","Bokor, Jozsef"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00098656v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SPI:AUTO] Engineering Sciences/Automatic","[SPI:AUTO] Sciences de l\u0027ingénieur/Automatique / Robotique","[MATH:MATH_OC] Mathematics/Optimization and Control","[MATH:MATH_OC] Mathématiques/Optimisation et contrôle","LMI based multi-objective synthesis","qLPV systems","Mixed qLPV polytopic Hinfinity / H2 control","Pareto limit","Half vehicle"]},"trust":{"type":"FLOAT","value":0.9217715},"target_publication_title":{"type":"STRING","value":"Multi-objective qLPV Hinf / H2 Control of a half vehicle"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00098656v1\",\"titles\":[\"Multi-objective qLPV Hinf / H2 Control of a half vehicle\"],\"abstracts\":[\"International audience\",\"In this paper we compare LTI and qLPV Hinfinity/H2 controllers. The Pareto limit is used to show the compromise that has to be done when a mixed synthesis is achieved. Simulations on a nonlinear half vehicle model, with multiple objectives, are performed to show the efficiency of the method.\"],\"language\":\"eng\",\"subjects\":[\"LMI based multi-objective synthesis\",\"qLPV systems\",\"Mixed qLPV polytopic Hinfinity / H2 control\",\"Pareto limit\",\"Half vehicle\",\"[SPI.AUTO] Engineering Sciences/Automatic\",\"[MATH.MATH-OC] Mathematics/Optimization and Control\"],\"creators\":[\"Poussot-Vassal, Charles\",\"Sename, Olivier\",\"Dugard, Luc\",\"Gaspar, Peter\",\"Szabo, Zoltan\",\"Bokor, Jozsef\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire d\\u0027automatique de Grenoble (LAG) ; CNRS - Université Joseph Fourier - Grenoble I - Institut National Polytechnique de Grenoble (INPG)\",\"Systems and Control Laboratory, Computer and Automation Research Institute ; Hungarian Academy of Sciences\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00098656\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00098656\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00098656\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00098656\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00098656\"},\"trust\":0.8123709}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00098656v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Poussot-Vassal, Charles","Sename, Olivier","Dugard, Luc","Gaspar, Peter","Szabo, Zoltan","Bokor, Jozsef"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00098656"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["LMI based multi-objective synthesis","qLPV systems","Mixed qLPV polytopic Hinfinity / H2 control","Pareto limit","Half vehicle","[SPI.AUTO] Engineering Sciences/Automatic","[MATH.MATH-OC] Mathematics/Optimization and Control"]},"trust":{"type":"FLOAT","value":0.8123709},"target_publication_title":{"type":"STRING","value":"Multi-objective qLPV Hinf / H2 Control of a half vehicle"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:zenodo.org:28096\",\"titles\":[\"ACHIEVEMENT AND INTEGRATION OF STUDENTS WITH AND WITHOUT SPECIAL EDUCATIONAL NEEDS (SEN) IN THE FIFTH GRADE\"],\"abstracts\":[\"\\u003cp\\u003eJ Spec Educ Rehab 2012; 13(3-4):7-19.\\u003c/p\\u003e\"],\"language\":\"und\",\"subjects\":[\"cc-by\"],\"creators\":[\"Gebhardt, Markus\",\"Schwab, Susanne\",\"Krammer, Mathias\",\"Gasteiger, Klicpera Barbara\"],\"publicationdate\":\"2015-08-16\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"ZENODO\"],\"pids\":[{\"value\":\"10.2478/v10215-011-0022-6\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://zenodo.org/record/28096\",\"license\":\"OPEN\",\"hostedby\":\"ZENODO\",\"instancetype\":\"Article\"},{\"url\":\"http://jser.fzf.ukim.edu.mk/files/7-19%20Gebhard.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Special Education and Rehabilitation\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://jser.fzf.ukim.edu.mk/files/7-19%20Gebhard.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Special Education and Rehabilitation\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://jser.fzf.ukim.edu.mk/files/7-19%20Gebhard.pdf\",\"id\":\"oai:doaj.org/article:15c62bdb3cbb46f2b8b92b5a476744a9\"},\"trust\":0.13042861}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"ZENODO"},"target_publication_id":{"type":"STRING","value":"oai:zenodo.org:28096"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gebhardt, Markus","Schwab, Susanne","Krammer, Mathias","Gasteiger, Klicpera Barbara"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:15c62bdb3cbb46f2b8b92b5a476744a9"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["cc-by"]},"trust":{"type":"FLOAT","value":0.13042861},"target_publication_title":{"type":"STRING","value":"ACHIEVEMENT AND INTEGRATION OF STUDENTS WITH AND WITHOUT SPECIAL EDUCATIONAL NEEDS (SEN) IN THE FIFTH GRADE"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2015-08-16"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::358aee4cc897452c00244351e4d91f69"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/348601\",\"titles\":[\"Methodology of the MARS crop yield forecasting system. Vol. 2 agrometeorological data collection, processing and analysis\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Alterra - Centrum Geo-informatie\",\"Centre Geo-information\",\"Leerstoelgroep Gewas- en onkruidecologie\",\"Crop and Weed Ecology\"],\"creators\":[\"Diepen, K.\",\"Boogaard, H. L.\",\"Supit, I.\",\"Lazar, C.\",\"Orlandi, S.\",\"Goot, E.\",\"Schapendonk, A. H. C. M.\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"EC\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/34550\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"External research report\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/348601\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/348601\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/348601\",\"id\":\"wur:oai:library.wur.nl:wurpubs/348601\"},\"trust\":0.99607444}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/348601"},"target_publication_author_list":{"type":"LIST_STRING","value":["Diepen, K.","Boogaard, H. L.","Supit, I.","Lazar, C.","Orlandi, S.","Goot, E.","Schapendonk, A. H. C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/348601"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Alterra - Centrum Geo-informatie","Centre Geo-information","Leerstoelgroep Gewas- en onkruidecologie","Crop and Weed Ecology"]},"trust":{"type":"FLOAT","value":0.99607444},"target_publication_title":{"type":"STRING","value":"Methodology of the MARS crop yield forecasting system. Vol. 2 agrometeorological data collection, processing and analysis"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00250315\",\"titles\":[\"Macdonald polynomials at $t\\u003dq^k$\"],\"abstracts\":[\"We investigate the homogeneous symmetric Macdonald polynomials $P_\\\\lambda(\\\\X;q,t)$ for the specialization $t\\u003dq^k$. We show an identity relying the polynomials $P_\\\\lambda(\\\\X;q,q^k)$ and $P_\\\\lambda\\\\left(\\\\frac{1-q}{1-q^k}\\\\X;q,q^k\\\\right)$. As a consequence, we describe an operator whose eigenvalues characterize the polynomials $P_\\\\lambda(\\\\X;q,q^k)$.\"],\"language\":\"eng\",\"subjects\":[\"[MATH:MATH_CO] Mathematics/Combinatorics\",\"[MATH:MATH_CO] Mathématiques/Combinatoire\",\"Macdonald polynomials\",\"q-discriminant\",\"Cherednik operators\",\"Hecke algebra\"],\"creators\":[\"Luque, Jean-Gabriel\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1016/j.jalgebra.2009.11.012\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00250315\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/0802.1454\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/0802.1454\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0802.1454\",\"id\":\"oai:arXiv.org:0802.1454\"},\"trust\":0.85475564}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00250315"},"target_publication_author_list":{"type":"LIST_STRING","value":["Luque, Jean-Gabriel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0802.1454"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH:MATH_CO] Mathematics/Combinatorics","[MATH:MATH_CO] Mathématiques/Combinatoire","Macdonald polynomials","q-discriminant","Cherednik operators","Hecke algebra"]},"trust":{"type":"FLOAT","value":0.85475564},"target_publication_title":{"type":"STRING","value":"Macdonald polynomials at $t\u003dq^k$"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00250315\",\"titles\":[\"Macdonald polynomials at $t\\u003dq^k$\"],\"abstracts\":[\"We investigate the homogeneous symmetric Macdonald polynomials $P_\\\\lambda(\\\\X;q,t)$ for the specialization $t\\u003dq^k$. We show an identity relying the polynomials $P_\\\\lambda(\\\\X;q,q^k)$ and $P_\\\\lambda\\\\left(\\\\frac{1-q}{1-q^k}\\\\X;q,q^k\\\\right)$. As a consequence, we describe an operator whose eigenvalues characterize the polynomials $P_\\\\lambda(\\\\X;q,q^k)$.\"],\"language\":\"eng\",\"subjects\":[\"[MATH:MATH_CO] Mathematics/Combinatorics\",\"[MATH:MATH_CO] Mathématiques/Combinatoire\",\"Macdonald polynomials\",\"q-discriminant\",\"Cherednik operators\",\"Hecke algebra\"],\"creators\":[\"Luque, Jean-Gabriel\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1016/j.jalgebra.2009.11.012\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00250315\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00250315\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00250315\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00250315\",\"id\":\"oai:HAL:hal-00250315v1\"},\"trust\":0.6987966}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00250315"},"target_publication_author_list":{"type":"LIST_STRING","value":["Luque, Jean-Gabriel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00250315v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH:MATH_CO] Mathematics/Combinatorics","[MATH:MATH_CO] Mathématiques/Combinatoire","Macdonald polynomials","q-discriminant","Cherednik operators","Hecke algebra"]},"trust":{"type":"FLOAT","value":0.6987966},"target_publication_title":{"type":"STRING","value":"Macdonald polynomials at $t\u003dq^k$"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:0802.1454\",\"titles\":[\"Macdonald polynomials at $t\\u003dq^k$\"],\"abstracts\":[\" We investigate the homogeneous symmetric Macdonald polynomials\\n$P_\\\\lambda(\\\\X;q,t)$ for the specialization $t\\u003dq^k$. We show an identity relying\\nthe polynomials $P_\\\\lambda(\\\\X;q,q^k)$ and\\n$P_\\\\lambda(\\\\frac{1-q}{1-q^k}\\\\X;q,q^k)$. As a consequence, we describe an\\noperator whose eigenvalues characterize the polynomials $P_\\\\lambda(\\\\X;q,q^k)$.\\n\",\"Comment: 19pp; Journal of Algebra (2009) In Press\"],\"language\":\"eng\",\"subjects\":[\"Mathematics - Combinatorics\",\"05E05, 05E35\"],\"creators\":[\"Luque, Jean-Gabriel\"],\"publicationdate\":\"2008-02-11\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1016/j.jalgebra.2009.11.012\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/0802.1454\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00250315\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00250315\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00250315\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00250315\"},\"trust\":0.4585973}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:0802.1454"},"target_publication_author_list":{"type":"LIST_STRING","value":["Luque, Jean-Gabriel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00250315"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematics - Combinatorics","05E05, 05E35"]},"trust":{"type":"FLOAT","value":0.4585973},"target_publication_title":{"type":"STRING","value":"Macdonald polynomials at $t\u003dq^k$"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-02-11"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:0802.1454\",\"titles\":[\"Macdonald polynomials at $t\\u003dq^k$\"],\"abstracts\":[\" We investigate the homogeneous symmetric Macdonald polynomials\\n$P_\\\\lambda(\\\\X;q,t)$ for the specialization $t\\u003dq^k$. We show an identity relying\\nthe polynomials $P_\\\\lambda(\\\\X;q,q^k)$ and\\n$P_\\\\lambda(\\\\frac{1-q}{1-q^k}\\\\X;q,q^k)$. As a consequence, we describe an\\noperator whose eigenvalues characterize the polynomials $P_\\\\lambda(\\\\X;q,q^k)$.\\n\",\"Comment: 19pp; Journal of Algebra (2009) In Press\"],\"language\":\"eng\",\"subjects\":[\"Mathematics - Combinatorics\",\"05E05, 05E35\"],\"creators\":[\"Luque, Jean-Gabriel\"],\"publicationdate\":\"2008-02-11\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1016/j.jalgebra.2009.11.012\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/0802.1454\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00250315\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00250315\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00250315\",\"id\":\"oai:HAL:hal-00250315v1\"},\"trust\":0.10591817}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:0802.1454"},"target_publication_author_list":{"type":"LIST_STRING","value":["Luque, Jean-Gabriel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00250315v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematics - Combinatorics","05E05, 05E35"]},"trust":{"type":"FLOAT","value":0.10591817},"target_publication_title":{"type":"STRING","value":"Macdonald polynomials at $t\u003dq^k$"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-02-11"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00250315v1\",\"titles\":[\"Macdonald polynomials at $t\\u003dq^k$\"],\"abstracts\":[\"19pp\",\"International audience\",\"We investigate the homogeneous symmetric Macdonald polynomials $P_\\\\lambda(\\\\X;q,t)$ for the specialization $t\\u003dq^k$. We show an identity relying the polynomials $P_\\\\lambda(\\\\X;q,q^k)$ and $P_\\\\lambda\\\\left(\\\\frac{1-q}{1-q^k}\\\\X;q,q^k\\\\right)$. As a consequence, we describe an operator whose eigenvalues characterize the polynomials $P_\\\\lambda(\\\\X;q,q^k)$.\"],\"language\":\"eng\",\"subjects\":[\"Macdonald polynomials\",\"q-discriminant\",\"Cherednik operators\",\"Hecke algebra\",\"AMS: 05E05, 05E35\",\"[MATH.MATH-CO] Mathematics/Combinatorics\"],\"creators\":[\"Luque, Jean-Gabriel\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire d\\u0027Informatique, de Traitement de l\\u0027Information et des Systèmes (LITIS) ; Université du Havre - Université de Rouen - Institut National des Sciences Appliquées [INSA] - Rouen\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1016/j.jalgebra.2009.11.012\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00250315\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00250315\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00250315\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00250315\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00250315\"},\"trust\":0.44738555}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00250315v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Luque, Jean-Gabriel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00250315"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Macdonald polynomials","q-discriminant","Cherednik operators","Hecke algebra","AMS: 05E05, 05E35","[MATH.MATH-CO] Mathematics/Combinatorics"]},"trust":{"type":"FLOAT","value":0.44738555},"target_publication_title":{"type":"STRING","value":"Macdonald polynomials at $t\u003dq^k$"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00250315v1\",\"titles\":[\"Macdonald polynomials at $t\\u003dq^k$\"],\"abstracts\":[\"19pp\",\"International audience\",\"We investigate the homogeneous symmetric Macdonald polynomials $P_\\\\lambda(\\\\X;q,t)$ for the specialization $t\\u003dq^k$. We show an identity relying the polynomials $P_\\\\lambda(\\\\X;q,q^k)$ and $P_\\\\lambda\\\\left(\\\\frac{1-q}{1-q^k}\\\\X;q,q^k\\\\right)$. As a consequence, we describe an operator whose eigenvalues characterize the polynomials $P_\\\\lambda(\\\\X;q,q^k)$.\"],\"language\":\"eng\",\"subjects\":[\"Macdonald polynomials\",\"q-discriminant\",\"Cherednik operators\",\"Hecke algebra\",\"AMS: 05E05, 05E35\",\"[MATH.MATH-CO] Mathematics/Combinatorics\"],\"creators\":[\"Luque, Jean-Gabriel\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire d\\u0027Informatique, de Traitement de l\\u0027Information et des Systèmes (LITIS) ; Université du Havre - Université de Rouen - Institut National des Sciences Appliquées [INSA] - Rouen\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1016/j.jalgebra.2009.11.012\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00250315\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/0802.1454\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/0802.1454\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0802.1454\",\"id\":\"oai:arXiv.org:0802.1454\"},\"trust\":0.92566806}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00250315v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Luque, Jean-Gabriel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0802.1454"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Macdonald polynomials","q-discriminant","Cherednik operators","Hecke algebra","AMS: 05E05, 05E35","[MATH.MATH-CO] Mathematics/Combinatorics"]},"trust":{"type":"FLOAT","value":0.92566806},"target_publication_title":{"type":"STRING","value":"Macdonald polynomials at $t\u003dq^k$"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00104301\",\"titles\":[\"Baima nominal postpositions and their etymology\"],\"abstracts\":[\"This article focuses on nominal postpositions, used for marking the agent, the instrument, the genitive, the definite, the locative, the ablative, the dative and the comitative, in Baima, a Tibeto-Burman language spoken in the South-West of the People\\u0027s Republic of China. \\u003cbr /\\u003eTaking previous classifications of Baima nominal postpositions (Nishida and Sun 1990; Sun 2003; Huang and Zhang 1995) as the starting point, I comment on the disputed issues in these analyses, propose a new summary of nominal postpositions in my data, argue for isomorphism of some postpositions and discuss their etymology. I demonstrate that Baima nominal postpositions are etymologically heterogeneous, some being cognate to their Classical Tibetan counterparts, some being of possibly Qiangic provenance, while others being of yet unclear origin. \\u003cbr /\\u003eThe discussion is based on a corpus of Baima stories collected in 2003-2004, of which one is appended to the article.\"],\"language\":\"eng\",\"subjects\":[\"[SHS:LANGUE] Humanities and Social Sciences/Linguistics\",\"[SHS:LANGUE] Sciences de l\\u0027Homme et Société/Linguistique\",\"nominal postpositions\",\"etymology\",\"Tibetan\",\"Baima\",\"Tibeto-Burman\"],\"creators\":[\"Chirkova, Ekaterina\"],\"publicationdate\":\"2005-11-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00104301\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00104301\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00104301\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00104301\",\"id\":\"oai:HAL:halshs-00104301v1\"},\"trust\":0.6185937}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00104301"},"target_publication_author_list":{"type":"LIST_STRING","value":["Chirkova, Ekaterina"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00104301v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:LANGUE] Humanities and Social Sciences/Linguistics","[SHS:LANGUE] Sciences de l\u0027Homme et Société/Linguistique","nominal postpositions","etymology","Tibetan","Baima","Tibeto-Burman"]},"trust":{"type":"FLOAT","value":0.6185937},"target_publication_title":{"type":"STRING","value":"Baima nominal postpositions and their etymology"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00104301v1\",\"titles\":[\"Baima nominal postpositions and their etymology\"],\"abstracts\":[\"International audience\",\"This article focuses on nominal postpositions, used for marking the agent, the instrument, the genitive, the definite, the locative, the ablative, the dative and the comitative, in Baima, a Tibeto-Burman language spoken in the South-West of the People\\u0027s Republic of China. \\u003cbr /\\u003eTaking previous classifications of Baima nominal postpositions (Nishida and Sun 1990; Sun 2003; Huang and Zhang 1995) as the starting point, I comment on the disputed issues in these analyses, propose a new summary of nominal postpositions in my data, argue for isomorphism of some postpositions and discuss their etymology. I demonstrate that Baima nominal postpositions are etymologically heterogeneous, some being cognate to their Classical Tibetan counterparts, some being of possibly Qiangic provenance, while others being of yet unclear origin. \\u003cbr /\\u003eThe discussion is based on a corpus of Baima stories collected in 2003-2004, of which one is appended to the article.\"],\"language\":\"eng\",\"subjects\":[\"nominal postpositions\",\"etymology\",\"Tibetan\",\"Baima\",\"Tibeto-Burman\",\"[SHS.LANGUE] Humanities and Social Sciences/Linguistics\"],\"creators\":[\"Chirkova, Ekaterina\"],\"publicationdate\":\"2005-11-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Centre de recherches linguistiques sur l\\u0027Asie orientale (CRLAO) ; École des Hautes Études en Sciences Sociales (EHESS) - INALCO PARIS - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00104301\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00104301\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00104301\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00104301\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00104301\"},\"trust\":0.4908163}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00104301v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Chirkova, Ekaterina"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00104301"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["nominal postpositions","etymology","Tibetan","Baima","Tibeto-Burman","[SHS.LANGUE] Humanities and Social Sciences/Linguistics"]},"trust":{"type":"FLOAT","value":0.4908163},"target_publication_title":{"type":"STRING","value":"Baima nominal postpositions and their etymology"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:43284\",\"titles\":[\"Sovereign Bond Yield Spillovers in the Euro Zone During the Financial and Debt Crisis\"],\"abstracts\":[\"In this paper we examine the linkages of government bond yield spreads (BYS) between Euro zone countries over the period March 3, 2007 - June 18, 2012, thus considering the intriguing features of BYS spillovers during the global financial and the Euro zone debt crisis. Splitting our sample to Euro zone periphery and core countries, and using the VAR-based spillover index approach of Diebold and Yilmaz (2012), we find that: (i) on average, BYS shocks tend to increase future BYS, and are related to news announcements and policy changes; (ii) BYS spillovers between Euro zone countries are highly intertwined, originating mostly from the periphery (Greece, Ireland, Italy, Portugal and Spain (GIIPS)) and to a lesser extent from the core (Austria, Belgium, France and Netherlands (ABFN)). The within-effect of BYS spillovers is of greater magnitude within the periphery than that within the core; iv) The between-effect (core vs periphery) of BYS spillovers suggests directional spillovers of greater magnitude from the periphery to the Euro zone core than vice-versa. Generalized impulse response analyses provide additional support to these findings. Our findings highlight the increased vulnerability of Euro zone from the destabilizing shocks originating from the beleaguered Euro zone countries in the periphery.\"],\"language\":\"und\",\"subjects\":[\"Government bond yield spread; Euro Zone debt crisis; Spillover; Vector autoregression;p Variance decomposition; Impulse response\"],\"creators\":[\"Antonakakis, Nikolaos\",\"Vergos, Konstantinos\"],\"publicationdate\":\"2012-12-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/43284/1/MPRA_paper_43284.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/43284/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/43284/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/43284/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:43284\"},\"trust\":0.34462702}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:43284"},"target_publication_author_list":{"type":"LIST_STRING","value":["Antonakakis, Nikolaos","Vergos, Konstantinos"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:43284"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Government bond yield spread; Euro Zone debt crisis; Spillover; Vector autoregression;p Variance decomposition; Impulse response"]},"trust":{"type":"FLOAT","value":0.34462702},"target_publication_title":{"type":"STRING","value":"Sovereign Bond Yield Spillovers in the Euro Zone During the Financial and Debt Crisis"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-12-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:43284\",\"titles\":[\"Sovereign Bond Yield Spillovers in the Euro Zone During the Financial and Debt Crisis\"],\"abstracts\":[\"In this paper we examine the linkages of government bond yield spreads (BYS) between Euro zone countries over the period March 3, 2007 - June 18, 2012, thus considering the intriguing features of BYS spillovers during the global financial and the Euro zone debt crisis. Splitting our sample to Euro zone periphery and core countries, and using the VAR-based spillover index approach of Diebold and Yilmaz (2012), we find that: (i) on average, BYS shocks tend to increase future BYS, and are related to news announcements and policy changes; (ii) BYS spillovers between Euro zone countries are highly intertwined, originating mostly from the periphery (Greece, Ireland, Italy, Portugal and Spain (GIIPS)) and to a lesser extent from the core (Austria, Belgium, France and Netherlands (ABFN)). The within-effect of BYS spillovers is of greater magnitude within the periphery than that within the core; iv) The between-effect (core vs periphery) of BYS spillovers suggests directional spillovers of greater magnitude from the periphery to the Euro zone core than vice-versa. Generalized impulse response analyses provide additional support to these findings. Our findings highlight the increased vulnerability of Euro zone from the destabilizing shocks originating from the beleaguered Euro zone countries in the periphery.\"],\"language\":\"eng\",\"subjects\":[\"C32 - Time-Series Models ; Dynamic Quantile Regressions ; Dynamic Treatment Effect Models ; Diffusion Processes ; State Space Models\",\"G11 - Portfolio Choice ; Investment Decisions\",\"G12 - Asset Pricing ; Trading Volume ; Bond Interest Rates\",\"G15 - International Financial Markets\",\"H63 - Debt ; Debt Management ; Sovereign Debt\",\"G01 - Financial Crises\"],\"creators\":[\"Antonakakis, Nikolaos\",\"Vergos, Konstantinos\"],\"publicationdate\":\"2012-12-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/43284/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/43284/1/MPRA_paper_43284.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/43284/1/MPRA_paper_43284.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/43284/1/MPRA_paper_43284.pdf\",\"id\":\"oai:RePEc:pra:mprapa:43284\"},\"trust\":0.7003997}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:43284"},"target_publication_author_list":{"type":"LIST_STRING","value":["Antonakakis, Nikolaos","Vergos, Konstantinos"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:43284"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["C32 - Time-Series Models ; Dynamic Quantile Regressions ; Dynamic Treatment Effect Models ; Diffusion Processes ; State Space Models","G11 - Portfolio Choice ; Investment Decisions","G12 - Asset Pricing ; Trading Volume ; Bond Interest Rates","G15 - International Financial Markets","H63 - Debt ; Debt Management ; Sovereign Debt","G01 - Financial Crises"]},"trust":{"type":"FLOAT","value":0.7003997},"target_publication_title":{"type":"STRING","value":"Sovereign Bond Yield Spillovers in the Euro Zone During the Financial and Debt Crisis"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-12-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:fr.eurecom:1218\",\"titles\":[\"Challenges in UWB signaling for ad-hoc networking\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Ultrawideband communications, mutual information, channel coding, interference channels\"],\"creators\":[\"Souilmi, Younes Knopp\"],\"publicationdate\":\"2002-10-07\",\"publisher\":\"DIMACS\",\"embargoenddate\":\"\",\"contributor\":[\"Souilmi, Younes;Knopp, Raymond\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EURECOM Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.eurecom.fr/publication/1218\",\"license\":\"OPEN\",\"hostedby\":\"EURECOM Repository\",\"instancetype\":\"Conference object\"},{\"url\":\"http://www.eurecom.fr/publication/1337\",\"license\":\"OPEN\",\"hostedby\":\"EURECOM Repository\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.eurecom.fr/publication/1337\",\"license\":\"OPEN\",\"hostedby\":\"EURECOM Repository\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"EURECOM Repository\",\"url\":\"http://www.eurecom.fr/publication/1337\",\"id\":\"oai:fr.eurecom:1337\"},\"trust\":0.45534223}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EURECOM Repository"},"target_publication_id":{"type":"STRING","value":"oai:fr.eurecom:1218"},"target_publication_author_list":{"type":"LIST_STRING","value":["Souilmi, Younes Knopp"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:fr.eurecom:1337"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::68b1fbe7f16e4ae3024973f12f3cb313"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Ultrawideband communications, mutual information, channel coding, interference channels"]},"trust":{"type":"FLOAT","value":0.45534223},"target_publication_title":{"type":"STRING","value":"Challenges in UWB signaling for ad-hoc networking"},"provenance_datasource_name":{"type":"STRING","value":"EURECOM Repository"},"target_dateofacceptance":{"type":"DATE","value":"2002-10-07"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::68b1fbe7f16e4ae3024973f12f3cb313"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:fr.eurecom:1337\",\"titles\":[\"Challenges in UWB signaling for ad-hoc networking\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Souilmi, Younes Knopp\"],\"publicationdate\":\"2003-11-01\",\"publisher\":\"DIMACS\",\"embargoenddate\":\"\",\"contributor\":[\"Souilmi, Younes;Knopp, Raymond\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EURECOM Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.eurecom.fr/publication/1337\",\"license\":\"OPEN\",\"hostedby\":\"EURECOM Repository\",\"instancetype\":\"Book\"},{\"url\":\"http://www.eurecom.fr/publication/1218\",\"license\":\"OPEN\",\"hostedby\":\"EURECOM Repository\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.eurecom.fr/publication/1218\",\"license\":\"OPEN\",\"hostedby\":\"EURECOM Repository\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"EURECOM Repository\",\"url\":\"http://www.eurecom.fr/publication/1218\",\"id\":\"oai:fr.eurecom:1218\"},\"trust\":0.89220697}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EURECOM Repository"},"target_publication_id":{"type":"STRING","value":"oai:fr.eurecom:1337"},"target_publication_author_list":{"type":"LIST_STRING","value":["Souilmi, Younes Knopp"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:fr.eurecom:1218"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::68b1fbe7f16e4ae3024973f12f3cb313"},"trust":{"type":"FLOAT","value":0.89220697},"target_publication_title":{"type":"STRING","value":"Challenges in UWB signaling for ad-hoc networking"},"provenance_datasource_name":{"type":"STRING","value":"EURECOM Repository"},"target_dateofacceptance":{"type":"DATE","value":"2003-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::68b1fbe7f16e4ae3024973f12f3cb313"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repub.eur.nl:23124\",\"titles\":[\"Neuropsychological and Behavioral Aspects of Noonan Syndrome\"],\"abstracts\":[\"Abstract: The current paper introduces concise neuropsychological assessment as an essential tool for studying the contribution of cognition and behavior in the expression of genetic syndromes, like Noonan syndrome (NS). Cognitive and behavioral findings in NS show intelligence scores across a wide\\nrange, with a mildly lowered average level. Language and\\nmotor development are often delayed, but no longer dysfunctional in adulthood. Continuing mild problems in selective\\nand sustained attention are noted, as well as suboptimal\\norganization skills and compromised abilities to structure\\ncomplex information. These problems seem to culminate in\\nlearning difficulties, requiring attention for special needs in\\neducation. It seems that a complex of psychosocial immaturity,\\nalexithymia and amenable traits is typical of NS patients.\\nConsequently, psychopathology or psychological problems\\nin leading a self-serving life may often remain underreported.\\nThis is why the authors advocate the integration of the\\ndomain of social cognition and personality in NS assessment.\"],\"language\":\"eng\",\"subjects\":[\"*Behavior\",\"Adolescent\",\"Adult\",\"Attention\",\"Child\",\"Child, Preschool\",\"Cognition\",\"Humans\",\"Infant\",\"Infant, Newborn\",\"Intelligence\",\"Language\",\"Learning Disorders\",\"Memory\",\"Mental Disorders\",\"Mutation\",\"Neuropsychological Tests\",\"Noonan Syndrome/genetics/*psychology\",\"Quality of Life\"],\"creators\":[\"Wingbermühle, P. A. M.\",\"Egger, J. I. M.\",\"Burgt, I.\",\"Verhoeven, W. M. A.\"],\"publicationdate\":\"2009-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Erasmus University Institutional Repository\"],\"pids\":[{\"value\":\"10.1159/000243774\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://repub.eur.nl/pub/23124\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1765/23124\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1765/23124\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1765/23124\",\"id\":\"eur:oai:repub.eur.nl:23124\"},\"trust\":0.7860228}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Erasmus University Institutional Repository"},"target_publication_id":{"type":"STRING","value":"oai:repub.eur.nl:23124"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wingbermühle, P. A. M.","Egger, J. I. M.","Burgt, I.","Verhoeven, W. M. A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["eur:oai:repub.eur.nl:23124"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["*Behavior","Adolescent","Adult","Attention","Child","Child, Preschool","Cognition","Humans","Infant","Infant, Newborn","Intelligence","Language","Learning Disorders","Memory","Mental Disorders","Mutation","Neuropsychological Tests","Noonan Syndrome/genetics/*psychology","Quality of Life"]},"trust":{"type":"FLOAT","value":0.7860228},"target_publication_title":{"type":"STRING","value":"Neuropsychological and Behavioral Aspects of Noonan Syndrome"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2009-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9c3b1830513cc3b8fc4b76635d32e692"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2099058\",\"titles\":[\"Production, purification, sequencing and activity spectra of mutacins D-123.1 and F-59.1\"],\"abstracts\":[\"Background The increase in bacterial resistance to antibiotics impels the development of new anti-bacterial substances. Mutacins (bacteriocins) are small antibacterial peptides produced by Streptococcus mutans showing activity against bacterial pathogens. The objective of the study was to produce and characterise additional mutacins in order to find new useful antibacterial substances. Results Mutacin F-59.1 was produced in liquid media by S. mutans 59.1 while production of mutacin D-123.1 by S. mutans 123.1 was obtained in semi-solid media. Mutacins were purified by hydrophobic chromatography. The amino acid sequences of the mutacins were obtained by Edman degradation and their molecular mass was determined by mass spectrometry. Mutacin F-59.1 consists of 25 amino acids, containing the YGNGV consensus sequence of pediocin-like bacteriocins with a molecular mass calculated at 2719 Da. Mutacin D-123.1 has an identical molecular mass (2364 Da) with the same first 9 amino acids as mutacin I. Mutacins D-123.1 and F-59.1 have wide activity spectra inhibiting human and food-borne pathogens. The lantibiotic mutacin D-123.1 possesses a broader activity spectrum than mutacin F-59.1 against the bacterial strains tested. Conclusion Mutacin F-59.1 is the first pediocin-like bacteriocin identified and characterised that is produced by Streptococcus mutans. Mutacin D-123.1 appears to be identical to mutacin I previously identified in different strains of S. mutans.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\",\"bacteriocin\",\"lantibiotic\",\"mutacin\",\"pediocin\",\"Streptococcus mutans\"],\"creators\":[\"Nicolas, Guillaume G.\",\"Lapointe, Gisèle\",\"Lavoie, Marc C.\"],\"publicationdate\":\"2011-04-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"BMC Microbiology\",\"issn\":\"\",\"eissn\":\"1471-2180\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1471-2180-11-69\",\"type\":\"doi\"},{\"value\":\"PMC3088537\",\"type\":\"pmc\"},{\"value\":\"21477375\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3088537\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.biomedcentral.com/1471-2180/11/69\",\"license\":\"OPEN\",\"hostedby\":\"BMC Microbiology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.biomedcentral.com/1471-2180/11/69\",\"license\":\"OPEN\",\"hostedby\":\"BMC Microbiology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.biomedcentral.com/1471-2180/11/69\",\"id\":\"oai:doaj.org/article:3c0c0bb29e7845e1bc64fc8944572ec0\"},\"trust\":0.6635116}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2099058"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nicolas, Guillaume G.","Lapointe, Gisèle","Lavoie, Marc C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:3c0c0bb29e7845e1bc64fc8944572ec0"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article","bacteriocin","lantibiotic","mutacin","pediocin","Streptococcus mutans"]},"trust":{"type":"FLOAT","value":0.6635116},"target_publication_title":{"type":"STRING","value":"Production, purification, sequencing and activity spectra of mutacins D-123.1 and F-59.1"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2011-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1762155\",\"titles\":[\"Umbilical endosalpingiosis: a case report\"],\"abstracts\":[\"Introduction Endosalpingiosis describes the ectopic growth of Fallopian tube epithelium. Pathology confirms the presence of a tube-like epithelium containing three types of cells: ciliated, columnar cells; non-ciliated, columnar secretory mucous cells; and intercalary cells. We report the case of a woman with umbilical endosalpingiosis and examine the nature and characteristics of cutaneous endosalpingiosis by reviewing and combining the other four cases existing in the international literature. Case presentation A 50-year-old Caucasian, Greek woman presented with a pale brown nodule in her umbilicus. The nodule was asymptomatic, with no cyclical discomfort or variation in size. Her personal medical, surgical and gynecologic history was uneventful. An excision within healthy margins was performed under local anesthesia. A cystic formation measuring 2.7×1.7×1 cm was removed. Histological examination confirmed umbilical endosalpingiosis. Conclusions Umbilical endosalpingiosis is a very rare manifestation of the non-neoplasmatic disorders of the Müllerian system. It appears with cyclic symptoms of pain and swelling of the umbilicus, but not always. The disease is diagnosed using pathologic findings and surgical excision is the definitive treatment.\"],\"language\":\"eng\",\"subjects\":[\"Case Report\"],\"creators\":[\"Papavramidis, Theodossis S.\",\"Sapalidis, Konstantinos\",\"Michalopoulos, Nick\",\"Karayannopoulou, Georgia\",\"Cheva, Angeliki\",\"Papavramidis, Spiros T.\"],\"publicationdate\":\"2010-08-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Medical Case Reports\",\"issn\":\"\",\"eissn\":\"1752-1947\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1752-1947-4-287\",\"type\":\"doi\"},{\"value\":\"PMC2936926\",\"type\":\"pmc\"},{\"value\":\"20735830\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2936926\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.jmedicalcasereports.com/content/4/1/287\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Medical Case Reports\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.jmedicalcasereports.com/content/4/1/287\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Medical Case Reports\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.jmedicalcasereports.com/content/4/1/287\",\"id\":\"oai:doaj.org/article:3f2fa66153da48bf8049a42e0ca450f3\"},\"trust\":0.9615197}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1762155"},"target_publication_author_list":{"type":"LIST_STRING","value":["Papavramidis, Theodossis S.","Sapalidis, Konstantinos","Michalopoulos, Nick","Karayannopoulou, Georgia","Cheva, Angeliki","Papavramidis, Spiros T."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:3f2fa66153da48bf8049a42e0ca450f3"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Case Report"]},"trust":{"type":"FLOAT","value":0.9615197},"target_publication_title":{"type":"STRING","value":"Umbilical endosalpingiosis: a case report"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2010-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:digirep.rhul.ac.uk:9ec6dd35-b14f-0730-8db6-b689b1a1f99e/2\",\"titles\":[\"Minimum weight modified signed-digit representations and fast exponentiation\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Jedwab, Jonathan\",\"Mitchell, Chris J.\"],\"publicationdate\":\"1989-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Royal Holloway Research Online\"],\"pids\":[{\"value\":\"10.1049/el:19890785\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://digirep.rhul.ac.uk/items/9ec6dd35-b14f-0730-8db6-b689b1a1f99e/2/\",\"license\":\"OPEN\",\"hostedby\":\"Royal Holloway Research Online\",\"instancetype\":\"Article\"},{\"url\":\"http://digirep.rhul.ac.uk/items/9ec6dd35-b14f-0730-8db6-b689b1a1f99e/3/\",\"license\":\"OPEN\",\"hostedby\":\"Royal Holloway Research Online\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://digirep.rhul.ac.uk/items/9ec6dd35-b14f-0730-8db6-b689b1a1f99e/3/\",\"license\":\"OPEN\",\"hostedby\":\"Royal Holloway Research Online\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Royal Holloway Research Online\",\"url\":\"http://digirep.rhul.ac.uk/items/9ec6dd35-b14f-0730-8db6-b689b1a1f99e/3/\",\"id\":\"oai:digirep.rhul.ac.uk:9ec6dd35-b14f-0730-8db6-b689b1a1f99e/3\"},\"trust\":0.99054533}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Royal Holloway Research Online"},"target_publication_id":{"type":"STRING","value":"oai:digirep.rhul.ac.uk:9ec6dd35-b14f-0730-8db6-b689b1a1f99e/2"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jedwab, Jonathan","Mitchell, Chris J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:digirep.rhul.ac.uk:9ec6dd35-b14f-0730-8db6-b689b1a1f99e/3"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::d395771085aab05244a4fb8fd91bf4ee"},"trust":{"type":"FLOAT","value":0.99054533},"target_publication_title":{"type":"STRING","value":"Minimum weight modified signed-digit representations and fast exponentiation"},"provenance_datasource_name":{"type":"STRING","value":"Royal Holloway Research Online"},"target_dateofacceptance":{"type":"DATE","value":"1989-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d395771085aab05244a4fb8fd91bf4ee"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:digirep.rhul.ac.uk:9ec6dd35-b14f-0730-8db6-b689b1a1f99e/3\",\"titles\":[\"Minimum weight modified signed-digit representations and fast exponentiation\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Jedwab, Jonathan\",\"Mitchell, Chris J.\"],\"publicationdate\":\"1989-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Royal Holloway Research Online\"],\"pids\":[{\"value\":\"10.1049/el:19890785\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://digirep.rhul.ac.uk/items/9ec6dd35-b14f-0730-8db6-b689b1a1f99e/3/\",\"license\":\"OPEN\",\"hostedby\":\"Royal Holloway Research Online\",\"instancetype\":\"Article\"},{\"url\":\"http://digirep.rhul.ac.uk/items/9ec6dd35-b14f-0730-8db6-b689b1a1f99e/2/\",\"license\":\"OPEN\",\"hostedby\":\"Royal Holloway Research Online\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://digirep.rhul.ac.uk/items/9ec6dd35-b14f-0730-8db6-b689b1a1f99e/2/\",\"license\":\"OPEN\",\"hostedby\":\"Royal Holloway Research Online\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Royal Holloway Research Online\",\"url\":\"http://digirep.rhul.ac.uk/items/9ec6dd35-b14f-0730-8db6-b689b1a1f99e/2/\",\"id\":\"oai:digirep.rhul.ac.uk:9ec6dd35-b14f-0730-8db6-b689b1a1f99e/2\"},\"trust\":0.39839888}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Royal Holloway Research Online"},"target_publication_id":{"type":"STRING","value":"oai:digirep.rhul.ac.uk:9ec6dd35-b14f-0730-8db6-b689b1a1f99e/3"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jedwab, Jonathan","Mitchell, Chris J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:digirep.rhul.ac.uk:9ec6dd35-b14f-0730-8db6-b689b1a1f99e/2"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::d395771085aab05244a4fb8fd91bf4ee"},"trust":{"type":"FLOAT","value":0.39839888},"target_publication_title":{"type":"STRING","value":"Minimum weight modified signed-digit representations and fast exponentiation"},"provenance_datasource_name":{"type":"STRING","value":"Royal Holloway Research Online"},"target_dateofacceptance":{"type":"DATE","value":"1989-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d395771085aab05244a4fb8fd91bf4ee"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/22948\",\"titles\":[\"Panorámica nocturna del parque la Concordia\",\"601150\",\"601150\"],\"abstracts\":[\"Panorámica nocturna del parque la Concordia. Sevilla. 1994.\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"Los Municipios\",\"Ciudad\",\"SEVILLA\",\"CLAUDIA VASQUEZ\"],\"creators\":[\"FERNANDO SALAZAR\"],\"publicationdate\":\"1994-01-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"CLAUDIA VASQUEZ\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/22948\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/42519\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/42519\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/42519\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/42519\"},\"trust\":0.73646605}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/22948"},"target_publication_author_list":{"type":"LIST_STRING","value":["FERNANDO SALAZAR"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/42519"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Los Municipios","Ciudad","SEVILLA","CLAUDIA VASQUEZ"]},"trust":{"type":"FLOAT","value":0.73646605},"target_publication_title":{"type":"STRING","value":"Panorámica nocturna del parque la Concordia"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1994-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/42519\",\"titles\":[\"Panorámica nocturna del parque la Concordia\",\"601150\",\"601150\"],\"abstracts\":[\"Panorámica nocturna del parque la Concordia. Sevilla. 1994.\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"La Naturaleza\",\"Los Paisajes\",\"SEVILLA\",\"CLAUDIA VASQUEZ\"],\"creators\":[\"FERNANDO SALAZAR\"],\"publicationdate\":\"1994-01-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"CLAUDIA VASQUEZ\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/42519\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/22948\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/22948\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/22948\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/22948\"},\"trust\":0.82432073}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/42519"},"target_publication_author_list":{"type":"LIST_STRING","value":["FERNANDO SALAZAR"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/22948"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["La Naturaleza","Los Paisajes","SEVILLA","CLAUDIA VASQUEZ"]},"trust":{"type":"FLOAT","value":0.82432073},"target_publication_title":{"type":"STRING","value":"Panorámica nocturna del parque la Concordia"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1994-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1206.6922\",\"titles\":[\"Structure of neutron stars with unified equations of state\"],\"abstracts\":[\" We present a set of three unified equations of states (EoSs) based on the\\nnuclear energy-density functional (EDF) theory.These EoSs are based on\\ngeneralized Skyrme forces fitted to essentially all experimental atomic mass\\ndata and constrained to reproduce various properties of infinite nuclear matter\\nas obtained from many-body calculations using realistic two- and three-body\\ninteractions. The structure of cold isolated neutron stars is discussed in\\nconnection with some astrophysical observations.\\n\",\"Comment: 4 pages, to appear in the proceedings of the ERPM conference, Zielona\\n Gora, Poland, April 2012\"],\"language\":\"eng\",\"subjects\":[\"Astrophysics - High Energy Astrophysical Phenomena\",\"Astrophysics - Solar and Stellar Astrophysics\",\"Nuclear Theory\"],\"creators\":[\"Fantina, A. F.\",\"Chamel, N.\",\"Pearson, J. M.\",\"Goriely, S.\"],\"publicationdate\":\"2012-06-28\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/1206.6922\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/2013/ULB-DIPOT:oai:dipot.ulb.ac.be:2013/139447\",\"license\":\"OPEN\",\"hostedby\":\"DI-fusion\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2013/ULB-DIPOT:oai:dipot.ulb.ac.be:2013/139447\",\"license\":\"OPEN\",\"hostedby\":\"DI-fusion\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"DI-fusion\",\"url\":\"http://hdl.handle.net/2013/ULB-DIPOT:oai:dipot.ulb.ac.be:2013/139447\",\"id\":\"oai:dipot.ulb.ac.be:2013/139447\"},\"trust\":0.7830781}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1206.6922"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fantina, A. F.","Chamel, N.","Pearson, J. M.","Goriely, S."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dipot.ulb.ac.be:2013/139447"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::c5866e93cab1776890fe343c9e7063fb"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Astrophysics - High Energy Astrophysical Phenomena","Astrophysics - Solar and Stellar Astrophysics","Nuclear Theory"]},"trust":{"type":"FLOAT","value":0.7830781},"target_publication_title":{"type":"STRING","value":"Structure of neutron stars with unified equations of state"},"provenance_datasource_name":{"type":"STRING","value":"DI-fusion"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-28"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dipot.ulb.ac.be:2013/139447\",\"titles\":[\"Structure of neutron stars with unified equations of state\"],\"abstracts\":[\"We present a set of three unified equations of states (EoSs) based on the nuclear energy-density functional (EDF) theory. These EoSs are based on generalized Skyrme forces fitted to essentially all experimental atomic mass data and constrained to reproduce various properties of infinite nuclear matter as obtained from many-body calculations using realistic two- and three-body interactions. The structure of cold isolated neutron stars is discussed in connection with some astrophysical observations.\",\"info:eu-repo/semantics/published\"],\"language\":\"eng\",\"subjects\":[\"Astrophysique\",\"neutron star\",\"equation of state\"],\"creators\":[\"Fantina, Anthea\",\"Chamel, Nicolas\",\"Pearson, Michael J.\",\"Goriely, Stéphane\"],\"publicationdate\":\"2013-01-09\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DI-fusion\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2013/ULB-DIPOT:oai:dipot.ulb.ac.be:2013/139447\",\"license\":\"OPEN\",\"hostedby\":\"DI-fusion\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/1206.6922\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1206.6922\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1206.6922\",\"id\":\"oai:arXiv.org:1206.6922\"},\"trust\":0.8375093}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DI-fusion"},"target_publication_id":{"type":"STRING","value":"oai:dipot.ulb.ac.be:2013/139447"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fantina, Anthea","Chamel, Nicolas","Pearson, Michael J.","Goriely, Stéphane"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1206.6922"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Astrophysique","neutron star","equation of state"]},"trust":{"type":"FLOAT","value":0.8375093},"target_publication_title":{"type":"STRING","value":"Structure of neutron stars with unified equations of state"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-09"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::c5866e93cab1776890fe343c9e7063fb"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fip:fedgsq:135\",\"titles\":[\"Economic flexibility: a speech before the National Italian American Foundation, Washington, D.C., October 12, 2005\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Economics ; Economic history\"],\"creators\":[\"Alan Greenspan\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.federalreserve.gov/boarddocs/speeches/2005/20051012/default.htm\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.federalreserve.gov/boarddocs/speeches/2005/20051012/default.htm\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.federalreserve.gov/boarddocs/speeches/2005/20051012/default.htm\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.federalreserve.gov/boarddocs/speeches/2005/20051012/default.htm\",\"id\":\"oai:RePEc:fip:fedgsq:y:2005:x:71\"},\"trust\":0.57332504}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fip:fedgsq:135"},"target_publication_author_list":{"type":"LIST_STRING","value":["Alan Greenspan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fip:fedgsq:y:2005:x:71"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Economics ; Economic history"]},"trust":{"type":"FLOAT","value":0.57332504},"target_publication_title":{"type":"STRING","value":"Economic flexibility: a speech before the National Italian American Foundation, Washington, D.C., October 12, 2005"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fip:fedgsq:y:2005:x:71\",\"titles\":[\"Economic flexibility: a speech before the National Italian American Foundation, Washington, D.C., October 12, 2005\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Economics ; Economic history\"],\"creators\":[\"Alan Greenspan\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.federalreserve.gov/boarddocs/speeches/2005/20051012/default.htm\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.federalreserve.gov/boarddocs/speeches/2005/20051012/default.htm\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.federalreserve.gov/boarddocs/speeches/2005/20051012/default.htm\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.federalreserve.gov/boarddocs/speeches/2005/20051012/default.htm\",\"id\":\"oai:RePEc:fip:fedgsq:135\"},\"trust\":0.15905142}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fip:fedgsq:y:2005:x:71"},"target_publication_author_list":{"type":"LIST_STRING","value":["Alan Greenspan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fip:fedgsq:135"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Economics ; Economic history"]},"trust":{"type":"FLOAT","value":0.15905142},"target_publication_title":{"type":"STRING","value":"Economic flexibility: a speech before the National Italian American Foundation, Washington, D.C., October 12, 2005"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"\",\"titles\":[\"Word order in Old English and Middle English subordinate clauses\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Humanities:Linguistics:English language:\",\"Humaniora:Språkvitenskapelige fag:Engelsk språk:\"],\"creators\":[\"Heggelund, Øystein Imerslund\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"The University of Bergen\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Norwegian Open Research Archives\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/1956/4002\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"http://hdl.handle.net/1956/4002\",\"license\":\"OPEN\",\"hostedby\":\"Bergen Open Research Archive - UiB\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1956/4002\",\"license\":\"OPEN\",\"hostedby\":\"Bergen Open Research Archive - UiB\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"Bergen Open Research Archive - UiB\",\"url\":\"http://hdl.handle.net/1956/4002\",\"id\":\"oai:bora.uib.no:1956/4002\"},\"trust\":0.80957884}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_publication_id":{"type":"STRING","value":""},"target_publication_author_list":{"type":"LIST_STRING","value":["Heggelund, Øystein Imerslund"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:bora.uib.no:1956/4002"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1ff1de774005f8da13f42943881c655f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Humanities:Linguistics:English language:","Humaniora:Språkvitenskapelige fag:Engelsk språk:"]},"trust":{"type":"FLOAT","value":0.80957884},"target_publication_title":{"type":"STRING","value":"Word order in Old English and Middle English subordinate clauses"},"provenance_datasource_name":{"type":"STRING","value":"Bergen Open Research Archive - UiB"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:bora.uib.no:1956/4002\",\"titles\":[\"Word order in Old English and Middle English subordinate clauses\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Heggelund, Øystein Imerslund\"],\"publicationdate\":\"2010-05-07\",\"publisher\":\"The University of Bergen\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Bergen Open Research Archive - UiB\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/1956/4002\",\"license\":\"OPEN\",\"hostedby\":\"Bergen Open Research Archive - UiB\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"http://hdl.handle.net/1956/4002\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1956/4002\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"Norwegian Open Research Archives\",\"url\":\"http://hdl.handle.net/1956/4002\",\"id\":\"\"},\"trust\":0.26689947}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Bergen Open Research Archive - UiB"},"target_publication_id":{"type":"STRING","value":"oai:bora.uib.no:1956/4002"},"target_publication_author_list":{"type":"LIST_STRING","value":["Heggelund, Øystein Imerslund"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"},"trust":{"type":"FLOAT","value":0.26689947},"target_publication_title":{"type":"STRING","value":"Word order in Old English and Middle English subordinate clauses"},"provenance_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_dateofacceptance":{"type":"DATE","value":"2010-05-07"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1ff1de774005f8da13f42943881c655f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/490906\",\"titles\":[\"Overview of Consumer Trends in Food Industry : Deliverable D2.1\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Leerstoelgroep Marktkunde en consumentengedrag\",\"Marketing and Consumer Behaviour\",\"WASS\",\"WASS\"],\"creators\":[\"Tudoran, A. A.\",\"Fischer, A. R. H.\",\"Trijp, J. C. M.\",\"Grunert, K. G.\",\"Krystallis, A.\",\"Esbjerg, L.\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"RECAPT\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/355764\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"External research report\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/490906\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/490906\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/490906\",\"id\":\"wur:oai:library.wur.nl:wurpubs/490906\"},\"trust\":0.41700947}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/490906"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tudoran, A. A.","Fischer, A. R. H.","Trijp, J. C. M.","Grunert, K. G.","Krystallis, A.","Esbjerg, L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/490906"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Leerstoelgroep Marktkunde en consumentengedrag","Marketing and Consumer Behaviour","WASS","WASS"]},"trust":{"type":"FLOAT","value":0.41700947},"target_publication_title":{"type":"STRING","value":"Overview of Consumer Trends in Food Industry : Deliverable D2.1"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2968607\",\"titles\":[\"Posterior Sternoclavicular Dislocations: A Brief Review and Technique for Closed Management of a Rare But Serious Injury\"],\"abstracts\":[\"Posterior sternoclavicular dislocations are rare but serious injuries. The proximity of the medial clavicle to the vital structures of the mediastinum warrants caution with management of the injury. Radiographs are the initial imaging test, though computed tomography and magnetic resonance imaging are essential for diagnosis and preoperative planning. This paper presents an efficient diagnostic approach and effective technique of closed reduction of posterior sternoclavicular dislocations with a brief review of open and closed reduction procedures.\"],\"language\":\"eng\",\"subjects\":[\"Brief Report\",\"trauma\",\"sternoclavicular dislocation\",\"closed reduction\",\"technique\"],\"creators\":[\"Deren, Matthew E.\",\"Behrens, Steve B.\",\"Vopat, Bryan G.\",\"Blaine, Theodore A.\"],\"publicationdate\":\"2014-03-01\",\"publisher\":\"PAGEPress Publications, Pavia, Italy\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Orthopedic Reviews\",\"issn\":\"2035-8237\",\"eissn\":\"2035-8164\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4081/or.2014.5245\",\"type\":\"doi\"},{\"value\":\"PMC3980158\",\"type\":\"pmc\"},{\"value\":\"24744842\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3980158\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.pagepress.org/journals/index.php/or/article/view/5245\",\"license\":\"OPEN\",\"hostedby\":\"Orthopedic Reviews\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.pagepress.org/journals/index.php/or/article/view/5245\",\"license\":\"OPEN\",\"hostedby\":\"Orthopedic Reviews\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.pagepress.org/journals/index.php/or/article/view/5245\",\"id\":\"oai:doaj.org/article:24ad15fc93804e57904367d9aa73b4e9\"},\"trust\":0.04283333}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2968607"},"target_publication_author_list":{"type":"LIST_STRING","value":["Deren, Matthew E.","Behrens, Steve B.","Vopat, Bryan G.","Blaine, Theodore A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:24ad15fc93804e57904367d9aa73b4e9"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Brief Report","trauma","sternoclavicular dislocation","closed reduction","technique"]},"trust":{"type":"FLOAT","value":0.04283333},"target_publication_title":{"type":"STRING","value":"Posterior Sternoclavicular Dislocations: A Brief Review and Technique for Closed Management of a Rare But Serious Injury"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00217336\",\"titles\":[\"MODÈLES D\\u0027UNIVERS NEWTONIENS\"],\"abstracts\":[\"L\\u0027auteur reconstruit les modèles classiques d\\u0027Univers newtoniens (Milne et Mc Crea 1934 ; Heckman et Sücking, 1958) à partir de l\\u0027équation de Vlasov. On montre que ces modèles reposent sur l\\u0027hypothèse unique d\\u0027équilibre thermodynamique local du fluide cosmologique. La méthode est étendue à un Univers tournant newtonien avec charges + q et — q. La grandeur caractéristique R(t) obéit alors à l\\u0027équation : R2 [MATH] + 1/3 - 2/3 R (β2R + βR βM) \\u003d 0 où βR est la constante épicyclique et βM le paramètre de Hall.\"],\"language\":\"fra/fre\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\"],\"creators\":[\"Petit, J.\"],\"publicationdate\":\"1978-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphyscol:1978139\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00217336\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00217336\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00217336\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00217336\",\"id\":\"oai:HAL:jpa-00217336v1\"},\"trust\":0.6518266}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00217336"},"target_publication_author_list":{"type":"LIST_STRING","value":["Petit, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00217336v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens"]},"trust":{"type":"FLOAT","value":0.6518266},"target_publication_title":{"type":"STRING","value":"MODÈLES D\u0027UNIVERS NEWTONIENS"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1978-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00217336v1\",\"titles\":[\"MODÈLES D\\u0027UNIVERS NEWTONIENS\"],\"abstracts\":[\"L\\u0027auteur reconstruit les modèles classiques d\\u0027Univers newtoniens (Milne et Mc Crea 1934 ; Heckman et Sücking, 1958) à partir de l\\u0027équation de Vlasov. On montre que ces modèles reposent sur l\\u0027hypothèse unique d\\u0027équilibre thermodynamique local du fluide cosmologique. La méthode est étendue à un Univers tournant newtonien avec charges + q et — q. La grandeur caractéristique R(t) obéit alors à l\\u0027équation : R2 [MATH] + 1/3 - 2/3 R (β2R + βR βM) \\u003d 0 où βR est la constante épicyclique et βM le paramètre de Hall.\"],\"language\":\"fra/fre\",\"subjects\":[\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Petit, J.\"],\"publicationdate\":\"1978-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphyscol:1978139\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00217336\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00217336\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00217336\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00217336\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00217336\"},\"trust\":0.91227084}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00217336v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Petit, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00217336"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.91227084},"target_publication_title":{"type":"STRING","value":"MODÈLES D\u0027UNIVERS NEWTONIENS"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1978-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00255146v1\",\"titles\":[\"57Fe Mössbauer Spectroscopy of Zinc Ferrite Prepared by a Variety of Synthetic Methods\"],\"abstracts\":[\"Confirmation of the suggestion of B site Zn2+ in nanocrystalline ZnFe2O4 has been sought through X-ray diffraction, 57Fe Mössbauer spectroscopy, magnetic susceptibility and TEM measurements on bulk and nanocrystalline samples prepared by different techniques. Measurements on bulk samples are in agreement with previously reported ones. Samples prepared at low temperature from solutions of salts exhibit broadened XRD patterns, susceptibilities 4-5 times that of bulk samples, broadened Mössbauer spectra and particle sizes between 5-20nm. Low-impact, ball-milled bulk samples exhibited properties similar to the low temperature, nanocrystalline samples. At 298K, the Mössbauer spectra exhibit no magnetic hyperfine splitting and no evidence for a significant proportion of A site Fe3+ ions. The unusually high susceptibilities appear to result mainly from the decreased particle size and not from profound changes in the cation distribution of a well-defined, spinel structure.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Battle, J.\",\"Clark, T.\",\"Evans, B.\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jp4:1997199\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00255146\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00255146\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00255146\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00255146\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00255146\"},\"trust\":0.41094172}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00255146v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Battle, J.","Clark, T.","Evans, B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00255146"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.41094172},"target_publication_title":{"type":"STRING","value":"57Fe Mössbauer Spectroscopy of Zinc Ferrite Prepared by a Variety of Synthetic Methods"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00255146\",\"titles\":[\"57Fe Mössbauer Spectroscopy of Zinc Ferrite Prepared by a Variety of Synthetic Methods\"],\"abstracts\":[\"Confirmation of the suggestion of B site Zn2+ in nanocrystalline ZnFe2O4 has been sought through X-ray diffraction, 57Fe Mössbauer spectroscopy, magnetic susceptibility and TEM measurements on bulk and nanocrystalline samples prepared by different techniques. Measurements on bulk samples are in agreement with previously reported ones. Samples prepared at low temperature from solutions of salts exhibit broadened XRD patterns, susceptibilities 4-5 times that of bulk samples, broadened Mössbauer spectra and particle sizes between 5-20nm. Low-impact, ball-milled bulk samples exhibited properties similar to the low temperature, nanocrystalline samples. At 298K, the Mössbauer spectra exhibit no magnetic hyperfine splitting and no evidence for a significant proportion of A site Fe3+ ions. The unusually high susceptibilities appear to result mainly from the decreased particle size and not from profound changes in the cation distribution of a well-defined, spinel structure.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\"],\"creators\":[\"Battle, J.\",\"Clark, T.\",\"Evans, B.\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jp4:1997199\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00255146\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00255146\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00255146\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00255146\",\"id\":\"oai:HAL:jpa-00255146v1\"},\"trust\":0.7116984}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00255146"},"target_publication_author_list":{"type":"LIST_STRING","value":["Battle, J.","Clark, T.","Evans, B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00255146v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens"]},"trust":{"type":"FLOAT","value":0.7116984},"target_publication_title":{"type":"STRING","value":"57Fe Mössbauer Spectroscopy of Zinc Ferrite Prepared by a Variety of Synthetic Methods"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ub.rug.nl:dbi/43565cc66cc05\",\"titles\":[\"Binding protein-dependent secondary transport in Escherichia coli : quest for an elusive substrate\"],\"abstracts\":[\"Het woord \\u0027biologie\\u0027 stamt uit het Grieks en betekent \\u0027wetenschap van de levende materie\\u0027. Microbiologie is de wetenschap van de kleine levende materie (micro \\u003d klein), en onderzoekt alle processen die plaatsvinden in zogenaamde \\u0027micro-organismen\\u0027 zoals gisten en bacteriën. Het onderzoek dat is beschreven in dit proefschrift is uitgevoerd in een laboratorium waar wordt onderzocht hoe micro-organismen enerzijds voedingsstoffen opnemen uit hun omgeving, en anderzijds afvalstoffen weer uitscheiden. Dit transport vindt plaats over celmembranen die een natuurlijke barrier vormen die het binnenste van de cel scheidt van het buitenmedium, en wordt uitgevoerd door speciale eiwitten: de \\u0027transporteiwitten\\u0027 ...\\n\\nZie: Samenvatting\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Plantinga, Tietje Hendrikje\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"University of Groningen Digital Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://irs.ub.rug.nl/ppn/256540772\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"https://www.rug.nl/research/portal/en/publications/binding-proteindependent-secondary-transport-in-escherichia-coli(82cb8b52-7d8a-4263-aed7-6851af214dc4).html\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://www.rug.nl/research/portal/en/publications/binding-proteindependent-secondary-transport-in-escherichia-coli(82cb8b52-7d8a-4263-aed7-6851af214dc4).html\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"https://www.rug.nl/research/portal/en/publications/binding-proteindependent-secondary-transport-in-escherichia-coli(82cb8b52-7d8a-4263-aed7-6851af214dc4).html\",\"id\":\"rug:oai:pure.rug.nl:publications/82cb8b52-7d8a-4263-aed7-6851af214dc4\"},\"trust\":0.38260806}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"University of Groningen Digital Archive"},"target_publication_id":{"type":"STRING","value":"oai:ub.rug.nl:dbi/43565cc66cc05"},"target_publication_author_list":{"type":"LIST_STRING","value":["Plantinga, Tietje Hendrikje"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["rug:oai:pure.rug.nl:publications/82cb8b52-7d8a-4263-aed7-6851af214dc4"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.38260806},"target_publication_title":{"type":"STRING","value":"Binding protein-dependent secondary transport in Escherichia coli : quest for an elusive substrate"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::a2557a7b2e94197ff767970b67041697"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:inria-00000545v1\",\"titles\":[\"Convergence proofs, convergence rates and stopping criterions for multi-modal or multi-objective evolutionary algorithms\"],\"abstracts\":[\"International audience\",\"We provide - convergence proofs - convergence rates - a stopping criterion for multi-objective or multi-modal evolutionary algorithms.\"],\"language\":\"eng\",\"subjects\":[\"[MATH.MATH-OC] Mathematics/Optimization and Control\"],\"creators\":[\"Bonnemay, Yann\",\"Sebag, Michèle\",\"Teytaud, Olivier\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"TAO (INRIA Futurs) ; INRIA - Université Paris XI - Paris Sud - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00000545\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.inria.fr/inria-00000545\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00000545\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/inria-00000545\",\"id\":\"oai:hal.inria.fr:inria-00000545\"},\"trust\":0.1796264}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:inria-00000545v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bonnemay, Yann","Sebag, Michèle","Teytaud, Olivier"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:inria-00000545"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH.MATH-OC] Mathematics/Optimization and Control"]},"trust":{"type":"FLOAT","value":0.1796264},"target_publication_title":{"type":"STRING","value":"Convergence proofs, convergence rates and stopping criterions for multi-modal or multi-objective evolutionary algorithms"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:inria-00000545\",\"titles\":[\"Convergence proofs, convergence rates and stopping criterions for multi-modal or multi-objective evolutionary algorithms\"],\"abstracts\":[\"We provide - convergence proofs - convergence rates - a stopping criterion for multi-objective or multi-modal evolutionary algorithms.\"],\"language\":\"eng\",\"subjects\":[\"[MATH:MATH_OC] Mathematics/Optimization and Control\",\"[MATH:MATH_OC] Mathématiques/Optimisation et contrôle\"],\"creators\":[\"Bonnemay, Yann\",\"Sebag, Michèle\",\"Teytaud, Olivier\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00000545\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.inria.fr/inria-00000545\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00000545\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/inria-00000545\",\"id\":\"oai:HAL:inria-00000545v1\"},\"trust\":0.66685295}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:inria-00000545"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bonnemay, Yann","Sebag, Michèle","Teytaud, Olivier"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:inria-00000545v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH:MATH_OC] Mathematics/Optimization and Control","[MATH:MATH_OC] Mathématiques/Optimisation et contrôle"]},"trust":{"type":"FLOAT","value":0.66685295},"target_publication_title":{"type":"STRING","value":"Convergence proofs, convergence rates and stopping criterions for multi-modal or multi-objective evolutionary algorithms"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:2bf6b8b6-39ce-492c-9b61-1c5546e7afb2\",\"titles\":[\"Measurement of an elongation of the pion source in Z decays\"],\"abstracts\":[],\"language\":\"aar\",\"subjects\":[],\"creators\":[\"Acciarri, M.\",\"Achard, P.\",\"Adriani, O.\",\"Aguilar-Benitez, M.\",\"Alcaraz, J.\",\"Alemanni, G.\",\"Allaby, J.\",\"Aloisio, A.\",\"Alviggi, Mg\",\"Ambrosi, G.\"],\"publicationdate\":\"1999-07-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1016/S0370-2693(99)00662-0\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:2bf6b8b6-39ce-492c-9b61-1c5546e7afb2\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/hep-ex/9909009\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/hep-ex/9909009\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ex/9909009\",\"id\":\"oai:arXiv.org:hep-ex/9909009\"},\"trust\":0.53435624}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:2bf6b8b6-39ce-492c-9b61-1c5546e7afb2"},"target_publication_author_list":{"type":"LIST_STRING","value":["Acciarri, M.","Achard, P.","Adriani, O.","Aguilar-Benitez, M.","Alcaraz, J.","Alemanni, G.","Allaby, J.","Aloisio, A.","Alviggi, Mg","Ambrosi, G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ex/9909009"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.53435624},"target_publication_title":{"type":"STRING","value":"Measurement of an elongation of the pion source in Z decays"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1999-07-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:2bf6b8b6-39ce-492c-9b61-1c5546e7afb2\",\"titles\":[\"Measurement of an elongation of the pion source in Z decays\"],\"abstracts\":[],\"language\":\"aar\",\"subjects\":[],\"creators\":[\"Acciarri, M.\",\"Achard, P.\",\"Adriani, O.\",\"Aguilar-Benitez, M.\",\"Alcaraz, J.\",\"Alemanni, G.\",\"Allaby, J.\",\"Aloisio, A.\",\"Alviggi, Mg\",\"Ambrosi, G.\"],\"publicationdate\":\"1999-07-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1016/S0370-2693(99)00662-0\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:2bf6b8b6-39ce-492c-9b61-1c5546e7afb2\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/hep-ex/9909009\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/hep-ex/9909009\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ex/9909009\",\"id\":\"oai:arXiv.org:hep-ex/9909009\"},\"trust\":0.53435624}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:2bf6b8b6-39ce-492c-9b61-1c5546e7afb2"},"target_publication_author_list":{"type":"LIST_STRING","value":["Acciarri, M.","Achard, P.","Adriani, O.","Aguilar-Benitez, M.","Alcaraz, J.","Alemanni, G.","Allaby, J.","Aloisio, A.","Alviggi, Mg","Ambrosi, G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ex/9909009"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.53435624},"target_publication_title":{"type":"STRING","value":"Measurement of an elongation of the pion source in Z decays"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1999-07-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:2bf6b8b6-39ce-492c-9b61-1c5546e7afb2\",\"titles\":[\"Measurement of an elongation of the pion source in Z decays\"],\"abstracts\":[\" We measure Bose-Einstein correlations between like-sign charged pion pairs in\\nhadronic Z decays with the L3 detector at LEP. The analysis is performed in\\nthree dimensions in the longitudinal center-of-mass system. The pion source is\\nfound to be elongated along the thrust axis with a ratio of transverse to\\nlongitudinal radius of $0.81\\\\pm 0.02 ^{+0.03}_{-0.19}$.\\n\"],\"language\":\"aar\",\"subjects\":[],\"creators\":[\"Acciarri, M.\",\"Achard, P.\",\"Adriani, O.\",\"Aguilar-Benitez, M.\",\"Alcaraz, J.\",\"Alemanni, G.\",\"Allaby, J.\",\"Aloisio, A.\",\"Alviggi, Mg\",\"Ambrosi, G.\"],\"publicationdate\":\"1999-07-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1016/S0370-2693(99)00662-0\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:2bf6b8b6-39ce-492c-9b61-1c5546e7afb2\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\" We measure Bose-Einstein correlations between like-sign charged pion pairs in\\nhadronic Z decays with the L3 detector at LEP. The analysis is performed in\\nthree dimensions in the longitudinal center-of-mass system. The pion source is\\nfound to be elongated along the thrust axis with a ratio of transverse to\\nlongitudinal radius of $0.81\\\\pm 0.02 ^{+0.03}_{-0.19}$.\\n\"]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ex/9909009\",\"id\":\"oai:arXiv.org:hep-ex/9909009\"},\"trust\":0.4497522}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:2bf6b8b6-39ce-492c-9b61-1c5546e7afb2"},"target_publication_author_list":{"type":"LIST_STRING","value":["Acciarri, M.","Achard, P.","Adriani, O.","Aguilar-Benitez, M.","Alcaraz, J.","Alemanni, G.","Allaby, J.","Aloisio, A.","Alviggi, Mg","Ambrosi, G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ex/9909009"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.4497522},"target_publication_title":{"type":"STRING","value":"Measurement of an elongation of the pion source in Z decays"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1999-07-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:inria-00075034\",\"titles\":[\"L\\u0027Expérimentation d\\u0027algorithmes distribués sur machines parallèles avec Echidna\"],\"abstracts\":[\"Disponible dans les fichiers attachés à ce document\"],\"language\":\"fra/fre\",\"subjects\":[\"[INFO:INFO_OH] Computer Science/Other\",\"[INFO:INFO_OH] Informatique/Autre\"],\"creators\":[\"Jézéquel, Jean-Marc\",\"Jard, Claude\"],\"publicationdate\":\"1991-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00075034\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"},{\"url\":\"https://hal.inria.fr/inria-00075034\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00075034\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/inria-00075034\",\"id\":\"oai:HAL:inria-00075034v1\"},\"trust\":0.075479984}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:inria-00075034"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jézéquel, Jean-Marc","Jard, Claude"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:inria-00075034v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_OH] Computer Science/Other","[INFO:INFO_OH] Informatique/Autre"]},"trust":{"type":"FLOAT","value":0.075479984},"target_publication_title":{"type":"STRING","value":"L\u0027Expérimentation d\u0027algorithmes distribués sur machines parallèles avec Echidna"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1991-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:inria-00075034v1\",\"titles\":[\"L\\u0027Expérimentation d\\u0027algorithmes distribués sur machines parallèles avec Echidna\"],\"abstracts\":[\"Disponible dans les fichiers attachés à ce document\"],\"language\":\"fra/fre\",\"subjects\":[\"[INFO.INFO-OH] Computer Science/Other\"],\"creators\":[\"Jézéquel, Jean-Marc\",\"Jard, Claude\"],\"publicationdate\":\"1991-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"PAMPA (INRIA - IRISA) ; INRIA - Université de Rennes 1 - Institut National des Sciences Appliquées (INSA) - Rennes - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00075034\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.inria.fr/inria-00075034\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00075034\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/inria-00075034\",\"id\":\"oai:hal.inria.fr:inria-00075034\"},\"trust\":0.63953614}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:inria-00075034v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jézéquel, Jean-Marc","Jard, Claude"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:inria-00075034"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO.INFO-OH] Computer Science/Other"]},"trust":{"type":"FLOAT","value":0.63953614},"target_publication_title":{"type":"STRING","value":"L\u0027Expérimentation d\u0027algorithmes distribués sur machines parallèles avec Echidna"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1991-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/375082\",\"titles\":[\"Land degradation and improvement in Cuba. 1: Identification by remote sensing\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Internationaal Bodemreferentie en Informatie Centrum\",\"International Soil Reference and Information Centre\",\"ICSU World Data Centre for Soils\",\"ICSU World Data Centre for Soils\",\"ISRIC - World Soil Information\",\"ISRIC - World Soil Information\"],\"creators\":[\"Bai, Z. G.\",\"Dent, D. L.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"ISRIC - World Soil Information\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/23511\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"External research report\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/375082\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/375082\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/375082\",\"id\":\"wur:oai:library.wur.nl:wurpubs/375082\"},\"trust\":0.12591493}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/375082"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bai, Z. G.","Dent, D. L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/375082"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Internationaal Bodemreferentie en Informatie Centrum","International Soil Reference and Information Centre","ICSU World Data Centre for Soils","ICSU World Data Centre for Soils","ISRIC - World Soil Information","ISRIC - World Soil Information"]},"trust":{"type":"FLOAT","value":0.12591493},"target_publication_title":{"type":"STRING","value":"Land degradation and improvement in Cuba. 1: Identification by remote sensing"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:zenodo.org:14695\",\"titles\":[\"A GTN-like Model for Plastic Porous Materials\"],\"abstracts\":[\"\\u003cp\\u003eAn extended version of the well-known Gurson-Tvergaard-Needleman (GTN) isotropic hardening model is presented in this paper. The yield function of the proposed constitutive model possesses the distinctiveness to explicitly depend upon the third stress invariant. The presented constitutive model is used to analyze the necking of a round tensile bar. As long as softening initiation of specimen is not reached, the obtained numerical results highlight similarities and good agreement with those provided by the use of the GTN model. However, discrepancy shows up as soon as specimen failure starts.\\u003c/p\\u003e\\n\\n\\u003cp\\u003e\\u0026nbsp;\\u003c/p\\u003e\"],\"language\":\"und\",\"subjects\":[\"cc-by\"],\"creators\":[\"Siad, L.\",\"Gangloff, S. C.\"],\"publicationdate\":\"2014-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"ZENODO\"],\"pids\":[{\"value\":\"10.5281/zenodo.14695\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://zenodo.org/record/14695\",\"license\":\"OPEN\",\"hostedby\":\"ZENODO\",\"instancetype\":\"Article\"},{\"url\":\"http://etasr.com/index.php/ETASR/article/view/509/275\",\"license\":\"OPEN\",\"hostedby\":\"Engineering, Technology \\u0026 Applied Science Research\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://etasr.com/index.php/ETASR/article/view/509/275\",\"license\":\"OPEN\",\"hostedby\":\"Engineering, Technology \\u0026 Applied Science Research\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://etasr.com/index.php/ETASR/article/view/509/275\",\"id\":\"oai:doaj.org/article:bc6517842dee4644961f7e2d6dc22377\"},\"trust\":0.25288796}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"ZENODO"},"target_publication_id":{"type":"STRING","value":"oai:zenodo.org:14695"},"target_publication_author_list":{"type":"LIST_STRING","value":["Siad, L.","Gangloff, S. C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:bc6517842dee4644961f7e2d6dc22377"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["cc-by"]},"trust":{"type":"FLOAT","value":0.25288796},"target_publication_title":{"type":"STRING","value":"A GTN-like Model for Plastic Porous Materials"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::358aee4cc897452c00244351e4d91f69"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:mpg:wpaper:2008_10\",\"titles\":[\"Umbrella Branding and External Certification\"],\"abstracts\":[\"We study the interdependence of optimal tax and expenditure policies. An optimal policy requires that information on preferences is made available. We first study this problem from a general mechanism design perspective and show that efficiency is possible only if the individuals who decide on public good provision face an own incentive scheme that differs from the tax system. We then study democratic mechanisms with the property that tax payers vote over public goods. Under such a mechanism, efficiency cannot be reached and welfare from public good provision declines as the inequality between rich and poor individuals increases.\"],\"language\":\"und\",\"subjects\":[\"Umbrella branding, certification, signalling\"],\"creators\":[\"Hendrik Hakenes\",\"Martin Peitz\"],\"publicationdate\":\"2008-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.coll.mpg.de/pdf_dat/2008_10online.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/26947\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/26947\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/26947\",\"id\":\"oai:econstor.eu:10419/26947\"},\"trust\":0.9174092}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:mpg:wpaper:2008_10"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hendrik Hakenes","Martin Peitz"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/26947"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Umbrella branding, certification, signalling"]},"trust":{"type":"FLOAT","value":0.9174092},"target_publication_title":{"type":"STRING","value":"Umbrella Branding and External Certification"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2008-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:mpg:wpaper:2008_10\",\"titles\":[\"Umbrella Branding and External Certification\"],\"abstracts\":[\"We study the interdependence of optimal tax and expenditure policies. An optimal policy requires that information on preferences is made available. We first study this problem from a general mechanism design perspective and show that efficiency is possible only if the individuals who decide on public good provision face an own incentive scheme that differs from the tax system. We then study democratic mechanisms with the property that tax payers vote over public goods. Under such a mechanism, efficiency cannot be reached and welfare from public good provision declines as the inequality between rich and poor individuals increases.\"],\"language\":\"und\",\"subjects\":[\"Umbrella branding, certification, signalling\"],\"creators\":[\"Hendrik Hakenes\",\"Martin Peitz\"],\"publicationdate\":\"2008-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.coll.mpg.de/pdf_dat/2008_10online.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d6601\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d6601\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d6601\",\"id\":\"oai:RePEc:cpr:ceprdp:6601\"},\"trust\":0.60932606}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:mpg:wpaper:2008_10"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hendrik Hakenes","Martin Peitz"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cpr:ceprdp:6601"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Umbrella branding, certification, signalling"]},"trust":{"type":"FLOAT","value":0.60932606},"target_publication_title":{"type":"STRING","value":"Umbrella Branding and External Certification"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/26947\",\"titles\":[\"Umbrella branding and external certification\"],\"abstracts\":[\"In a market environment with random detection of product quality, a firm can employ umbrella branding as a strategy to convince consumers of the high quality of its products. Alternatively, a firm can rely on external certification of the quality of one or both of its products. We characterize equilibria in which umbrella branding fully or partially substitutes for external certification. We also show that the potential to signal quality is improved if consumers condition their beliefs on the source of information, namely whether information comes from external certification or from random detection.\"],\"language\":\"eng\",\"subjects\":[\"L14\",\"L15\",\"M37\",\"D82\",\"ddc:650\",\"Umbrella branding\",\"certification\",\"signalling\",\"Markenpolitik\",\"Produktqualität\",\"Warenkennzeichnung\",\"Signalling\",\"Asymmetrische Information\",\"Theorie\"],\"creators\":[\"Hakenes, Hendrik\",\"Peitz, Martin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"Max Planck Inst. for Research on Collective Goods Bonn\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/26947\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.coll.mpg.de/pdf_dat/2008_10online.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.coll.mpg.de/pdf_dat/2008_10online.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.coll.mpg.de/pdf_dat/2008_10online.pdf\",\"id\":\"oai:RePEc:mpg:wpaper:2008_10\"},\"trust\":0.21483678}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/26947"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hakenes, Hendrik","Peitz, Martin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:mpg:wpaper:2008_10"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["L14","L15","M37","D82","ddc:650","Umbrella branding","certification","signalling","Markenpolitik","Produktqualität","Warenkennzeichnung","Signalling","Asymmetrische Information","Theorie"]},"trust":{"type":"FLOAT","value":0.21483678},"target_publication_title":{"type":"STRING","value":"Umbrella branding and external certification"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/26947\",\"titles\":[\"Umbrella branding and external certification\"],\"abstracts\":[\"In a market environment with random detection of product quality, a firm can employ umbrella branding as a strategy to convince consumers of the high quality of its products. Alternatively, a firm can rely on external certification of the quality of one or both of its products. We characterize equilibria in which umbrella branding fully or partially substitutes for external certification. We also show that the potential to signal quality is improved if consumers condition their beliefs on the source of information, namely whether information comes from external certification or from random detection.\"],\"language\":\"eng\",\"subjects\":[\"L14\",\"L15\",\"M37\",\"D82\",\"ddc:650\",\"Umbrella branding\",\"certification\",\"signalling\",\"Markenpolitik\",\"Produktqualität\",\"Warenkennzeichnung\",\"Signalling\",\"Asymmetrische Information\",\"Theorie\"],\"creators\":[\"Hakenes, Hendrik\",\"Peitz, Martin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"Max Planck Inst. for Research on Collective Goods Bonn\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/26947\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d6601\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d6601\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d6601\",\"id\":\"oai:RePEc:cpr:ceprdp:6601\"},\"trust\":0.5929783}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/26947"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hakenes, Hendrik","Peitz, Martin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cpr:ceprdp:6601"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["L14","L15","M37","D82","ddc:650","Umbrella branding","certification","signalling","Markenpolitik","Produktqualität","Warenkennzeichnung","Signalling","Asymmetrische Information","Theorie"]},"trust":{"type":"FLOAT","value":0.5929783},"target_publication_title":{"type":"STRING","value":"Umbrella branding and external certification"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cpr:ceprdp:6601\",\"titles\":[\"Umbrella Branding and External Certification\"],\"abstracts\":[\"In a market environment with random detection of product quality, a firm can employ umbrella branding as a strategy to convince consumers of the high quality of its products. Alternatively, a firm can rely on external certification of the quality of one or both of its products. We characterize equilibria in which umbrella branding fully or partially substitutes for external certification. We also show that the potential to signal quality is improved if consumers condition their beliefs on the source of information, namely whether information comes from external certification or from random detection.\"],\"language\":\"und\",\"subjects\":[\"certification; signalling; umbrella branding\"],\"creators\":[\"Hakenes, Hendrik\",\"Peitz, Martin\"],\"publicationdate\":\"2007-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d6601\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.coll.mpg.de/pdf_dat/2008_10online.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.coll.mpg.de/pdf_dat/2008_10online.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.coll.mpg.de/pdf_dat/2008_10online.pdf\",\"id\":\"oai:RePEc:mpg:wpaper:2008_10\"},\"trust\":0.573234}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cpr:ceprdp:6601"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hakenes, Hendrik","Peitz, Martin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:mpg:wpaper:2008_10"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["certification; signalling; umbrella branding"]},"trust":{"type":"FLOAT","value":0.573234},"target_publication_title":{"type":"STRING","value":"Umbrella Branding and External Certification"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cpr:ceprdp:6601\",\"titles\":[\"Umbrella Branding and External Certification\"],\"abstracts\":[\"In a market environment with random detection of product quality, a firm can employ umbrella branding as a strategy to convince consumers of the high quality of its products. Alternatively, a firm can rely on external certification of the quality of one or both of its products. We characterize equilibria in which umbrella branding fully or partially substitutes for external certification. We also show that the potential to signal quality is improved if consumers condition their beliefs on the source of information, namely whether information comes from external certification or from random detection.\"],\"language\":\"und\",\"subjects\":[\"certification; signalling; umbrella branding\"],\"creators\":[\"Hakenes, Hendrik\",\"Peitz, Martin\"],\"publicationdate\":\"2007-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d6601\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/26947\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/26947\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/26947\",\"id\":\"oai:econstor.eu:10419/26947\"},\"trust\":0.32308757}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cpr:ceprdp:6601"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hakenes, Hendrik","Peitz, Martin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/26947"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["certification; signalling; umbrella branding"]},"trust":{"type":"FLOAT","value":0.32308757},"target_publication_title":{"type":"STRING","value":"Umbrella Branding and External Certification"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2007-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:0a990e27-064b-4f40-9891-0c980479c944\",\"titles\":[\"Hypoxia-inducible factor regulates osteoclast-mediated bone resorption: role of angiopoietin-like 4.\"],\"abstracts\":[\"Hypoxia and the hypoxia-inducible factor (HIF) transcription factor regulate angiogenic-osteogenic coupling and osteoclast-mediated bone resorption. To determine how HIF might coordinate osteoclast and osteoblast function, we studied angiopoietin-like 4 (ANGPTL4), the top HIF target gene in an Illumina HumanWG-6 v3.0 48k array of normoxic vs. hypoxic osteoclasts differentiated from human CD14(+) monocytes (14.3-fold induction, P\\u003c0.0004). ANGPTL4 mRNA and protein were induced by 24 h at 2% O(2) in human primary osteoclasts, monocytes, and osteoblasts. ANGPTL4 protein was observed by immunofluorescence in osteoclasts and osteoblasts in vivo. Normoxic inducers of HIF (CoCl(2), desferrioxamine, and l-mimosine) and 100 ng/ml ANGPTL4 stimulated osteoclastic resorption 2- to 3-fold in assays of lacunar dentine resorption, without affecting osteoclast viability. Isoform-specific HIF-1α small interfering RNA ablated hypoxic induction of ANGPTL4 and of resorption, which was rescued by addition of exogenous ANGPTL4 (P\\u003c0.001). In the osteoblastic Saos2 cell line, ANGPTL4 caused a dose-dependent increase in proliferation (P\\u003c0.01, 100 ng/ml) and, at lower doses (1-25 ng/ml), mineralization. These results demonstrate that HIF is sufficient to enhance osteoclast-mediated bone resorption and that ANGPTL4 can compensate for HIF-1α deficiency with respect to stimulation of osteoclast activity and also augments osteoblast proliferation and differentiation.\"],\"language\":\"eng\",\"subjects\":[\"Humans\",\"Cells, Cultured\",\"Cell Line\",\"Bone Resorption\",\"RNA, Small Interfering\",\"Angiopoietins\",\"Polymerase Chain Reaction\",\"Blotting, Western\",\"Enzyme-Linked Immunosorbent Assay\",\"Cell Differentiation\",\"Cell Proliferation\",\"Immunohistochemistry\",\"Hypoxia-Inducible Factor 1, alpha Subunit\",\"Osteoclasts\"],\"creators\":[\"Knowles, Hj\",\"Cleton-Jansen, Am\",\"Korsching, E.\",\"Athanasou, Na\"],\"publicationdate\":\"2010-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1096/fj.10-162230\",\"type\":\"doi\"},{\"value\":\"PMC2992372\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:0a990e27-064b-4f40-9891-0c980479c944\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2992372\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2992372\",\"id\":\"oai:europepmc.org:2005460\"},\"trust\":0.4125573}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:0a990e27-064b-4f40-9891-0c980479c944"},"target_publication_author_list":{"type":"LIST_STRING","value":["Knowles, Hj","Cleton-Jansen, Am","Korsching, E.","Athanasou, Na"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2005460"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Humans","Cells, Cultured","Cell Line","Bone Resorption","RNA, Small Interfering","Angiopoietins","Polymerase Chain Reaction","Blotting, Western","Enzyme-Linked Immunosorbent Assay","Cell Differentiation","Cell Proliferation","Immunohistochemistry","Hypoxia-Inducible Factor 1, alpha Subunit","Osteoclasts"]},"trust":{"type":"FLOAT","value":0.4125573},"target_publication_title":{"type":"STRING","value":"Hypoxia-inducible factor regulates osteoclast-mediated bone resorption: role of angiopoietin-like 4."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:0a990e27-064b-4f40-9891-0c980479c944\",\"titles\":[\"Hypoxia-inducible factor regulates osteoclast-mediated bone resorption: role of angiopoietin-like 4.\"],\"abstracts\":[\"Hypoxia and the hypoxia-inducible factor (HIF) transcription factor regulate angiogenic-osteogenic coupling and osteoclast-mediated bone resorption. To determine how HIF might coordinate osteoclast and osteoblast function, we studied angiopoietin-like 4 (ANGPTL4), the top HIF target gene in an Illumina HumanWG-6 v3.0 48k array of normoxic vs. hypoxic osteoclasts differentiated from human CD14(+) monocytes (14.3-fold induction, P\\u003c0.0004). ANGPTL4 mRNA and protein were induced by 24 h at 2% O(2) in human primary osteoclasts, monocytes, and osteoblasts. ANGPTL4 protein was observed by immunofluorescence in osteoclasts and osteoblasts in vivo. Normoxic inducers of HIF (CoCl(2), desferrioxamine, and l-mimosine) and 100 ng/ml ANGPTL4 stimulated osteoclastic resorption 2- to 3-fold in assays of lacunar dentine resorption, without affecting osteoclast viability. Isoform-specific HIF-1α small interfering RNA ablated hypoxic induction of ANGPTL4 and of resorption, which was rescued by addition of exogenous ANGPTL4 (P\\u003c0.001). In the osteoblastic Saos2 cell line, ANGPTL4 caused a dose-dependent increase in proliferation (P\\u003c0.01, 100 ng/ml) and, at lower doses (1-25 ng/ml), mineralization. These results demonstrate that HIF is sufficient to enhance osteoclast-mediated bone resorption and that ANGPTL4 can compensate for HIF-1α deficiency with respect to stimulation of osteoclast activity and also augments osteoblast proliferation and differentiation.\"],\"language\":\"eng\",\"subjects\":[\"Humans\",\"Cells, Cultured\",\"Cell Line\",\"Bone Resorption\",\"RNA, Small Interfering\",\"Angiopoietins\",\"Polymerase Chain Reaction\",\"Blotting, Western\",\"Enzyme-Linked Immunosorbent Assay\",\"Cell Differentiation\",\"Cell Proliferation\",\"Immunohistochemistry\",\"Hypoxia-Inducible Factor 1, alpha Subunit\",\"Osteoclasts\"],\"creators\":[\"Knowles, Hj\",\"Cleton-Jansen, Am\",\"Korsching, E.\",\"Athanasou, Na\"],\"publicationdate\":\"2010-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1096/fj.10-162230\",\"type\":\"doi\"},{\"value\":\"20667978\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:0a990e27-064b-4f40-9891-0c980479c944\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"20667978\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2992372\",\"id\":\"oai:europepmc.org:2005460\"},\"trust\":0.4125573}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:0a990e27-064b-4f40-9891-0c980479c944"},"target_publication_author_list":{"type":"LIST_STRING","value":["Knowles, Hj","Cleton-Jansen, Am","Korsching, E.","Athanasou, Na"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2005460"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Humans","Cells, Cultured","Cell Line","Bone Resorption","RNA, Small Interfering","Angiopoietins","Polymerase Chain Reaction","Blotting, Western","Enzyme-Linked Immunosorbent Assay","Cell Differentiation","Cell Proliferation","Immunohistochemistry","Hypoxia-Inducible Factor 1, alpha Subunit","Osteoclasts"]},"trust":{"type":"FLOAT","value":0.4125573},"target_publication_title":{"type":"STRING","value":"Hypoxia-inducible factor regulates osteoclast-mediated bone resorption: role of angiopoietin-like 4."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:roc:rocher:548\",\"titles\":[\"Accounting for Global Dispersion of Current Accounts.\"],\"abstracts\":[\"We undertake a quantitative analysis of the dispersion of current accounts in an open economy version of incomplete insurance model, incorporating important market frictions in trade and financial flows. Calibrated with conventional parameter values, the stochastic stationary equilibrium of the model with limited borrowing can account for about two-thirds of the global dispersion of current accounts. The easing of financial frictions can explain nearly all changes in the current account dispersion in the past four decades whereas the easing of trade frictions has almost no impact on the current account dispersion.\"],\"language\":\"und\",\"subjects\":[\"Distribution of Current Account, Incomplete Markets, Frictions.\"],\"creators\":[\"Yongsung Chang\",\"Sun-Bin Kim\",\"Jaewoo Lee\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1016/j.red.2012.09.007\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://rcer.econ.rochester.edu/RCERPAPERS/rcer_548.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.red.2012.09.007\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dx.doi.org/10.1016/j.red.2012.09.007\",\"id\":\"oai:RePEc:red:issued:10-170\"},\"trust\":0.17583722}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:roc:rocher:548"},"target_publication_author_list":{"type":"LIST_STRING","value":["Yongsung Chang","Sun-Bin Kim","Jaewoo Lee"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:red:issued:10-170"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Distribution of Current Account, Incomplete Markets, Frictions."]},"trust":{"type":"FLOAT","value":0.17583722},"target_publication_title":{"type":"STRING","value":"Accounting for Global Dispersion of Current Accounts."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:roc:rocher:548\",\"titles\":[\"Accounting for Global Dispersion of Current Accounts.\"],\"abstracts\":[\"We undertake a quantitative analysis of the dispersion of current accounts in an open economy version of incomplete insurance model, incorporating important market frictions in trade and financial flows. Calibrated with conventional parameter values, the stochastic stationary equilibrium of the model with limited borrowing can account for about two-thirds of the global dispersion of current accounts. The easing of financial frictions can explain nearly all changes in the current account dispersion in the past four decades whereas the easing of trade frictions has almost no impact on the current account dispersion.\"],\"language\":\"und\",\"subjects\":[\"Distribution of Current Account, Incomplete Markets, Frictions.\"],\"creators\":[\"Yongsung Chang\",\"Sun-Bin Kim\",\"Jaewoo Lee\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1016/j.red.2012.09.007\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://rcer.econ.rochester.edu/RCERPAPERS/rcer_548.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.red.2012.09.007\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dx.doi.org/10.1016/j.red.2012.09.007\",\"id\":\"oai:RePEc:red:issued:10-170\"},\"trust\":0.17583722}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:roc:rocher:548"},"target_publication_author_list":{"type":"LIST_STRING","value":["Yongsung Chang","Sun-Bin Kim","Jaewoo Lee"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:red:issued:10-170"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Distribution of Current Account, Incomplete Markets, Frictions."]},"trust":{"type":"FLOAT","value":0.17583722},"target_publication_title":{"type":"STRING","value":"Accounting for Global Dispersion of Current Accounts."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:roc:rocher:548\",\"titles\":[\"Accounting for Global Dispersion of Current Accounts.\"],\"abstracts\":[\"We undertake a quantitative analysis of the dispersion of current accounts in an open economy version of incomplete insurance model, incorporating important market frictions in trade and financial flows. Calibrated with conventional parameter values, the stochastic stationary equilibrium of the model with limited borrowing can account for about two-thirds of the global dispersion of current accounts. The easing of financial frictions can explain nearly all changes in the current account dispersion in the past four decades whereas the easing of trade frictions has almost no impact on the current account dispersion.\"],\"language\":\"und\",\"subjects\":[\"Distribution of Current Account, Incomplete Markets, Frictions.\"],\"creators\":[\"Yongsung Chang\",\"Sun-Bin Kim\",\"Jaewoo Lee\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://rcer.econ.rochester.edu/RCERPAPERS/rcer_548.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://dx.doi.org/10.1016/j.red.2012.09.007\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1016/j.red.2012.09.007\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dx.doi.org/10.1016/j.red.2012.09.007\",\"id\":\"oai:RePEc:red:issued:10-170\"},\"trust\":0.71710247}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:roc:rocher:548"},"target_publication_author_list":{"type":"LIST_STRING","value":["Yongsung Chang","Sun-Bin Kim","Jaewoo Lee"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:red:issued:10-170"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Distribution of Current Account, Incomplete Markets, Frictions."]},"trust":{"type":"FLOAT","value":0.71710247},"target_publication_title":{"type":"STRING","value":"Accounting for Global Dispersion of Current Accounts."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:roc:rocher:548\",\"titles\":[\"Accounting for Global Dispersion of Current Accounts.\"],\"abstracts\":[\"We undertake a quantitative analysis of the dispersion of current accounts in an open economy version of incomplete insurance model, incorporating important market frictions in trade and financial flows. Calibrated with conventional parameter values, the stochastic stationary equilibrium of the model with limited borrowing can account for about two-thirds of the global dispersion of current accounts. The easing of financial frictions can explain nearly all changes in the current account dispersion in the past four decades whereas the easing of trade frictions has almost no impact on the current account dispersion.\"],\"language\":\"und\",\"subjects\":[\"Distribution of Current Account, Incomplete Markets, Frictions.\"],\"creators\":[\"Yongsung Chang\",\"Sun-Bin Kim\",\"Jaewoo Lee\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://rcer.econ.rochester.edu/RCERPAPERS/rcer_548.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.imf.org/external/pubs/cat/longres.aspx?sk\\u003d23448\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.imf.org/external/pubs/cat/longres.aspx?sk\\u003d23448\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.imf.org/external/pubs/cat/longres.aspx?sk\\u003d23448\",\"id\":\"oai:RePEc:imf:imfwpa:09/276\"},\"trust\":0.09449363}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:roc:rocher:548"},"target_publication_author_list":{"type":"LIST_STRING","value":["Yongsung Chang","Sun-Bin Kim","Jaewoo Lee"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:imf:imfwpa:09/276"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Distribution of Current Account, Incomplete Markets, Frictions."]},"trust":{"type":"FLOAT","value":0.09449363},"target_publication_title":{"type":"STRING","value":"Accounting for Global Dispersion of Current Accounts."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:red:issued:10-170\",\"titles\":[\"Accounting for Global Dispersion of Current Accounts\"],\"abstracts\":[\"We develop a multi-country quantitative model of the global distribution of current account and external balances. Countries accumulate domestic capital and foreign assets to smooth consumption over time against exogenous productivity shocks in the presence of liquidity constraints. In equilibrium, optimal consumption and investment responses to persistent productivity shocks imply a degree of intertemporal substitution across countries that can explain up to one-third of the current account dispersion in the data. (Copyright: Elsevier)\"],\"language\":\"und\",\"subjects\":[\"Dispersion of current accounts; Incomplete markets; Frictions\"],\"creators\":[\"Yongsung Chang\",\"Sun-Bin Kim\",\"Jaewoo Lee\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Review of Economic Dynamics\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1016/j.red.2012.09.007\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://dx.doi.org/10.1016/j.red.2012.09.007\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://rcer.econ.rochester.edu/RCERPAPERS/rcer_548.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://rcer.econ.rochester.edu/RCERPAPERS/rcer_548.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://rcer.econ.rochester.edu/RCERPAPERS/rcer_548.pdf\",\"id\":\"oai:RePEc:roc:rocher:548\"},\"trust\":0.9960196}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:red:issued:10-170"},"target_publication_author_list":{"type":"LIST_STRING","value":["Yongsung Chang","Sun-Bin Kim","Jaewoo Lee"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:roc:rocher:548"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Dispersion of current accounts; Incomplete markets; Frictions"]},"trust":{"type":"FLOAT","value":0.9960196},"target_publication_title":{"type":"STRING","value":"Accounting for Global Dispersion of Current Accounts"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:red:issued:10-170\",\"titles\":[\"Accounting for Global Dispersion of Current Accounts\"],\"abstracts\":[\"We develop a multi-country quantitative model of the global distribution of current account and external balances. Countries accumulate domestic capital and foreign assets to smooth consumption over time against exogenous productivity shocks in the presence of liquidity constraints. In equilibrium, optimal consumption and investment responses to persistent productivity shocks imply a degree of intertemporal substitution across countries that can explain up to one-third of the current account dispersion in the data. (Copyright: Elsevier)\"],\"language\":\"und\",\"subjects\":[\"Dispersion of current accounts; Incomplete markets; Frictions\"],\"creators\":[\"Yongsung Chang\",\"Sun-Bin Kim\",\"Jaewoo Lee\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Review of Economic Dynamics\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1016/j.red.2012.09.007\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://dx.doi.org/10.1016/j.red.2012.09.007\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.imf.org/external/pubs/cat/longres.aspx?sk\\u003d23448\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.imf.org/external/pubs/cat/longres.aspx?sk\\u003d23448\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.imf.org/external/pubs/cat/longres.aspx?sk\\u003d23448\",\"id\":\"oai:RePEc:imf:imfwpa:09/276\"},\"trust\":0.014711142}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:red:issued:10-170"},"target_publication_author_list":{"type":"LIST_STRING","value":["Yongsung Chang","Sun-Bin Kim","Jaewoo Lee"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:imf:imfwpa:09/276"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Dispersion of current accounts; Incomplete markets; Frictions"]},"trust":{"type":"FLOAT","value":0.014711142},"target_publication_title":{"type":"STRING","value":"Accounting for Global Dispersion of Current Accounts"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:imf:imfwpa:09/276\",\"titles\":[\"Accounting for Global Dispersion of Current Accounts\"],\"abstracts\":[\"We undertake a quantitative analysis of the dispersion of current accounts in an open economy version of incomplete insurance model, incorporating important market frictions in trade and financial flows. Calibrated with conventional parameter values, the stochastic stationary equilibrium of the model with limited borrowing can account for about two-thirds of the global dispersion of current accounts. The easing of financial frictions can explain nearly all changes in the current account dispersion in the past four decades whereas the easing of trade frictions has almost no impact on the current account dispersion.\"],\"language\":\"und\",\"subjects\":[\"Economic models;External shocks;Current account;Cross country analysis;Capital transactions;Consumer goods;International capital markets;International trade;International financial system;Distribution of Current Account, Incomplete Markets, Frictions, current accounts, current account imbalances, current account balances, current account deficit,\"],\"creators\":[\"Jaewoo Lee\",\"Yongsung Chang\",\"Sun-Bin Kim\"],\"publicationdate\":\"2009-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.imf.org/external/pubs/cat/longres.aspx?sk\\u003d23448\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://rcer.econ.rochester.edu/RCERPAPERS/rcer_548.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://rcer.econ.rochester.edu/RCERPAPERS/rcer_548.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://rcer.econ.rochester.edu/RCERPAPERS/rcer_548.pdf\",\"id\":\"oai:RePEc:roc:rocher:548\"},\"trust\":0.8407639}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:imf:imfwpa:09/276"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jaewoo Lee","Yongsung Chang","Sun-Bin Kim"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:roc:rocher:548"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Economic models;External shocks;Current account;Cross country analysis;Capital transactions;Consumer goods;International capital markets;International trade;International financial system;Distribution of Current Account, Incomplete Markets, Frictions, current accounts, current account imbalances, current account balances, current account deficit,"]},"trust":{"type":"FLOAT","value":0.8407639},"target_publication_title":{"type":"STRING","value":"Accounting for Global Dispersion of Current Accounts"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:imf:imfwpa:09/276\",\"titles\":[\"Accounting for Global Dispersion of Current Accounts\"],\"abstracts\":[\"We undertake a quantitative analysis of the dispersion of current accounts in an open economy version of incomplete insurance model, incorporating important market frictions in trade and financial flows. Calibrated with conventional parameter values, the stochastic stationary equilibrium of the model with limited borrowing can account for about two-thirds of the global dispersion of current accounts. The easing of financial frictions can explain nearly all changes in the current account dispersion in the past four decades whereas the easing of trade frictions has almost no impact on the current account dispersion.\"],\"language\":\"und\",\"subjects\":[\"Economic models;External shocks;Current account;Cross country analysis;Capital transactions;Consumer goods;International capital markets;International trade;International financial system;Distribution of Current Account, Incomplete Markets, Frictions, current accounts, current account imbalances, current account balances, current account deficit,\"],\"creators\":[\"Jaewoo Lee\",\"Yongsung Chang\",\"Sun-Bin Kim\"],\"publicationdate\":\"2009-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1016/j.red.2012.09.007\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.imf.org/external/pubs/cat/longres.aspx?sk\\u003d23448\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.red.2012.09.007\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dx.doi.org/10.1016/j.red.2012.09.007\",\"id\":\"oai:RePEc:red:issued:10-170\"},\"trust\":0.8283876}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:imf:imfwpa:09/276"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jaewoo Lee","Yongsung Chang","Sun-Bin Kim"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:red:issued:10-170"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Economic models;External shocks;Current account;Cross country analysis;Capital transactions;Consumer goods;International capital markets;International trade;International financial system;Distribution of Current Account, Incomplete Markets, Frictions, current accounts, current account imbalances, current account balances, current account deficit,"]},"trust":{"type":"FLOAT","value":0.8283876},"target_publication_title":{"type":"STRING","value":"Accounting for Global Dispersion of Current Accounts"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:imf:imfwpa:09/276\",\"titles\":[\"Accounting for Global Dispersion of Current Accounts\"],\"abstracts\":[\"We undertake a quantitative analysis of the dispersion of current accounts in an open economy version of incomplete insurance model, incorporating important market frictions in trade and financial flows. Calibrated with conventional parameter values, the stochastic stationary equilibrium of the model with limited borrowing can account for about two-thirds of the global dispersion of current accounts. The easing of financial frictions can explain nearly all changes in the current account dispersion in the past four decades whereas the easing of trade frictions has almost no impact on the current account dispersion.\"],\"language\":\"und\",\"subjects\":[\"Economic models;External shocks;Current account;Cross country analysis;Capital transactions;Consumer goods;International capital markets;International trade;International financial system;Distribution of Current Account, Incomplete Markets, Frictions, current accounts, current account imbalances, current account balances, current account deficit,\"],\"creators\":[\"Jaewoo Lee\",\"Yongsung Chang\",\"Sun-Bin Kim\"],\"publicationdate\":\"2009-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1016/j.red.2012.09.007\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.imf.org/external/pubs/cat/longres.aspx?sk\\u003d23448\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.red.2012.09.007\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dx.doi.org/10.1016/j.red.2012.09.007\",\"id\":\"oai:RePEc:red:issued:10-170\"},\"trust\":0.8283876}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:imf:imfwpa:09/276"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jaewoo Lee","Yongsung Chang","Sun-Bin Kim"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:red:issued:10-170"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Economic models;External shocks;Current account;Cross country analysis;Capital transactions;Consumer goods;International capital markets;International trade;International financial system;Distribution of Current Account, Incomplete Markets, Frictions, current accounts, current account imbalances, current account balances, current account deficit,"]},"trust":{"type":"FLOAT","value":0.8283876},"target_publication_title":{"type":"STRING","value":"Accounting for Global Dispersion of Current Accounts"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:imf:imfwpa:09/276\",\"titles\":[\"Accounting for Global Dispersion of Current Accounts\"],\"abstracts\":[\"We undertake a quantitative analysis of the dispersion of current accounts in an open economy version of incomplete insurance model, incorporating important market frictions in trade and financial flows. Calibrated with conventional parameter values, the stochastic stationary equilibrium of the model with limited borrowing can account for about two-thirds of the global dispersion of current accounts. The easing of financial frictions can explain nearly all changes in the current account dispersion in the past four decades whereas the easing of trade frictions has almost no impact on the current account dispersion.\"],\"language\":\"und\",\"subjects\":[\"Economic models;External shocks;Current account;Cross country analysis;Capital transactions;Consumer goods;International capital markets;International trade;International financial system;Distribution of Current Account, Incomplete Markets, Frictions, current accounts, current account imbalances, current account balances, current account deficit,\"],\"creators\":[\"Jaewoo Lee\",\"Yongsung Chang\",\"Sun-Bin Kim\"],\"publicationdate\":\"2009-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.imf.org/external/pubs/cat/longres.aspx?sk\\u003d23448\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://dx.doi.org/10.1016/j.red.2012.09.007\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1016/j.red.2012.09.007\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dx.doi.org/10.1016/j.red.2012.09.007\",\"id\":\"oai:RePEc:red:issued:10-170\"},\"trust\":0.914374}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:imf:imfwpa:09/276"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jaewoo Lee","Yongsung Chang","Sun-Bin Kim"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:red:issued:10-170"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Economic models;External shocks;Current account;Cross country analysis;Capital transactions;Consumer goods;International capital markets;International trade;International financial system;Distribution of Current Account, Incomplete Markets, Frictions, current accounts, current account imbalances, current account balances, current account deficit,"]},"trust":{"type":"FLOAT","value":0.914374},"target_publication_title":{"type":"STRING","value":"Accounting for Global Dispersion of Current Accounts"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repub.eur.nl:73258\",\"titles\":[\"How Guillain-Barré patients experience their functioning after 1 year\"],\"abstracts\":[\"Objective - To analyze how the patient himself perceives his physical and social situation 1 year after Guillain-Barré syndrome (GBS). Material and method - The Dutch patients who participated in an international multicenter trial were asked to complete a self-administered questionnaire containing questions on their physical status at homecoming and at 12 months, as well as questions dealing with various aspects of their social condition. Results - Ninety patients participated. Up to 72% had sensory disturbances and loss of power in part of the arms and up to 89% in part of the legs at homecoming. At 12 months, a significant improvement had occurred, but residua were perceived in 36 and 67%, respectively. The residua ranged from irritating to seriously disturbing in up to 49%, and only 33% felt completely cured. Furthermore, 32% had changed their work due to GBS, 30% did not function at home as well as before and 52% had altered their leisure activities. Conclusion - One year after the onset of GBS, a considerable number of patients still perceived a decrease of power and sensation with an often disturbing effect. GBS had an evident impact on daily life and social well-being.\"],\"language\":\"eng\",\"subjects\":[\"Daily life\",\"Functioning\",\"Guillain-Barré syndrome\",\"Impact\",\"Perception\",\"Social\"],\"creators\":[\"Bernsen, R. A. J. A. M.\",\"Jager, A. E. J.\",\"Meché, F. G. A.\",\"Suurmeijer, T. P. B. M.\"],\"publicationdate\":\"2005-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Erasmus University Institutional Repository\"],\"pids\":[{\"value\":\"10.1111/j.1600-0404.2005.00429.x\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://repub.eur.nl/pub/73258\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Article\"},{\"url\":\"https://www.rug.nl/research/portal/en/publications/how-guillainbarre-patients-experience-their-functioning-after-1-year(197882ce-3979-4f78-a2bf-35db98ca8bb8).html\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://www.rug.nl/research/portal/en/publications/how-guillainbarre-patients-experience-their-functioning-after-1-year(197882ce-3979-4f78-a2bf-35db98ca8bb8).html\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"https://www.rug.nl/research/portal/en/publications/how-guillainbarre-patients-experience-their-functioning-after-1-year(197882ce-3979-4f78-a2bf-35db98ca8bb8).html\",\"id\":\"rug:oai:pure.rug.nl:publications/197882ce-3979-4f78-a2bf-35db98ca8bb8\"},\"trust\":0.07549155}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Erasmus University Institutional Repository"},"target_publication_id":{"type":"STRING","value":"oai:repub.eur.nl:73258"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bernsen, R. A. J. A. M.","Jager, A. E. J.","Meché, F. G. A.","Suurmeijer, T. P. B. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["rug:oai:pure.rug.nl:publications/197882ce-3979-4f78-a2bf-35db98ca8bb8"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Daily life","Functioning","Guillain-Barré syndrome","Impact","Perception","Social"]},"trust":{"type":"FLOAT","value":0.07549155},"target_publication_title":{"type":"STRING","value":"How Guillain-Barré patients experience their functioning after 1 year"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2005-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9c3b1830513cc3b8fc4b76635d32e692"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repub.eur.nl:73258\",\"titles\":[\"How Guillain-Barré patients experience their functioning after 1 year\"],\"abstracts\":[\"Objective - To analyze how the patient himself perceives his physical and social situation 1 year after Guillain-Barré syndrome (GBS). Material and method - The Dutch patients who participated in an international multicenter trial were asked to complete a self-administered questionnaire containing questions on their physical status at homecoming and at 12 months, as well as questions dealing with various aspects of their social condition. Results - Ninety patients participated. Up to 72% had sensory disturbances and loss of power in part of the arms and up to 89% in part of the legs at homecoming. At 12 months, a significant improvement had occurred, but residua were perceived in 36 and 67%, respectively. The residua ranged from irritating to seriously disturbing in up to 49%, and only 33% felt completely cured. Furthermore, 32% had changed their work due to GBS, 30% did not function at home as well as before and 52% had altered their leisure activities. Conclusion - One year after the onset of GBS, a considerable number of patients still perceived a decrease of power and sensation with an often disturbing effect. GBS had an evident impact on daily life and social well-being.\"],\"language\":\"eng\",\"subjects\":[\"Daily life\",\"Functioning\",\"Guillain-Barré syndrome\",\"Impact\",\"Perception\",\"Social\"],\"creators\":[\"Bernsen, R. A. J. A. M.\",\"Jager, A. E. J.\",\"Meché, F. G. A.\",\"Suurmeijer, T. P. B. M.\"],\"publicationdate\":\"2005-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Erasmus University Institutional Repository\"],\"pids\":[{\"value\":\"10.1111/j.1600-0404.2005.00429.x\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://repub.eur.nl/pub/73258\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1765/73258\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1765/73258\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1765/73258\",\"id\":\"eur:oai:repub.eur.nl:73258\"},\"trust\":0.1668948}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Erasmus University Institutional Repository"},"target_publication_id":{"type":"STRING","value":"oai:repub.eur.nl:73258"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bernsen, R. A. J. A. M.","Jager, A. E. J.","Meché, F. G. A.","Suurmeijer, T. P. B. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["eur:oai:repub.eur.nl:73258"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Daily life","Functioning","Guillain-Barré syndrome","Impact","Perception","Social"]},"trust":{"type":"FLOAT","value":0.1668948},"target_publication_title":{"type":"STRING","value":"How Guillain-Barré patients experience their functioning after 1 year"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2005-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9c3b1830513cc3b8fc4b76635d32e692"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repub.eur.nl:73258\",\"titles\":[\"How Guillain-Barré patients experience their functioning after 1 year\"],\"abstracts\":[\"Objective - To analyze how the patient himself perceives his physical and social situation 1 year after Guillain-Barré syndrome (GBS). Material and method - The Dutch patients who participated in an international multicenter trial were asked to complete a self-administered questionnaire containing questions on their physical status at homecoming and at 12 months, as well as questions dealing with various aspects of their social condition. Results - Ninety patients participated. Up to 72% had sensory disturbances and loss of power in part of the arms and up to 89% in part of the legs at homecoming. At 12 months, a significant improvement had occurred, but residua were perceived in 36 and 67%, respectively. The residua ranged from irritating to seriously disturbing in up to 49%, and only 33% felt completely cured. Furthermore, 32% had changed their work due to GBS, 30% did not function at home as well as before and 52% had altered their leisure activities. Conclusion - One year after the onset of GBS, a considerable number of patients still perceived a decrease of power and sensation with an often disturbing effect. GBS had an evident impact on daily life and social well-being.\"],\"language\":\"eng\",\"subjects\":[\"Daily life\",\"Functioning\",\"Guillain-Barré syndrome\",\"Impact\",\"Perception\",\"Social\"],\"creators\":[\"Bernsen, R. A. J. A. M.\",\"Jager, A. E. J.\",\"Meché, F. G. A.\",\"Suurmeijer, T. P. B. M.\"],\"publicationdate\":\"2005-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Erasmus University Institutional Repository\"],\"pids\":[{\"value\":\"10.1111/j.1600-0404.2005.00429.x\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://repub.eur.nl/pub/73258\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Article\"},{\"url\":\"https://www.rug.nl/research/portal/en/publications/how-guillainbarre-patients-experience-their-functioning-after-1-year(4fb15b92-e77d-46a3-8a40-83c1887453ca).html\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://www.rug.nl/research/portal/en/publications/how-guillainbarre-patients-experience-their-functioning-after-1-year(4fb15b92-e77d-46a3-8a40-83c1887453ca).html\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"https://www.rug.nl/research/portal/en/publications/how-guillainbarre-patients-experience-their-functioning-after-1-year(4fb15b92-e77d-46a3-8a40-83c1887453ca).html\",\"id\":\"rug:oai:pure.rug.nl:publications/4fb15b92-e77d-46a3-8a40-83c1887453ca\"},\"trust\":0.008311391}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Erasmus University Institutional Repository"},"target_publication_id":{"type":"STRING","value":"oai:repub.eur.nl:73258"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bernsen, R. A. J. A. M.","Jager, A. E. J.","Meché, F. G. A.","Suurmeijer, T. P. B. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["rug:oai:pure.rug.nl:publications/4fb15b92-e77d-46a3-8a40-83c1887453ca"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Daily life","Functioning","Guillain-Barré syndrome","Impact","Perception","Social"]},"trust":{"type":"FLOAT","value":0.008311391},"target_publication_title":{"type":"STRING","value":"How Guillain-Barré patients experience their functioning after 1 year"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2005-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9c3b1830513cc3b8fc4b76635d32e692"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/472004\",\"titles\":[\"Arbeidsorganisatie - onderzoek op een aantal gemengde bedrijven van 10 - 18 ha in Noord-Brabant\"],\"abstracts\":[],\"language\":\"dut/nld\",\"subjects\":[\"agrarische bedrijfsvoering\",\"farm management\",\"agrarische bedrijfsplanning\",\"farm planning\",\"landbouwbedrijven\",\"farms\",\"bedrijfssystemen\",\"farming systems\",\"gemengde landbouw\",\"mixed farming\",\"nederland\",\"netherlands\",\"noord-brabant\"],\"creators\":[\"Halman, Z. J.\"],\"publicationdate\":\"1966-01-01\",\"publisher\":\"[s.n.]\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/333803\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"External research report\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/472004\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/472004\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/472004\",\"id\":\"wur:oai:library.wur.nl:wurpubs/472004\"},\"trust\":0.37191594}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/472004"},"target_publication_author_list":{"type":"LIST_STRING","value":["Halman, Z. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/472004"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["agrarische bedrijfsvoering","farm management","agrarische bedrijfsplanning","farm planning","landbouwbedrijven","farms","bedrijfssystemen","farming systems","gemengde landbouw","mixed farming","nederland","netherlands","noord-brabant"]},"trust":{"type":"FLOAT","value":0.37191594},"target_publication_title":{"type":"STRING","value":"Arbeidsorganisatie - onderzoek op een aantal gemengde bedrijven van 10 - 18 ha in Noord-Brabant"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1966-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00669143\",\"titles\":[\"L\\u0027écriture de l\\u0027histoire dans la Crónica Sarracina de Pedro de Corral : le roi et son conseiller sous le regard d\\u0027Eleastras, l\\u0027historien\"],\"abstracts\":[\"La Crónica Sarracina de Pedro de Corral est une œuvre singulière. Issue en grande partie de l\\u0027imagination de l\\u0027auteur, l\\u0027œuvre n\\u0027en appartient pas moins au genre historiographique : il s\\u0027agit donc d\\u0027une chronique complexe à mi-chemin entre histoire et fiction que Corral essaie de rendre crédible. L\\u0027analyse des relations entre Rodrigue et Julián - son conseiller -, la présence et le rôle du chroniqueur constituent un bon exemple de cette tentative de (re)construction historique.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:LITT] Humanities and Social Sciences/Literature\",\"[SHS:LITT] Sciences de l\\u0027Homme et Société/Littératures\",\"Crónica Sarracina\",\"littérature chevaleresque\",\"histoire\",\"historiographie\",\"écriture\",\"fiction\",\"conseil\",\"quinzième siècle\",\"Pedro de Corral\"],\"creators\":[\"Alchalabi, Frédéric\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00669143\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://e-spania.revues.org/20595\",\"license\":\"OPEN\",\"hostedby\":\"E-Spania\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://e-spania.revues.org/20595\",\"license\":\"OPEN\",\"hostedby\":\"E-Spania\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://e-spania.revues.org/20595\",\"id\":\"oai:doaj.org/article:7722d00bd2324d7f89b0970aef4d1f42\"},\"trust\":0.7458043}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00669143"},"target_publication_author_list":{"type":"LIST_STRING","value":["Alchalabi, Frédéric"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:7722d00bd2324d7f89b0970aef4d1f42"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:LITT] Humanities and Social Sciences/Literature","[SHS:LITT] Sciences de l\u0027Homme et Société/Littératures","Crónica Sarracina","littérature chevaleresque","histoire","historiographie","écriture","fiction","conseil","quinzième siècle","Pedro de Corral"]},"trust":{"type":"FLOAT","value":0.7458043},"target_publication_title":{"type":"STRING","value":"L\u0027écriture de l\u0027histoire dans la Crónica Sarracina de Pedro de Corral : le roi et son conseiller sous le regard d\u0027Eleastras, l\u0027historien"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00669143\",\"titles\":[\"L\\u0027écriture de l\\u0027histoire dans la Crónica Sarracina de Pedro de Corral : le roi et son conseiller sous le regard d\\u0027Eleastras, l\\u0027historien\"],\"abstracts\":[\"La Crónica Sarracina de Pedro de Corral est une œuvre singulière. Issue en grande partie de l\\u0027imagination de l\\u0027auteur, l\\u0027œuvre n\\u0027en appartient pas moins au genre historiographique : il s\\u0027agit donc d\\u0027une chronique complexe à mi-chemin entre histoire et fiction que Corral essaie de rendre crédible. L\\u0027analyse des relations entre Rodrigue et Julián - son conseiller -, la présence et le rôle du chroniqueur constituent un bon exemple de cette tentative de (re)construction historique.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:LITT] Humanities and Social Sciences/Literature\",\"[SHS:LITT] Sciences de l\\u0027Homme et Société/Littératures\",\"Crónica Sarracina\",\"littérature chevaleresque\",\"histoire\",\"historiographie\",\"écriture\",\"fiction\",\"conseil\",\"quinzième siècle\",\"Pedro de Corral\"],\"creators\":[\"Alchalabi, Frédéric\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00669143\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00669143\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00669143\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00669143\",\"id\":\"oai:HAL:halshs-00669143v1\"},\"trust\":0.792485}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00669143"},"target_publication_author_list":{"type":"LIST_STRING","value":["Alchalabi, Frédéric"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00669143v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:LITT] Humanities and Social Sciences/Literature","[SHS:LITT] Sciences de l\u0027Homme et Société/Littératures","Crónica Sarracina","littérature chevaleresque","histoire","historiographie","écriture","fiction","conseil","quinzième siècle","Pedro de Corral"]},"trust":{"type":"FLOAT","value":0.792485},"target_publication_title":{"type":"STRING","value":"L\u0027écriture de l\u0027histoire dans la Crónica Sarracina de Pedro de Corral : le roi et son conseiller sous le regard d\u0027Eleastras, l\u0027historien"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00669143v1\",\"titles\":[\"L\\u0027écriture de l\\u0027histoire dans la Crónica Sarracina de Pedro de Corral : le roi et son conseiller sous le regard d\\u0027Eleastras, l\\u0027historien\"],\"abstracts\":[\"International audience\",\"La Crónica Sarracina de Pedro de Corral es una obra singular. Si bien es cierto que el libro se debe a la imaginación del autor, es una obra que pertenece al género historiográfico : es pues una crónica compleja que se sitúa entre lo ficticio y lo histórico, en la cual Corral se esfuerza por dar credibilidad a su ficción. Tanto el análisis de las relaciones entre el rey Rodrigo y su consejero el conde Julián como la presencia y el papel del cronista constituyen un buen ejemplo de ese intento de (re)construcción histórica.\",\"La Crónica Sarracina de Pedro de Corral est une œuvre singulière. Issue en grande partie de l\\u0027imagination de l\\u0027auteur, l\\u0027œuvre n\\u0027en appartient pas moins au genre historiographique : il s\\u0027agit donc d\\u0027une chronique complexe à mi-chemin entre histoire et fiction que Corral essaie de rendre crédible. L\\u0027analyse des relations entre Rodrigue et Julián - son conseiller -, la présence et le rôle du chroniqueur constituent un bon exemple de cette tentative de (re)construction historique.\"],\"language\":\"fra/fre\",\"subjects\":[\"Crónica Sarracina\",\"literatura caballeresca\",\"historia\",\"historiografía\",\"escritura\",\"ficción\",\"consejo\",\"siglo XV\",\"Pedro de Corral\",\"[SHS.LITT] Humanities and Social Sciences/Literature\"],\"creators\":[\"Alchalabi, Frédéric\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Université Paris-Sorbonne\",\"embargoenddate\":\"\",\"contributor\":[\"Approche interdisciplinaire des logiques de pouvoir dans les sociétés ibériques médiévales (GDRE AILP) ; Université Lumière - Lyon II - Université Paris IV - Paris Sorbonne - École des Hautes Études en Sciences Sociales (EHESS) - Universidad Autónoma de Madrid - École Normale Supérieure (ENS) - Lyon - Université Complutense de Madrid - Universié de Zaragoza - CSIC-Madrid - Université de Porto - CNRS\",\"SEMH - Sorbonne (CLEA EA 4083) ; Université Paris IV - Paris Sorbonne\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00669143\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00669143\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00669143\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00669143\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00669143\"},\"trust\":0.5926752}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00669143v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Alchalabi, Frédéric"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00669143"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Crónica Sarracina","literatura caballeresca","historia","historiografía","escritura","ficción","consejo","siglo XV","Pedro de Corral","[SHS.LITT] Humanities and Social Sciences/Literature"]},"trust":{"type":"FLOAT","value":0.5926752},"target_publication_title":{"type":"STRING","value":"L\u0027écriture de l\u0027histoire dans la Crónica Sarracina de Pedro de Corral : le roi et son conseiller sous le regard d\u0027Eleastras, l\u0027historien"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00669143v1\",\"titles\":[\"L\\u0027écriture de l\\u0027histoire dans la Crónica Sarracina de Pedro de Corral : le roi et son conseiller sous le regard d\\u0027Eleastras, l\\u0027historien\"],\"abstracts\":[\"International audience\",\"La Crónica Sarracina de Pedro de Corral es una obra singular. Si bien es cierto que el libro se debe a la imaginación del autor, es una obra que pertenece al género historiográfico : es pues una crónica compleja que se sitúa entre lo ficticio y lo histórico, en la cual Corral se esfuerza por dar credibilidad a su ficción. Tanto el análisis de las relaciones entre el rey Rodrigo y su consejero el conde Julián como la presencia y el papel del cronista constituyen un buen ejemplo de ese intento de (re)construcción histórica.\",\"La Crónica Sarracina de Pedro de Corral est une œuvre singulière. Issue en grande partie de l\\u0027imagination de l\\u0027auteur, l\\u0027œuvre n\\u0027en appartient pas moins au genre historiographique : il s\\u0027agit donc d\\u0027une chronique complexe à mi-chemin entre histoire et fiction que Corral essaie de rendre crédible. L\\u0027analyse des relations entre Rodrigue et Julián - son conseiller -, la présence et le rôle du chroniqueur constituent un bon exemple de cette tentative de (re)construction historique.\"],\"language\":\"fra/fre\",\"subjects\":[\"Crónica Sarracina\",\"literatura caballeresca\",\"historia\",\"historiografía\",\"escritura\",\"ficción\",\"consejo\",\"siglo XV\",\"Pedro de Corral\",\"[SHS.LITT] Humanities and Social Sciences/Literature\"],\"creators\":[\"Alchalabi, Frédéric\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Université Paris-Sorbonne\",\"embargoenddate\":\"\",\"contributor\":[\"Approche interdisciplinaire des logiques de pouvoir dans les sociétés ibériques médiévales (GDRE AILP) ; Université Lumière - Lyon II - Université Paris IV - Paris Sorbonne - École des Hautes Études en Sciences Sociales (EHESS) - Universidad Autónoma de Madrid - École Normale Supérieure (ENS) - Lyon - Université Complutense de Madrid - Universié de Zaragoza - CSIC-Madrid - Université de Porto - CNRS\",\"SEMH - Sorbonne (CLEA EA 4083) ; Université Paris IV - Paris Sorbonne\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00669143\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://e-spania.revues.org/20595\",\"license\":\"OPEN\",\"hostedby\":\"E-Spania\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://e-spania.revues.org/20595\",\"license\":\"OPEN\",\"hostedby\":\"E-Spania\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://e-spania.revues.org/20595\",\"id\":\"oai:doaj.org/article:7722d00bd2324d7f89b0970aef4d1f42\"},\"trust\":0.43749827}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00669143v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Alchalabi, Frédéric"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:7722d00bd2324d7f89b0970aef4d1f42"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Crónica Sarracina","literatura caballeresca","historia","historiografía","escritura","ficción","consejo","siglo XV","Pedro de Corral","[SHS.LITT] Humanities and Social Sciences/Literature"]},"trust":{"type":"FLOAT","value":0.43749827},"target_publication_title":{"type":"STRING","value":"L\u0027écriture de l\u0027histoire dans la Crónica Sarracina de Pedro de Corral : le roi et son conseiller sous le regard d\u0027Eleastras, l\u0027historien"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2988627\",\"titles\":[\"Single Ascending Dose Safety and Pharmacokinetics of CDRI-97/78: First-in-Human Study of a Novel Antimalarial Drug\"],\"abstracts\":[\"Background. CDRI 97/78 has shown efficacy in animal models of falciparum malaria. The present study is the first in-human phase I trial in healthy volunteers. Methods. The study was conducted in 50 healthy volunteers in a single, ascending dose, randomized, placebo-controlled, double blind design. The dose ranges evaluated were from 80 mg to 700 mg. Volunteers were assessed for clinical, biochemical, haematological, radiographic, and electrocardiographic parameters for any adverse events in an in-house facility. After evaluation of safety study results, another cohort of 16 participants were administered a single oral dose of 200 mg of the drug and a detailed pharmacokinetic analysis was undertaken. Results. The compound was found to be well tolerated. MTD was not reached. The few adverse events noted were of grade 2 severity, not requiring intervention and not showing any dose response relationship. The laboratory and electrocardiographic parameters showed statistically significant differences, but all were within the predefined normal range. These parameters were not associated with symptoms/signs and hence regarded as clinically irrelevant. Mean values of T 1/2, MRT, and AUC0−∞ of the active metabolite 97/63 were 11.85 ± 1.94 h, 13.77 ± 2.05 h, and 878.74 ± 133.15 ng·h/mL, respectively Conclusion. The novel 1,2,4 trioxane CDRI 97/78 is safe and will be an asset in malarial therapy if results are replicated in multiple dose studies and benefit is shown in confirmatory trials.\"],\"language\":\"eng\",\"subjects\":[\"Clinical Study\"],\"creators\":[\"Shafiq, N.\",\"Rajagopalan, S.\",\"Kushwaha, H. N.\",\"Mittal, N.\",\"Chandurkar, N.\",\"Bhalla, A.\",\"Kaur, S.\",\"Pandhi, P.\",\"Puri, G. D.\",\"Achuthan, S.\"],\"publicationdate\":\"2014-03-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Malaria Research and Treatment\",\"issn\":\"2090-8075\",\"eissn\":\"2044-4362\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2014/372521\",\"type\":\"doi\"},{\"value\":\"PMC3985299\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3985299\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2014/372521\",\"license\":\"OPEN\",\"hostedby\":\"Malaria Research and Treatment\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2014/372521\",\"license\":\"OPEN\",\"hostedby\":\"Malaria Research and Treatment\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2014/372521\",\"id\":\"oai:doaj.org/article:20b0a279414345aa962ed766ba945cbd\"},\"trust\":0.099435806}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2988627"},"target_publication_author_list":{"type":"LIST_STRING","value":["Shafiq, N.","Rajagopalan, S.","Kushwaha, H. N.","Mittal, N.","Chandurkar, N.","Bhalla, A.","Kaur, S.","Pandhi, P.","Puri, G. D.","Achuthan, S."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:20b0a279414345aa962ed766ba945cbd"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Clinical Study"]},"trust":{"type":"FLOAT","value":0.099435806},"target_publication_title":{"type":"STRING","value":"Single Ascending Dose Safety and Pharmacokinetics of CDRI-97/78: First-in-Human Study of a Novel Antimalarial Drug"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dare:15430\",\"titles\":[\"The limiting distribution of the t-ratio for the unit root test in an AR(1)\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Dietrich, Franz K.\"],\"publicationdate\":\"2001-01-01\",\"publisher\":\"xford [etc.] : Blackwell\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UM Publications\"],\"pids\":[],\"instances\":[{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d12041\",\"license\":\"OPEN\",\"hostedby\":\"UM Publications\",\"instancetype\":\"Article\"},{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d12041\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d12041\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d12041\",\"id\":\"oai:RePEc:ner:maastr:urn:nbn:nl:ui:27-15430\"},\"trust\":0.0070946813}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UM Publications"},"target_publication_id":{"type":"STRING","value":"oai:dare:15430"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dietrich, Franz K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ner:maastr:urn:nbn:nl:ui:27-15430"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.0070946813},"target_publication_title":{"type":"STRING","value":"The limiting distribution of the t-ratio for the unit root test in an AR(1)"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2001-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::fe9fc289c3ff0af142b6d3bead98a923"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ner:maastr:urn:nbn:nl:ui:27-15430\",\"titles\":[\"The limiting distribution of the t-ratio for the unit root test in an AR(1).\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Dietrich, Franz K.\"],\"publicationdate\":\"2001-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d12041\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d12041\",\"license\":\"OPEN\",\"hostedby\":\"UM Publications\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d12041\",\"license\":\"OPEN\",\"hostedby\":\"UM Publications\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"UM Publications\",\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d12041\",\"id\":\"oai:dare:15430\"},\"trust\":0.48214728}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ner:maastr:urn:nbn:nl:ui:27-15430"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dietrich, Franz K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dare:15430"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::fe9fc289c3ff0af142b6d3bead98a923"},"trust":{"type":"FLOAT","value":0.48214728},"target_publication_title":{"type":"STRING","value":"The limiting distribution of the t-ratio for the unit root test in an AR(1)."},"provenance_datasource_name":{"type":"STRING","value":"UM Publications"},"target_dateofacceptance":{"type":"DATE","value":"2001-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3110633\",\"titles\":[\"Novel Targets and Small Molecular Interventions for Liver Cancer\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Editorial\"],\"creators\":[\"Jiang, Chunping\",\"Wu, Youmin\",\"Zhou, Jian\",\"Zhao, Jingmin\"],\"publicationdate\":\"2014-08-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"BioMed Research International\",\"issn\":\"2314-6133\",\"eissn\":\"2314-6141\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2014/148783\",\"type\":\"doi\"},{\"value\":\"PMC4137653\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4137653\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2014/148783\",\"license\":\"OPEN\",\"hostedby\":\"BioMed Research International\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2014/148783\",\"license\":\"OPEN\",\"hostedby\":\"BioMed Research International\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2014/148783\",\"id\":\"oai:doaj.org/article:dc7d6e59b0a14f1c8dacccef900dc123\"},\"trust\":0.4079399}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3110633"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jiang, Chunping","Wu, Youmin","Zhou, Jian","Zhao, Jingmin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:dc7d6e59b0a14f1c8dacccef900dc123"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Editorial"]},"trust":{"type":"FLOAT","value":0.4079399},"target_publication_title":{"type":"STRING","value":"Novel Targets and Small Molecular Interventions for Liver Cancer"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2517716\",\"titles\":[\"African Ancestry Is a Predictor Factor to Secondary Progression in Clinical Course of Multiple Sclerosis\"],\"abstracts\":[\"Background. Studies on the clinical course of multiple sclerosis have indicated that certain initial clinical factors are predictive of disease progression. Regions with a low prevalence for disease, which have environmental and genetic factors that differ from areas of high prevalence, lack studies on the progressive course and disabling characteristics of the disease. Objective. To analyse the long-term evolution to the progressive phase of the relapsing-remitting multiple sclerosis and its prognosis factors in mixed population. Methods. We performed a survival study and logistic regression to examine the influence of demographic and initial clinical factors on disease progression. Among 553 relapsing-remitting patients assisted at a Brazilian reference centre for multiple sclerosis, we reviewed the medical records of 150 patients who had a disease for ten or more years. Results. African ancestry was a factor that conferred more risk for secondary progression followed by age at the onset of the disease and the number of relapses in the year after diagnosis. A greater understanding of the influence of ancestry on prognosis serves to stimulate genetics and pharmacogenomics research and may clarify the poorly understood neurodegenerative progression of MS.\"],\"language\":\"eng\",\"subjects\":[\"Clinical Study\"],\"creators\":[\"Ferreira Vasconcelos, Claudia Cristina\",\"Cruz Dos Santos, Gutemberg Augusto\",\"Thuler, Luiz Claudio\",\"Camargo, Solange Maria\",\"Papais Alvarenga, Regina Maria\"],\"publicationdate\":\"2012-11-01\",\"publisher\":\"International Scholarly Research Network\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"ISRN Neurology\",\"issn\":\"2090-5505\",\"eissn\":\"2090-5513\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.5402/2012/410629\",\"type\":\"doi\"},{\"value\":\"PMC3512303\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3512303\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.5402/2012/410629\",\"license\":\"OPEN\",\"hostedby\":\"ISRN Neurology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.5402/2012/410629\",\"license\":\"OPEN\",\"hostedby\":\"ISRN Neurology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.5402/2012/410629\",\"id\":\"oai:doaj.org/article:e983cfa932354413b3eb36a6f146fa5a\"},\"trust\":0.20563471}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2517716"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ferreira Vasconcelos, Claudia Cristina","Cruz Dos Santos, Gutemberg Augusto","Thuler, Luiz Claudio","Camargo, Solange Maria","Papais Alvarenga, Regina Maria"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:e983cfa932354413b3eb36a6f146fa5a"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Clinical Study"]},"trust":{"type":"FLOAT","value":0.20563471},"target_publication_title":{"type":"STRING","value":"African Ancestry Is a Predictor Factor to Secondary Progression in Clinical Course of Multiple Sclerosis"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:doc.utwente.nl:77710\",\"titles\":[\"Control charts for high-quality processes: MAX or CUMAX?\"],\"abstracts\":[\"For attribute data with (very) small failure rates control charts were introduced which are based on subsequent groups of r failure times, for some r \\u003e\\u003d 1. Within this family, it was shown to be attractive to stop once the maximum of such a group is sufficiently small, because this choice allows a very satisfactory nonparametric adaptation. The question we address here is whether a cumulative approach offers even further improvement. Thus instead of fixed groups, we shall use the first sequence of r consecutive sufficiently small failure times to produce a signal. A further reason for considering this type of chart is the fact that it forms the nonparametric counterpart of the well-known sets method.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Albers, Willem\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Department of Applied Mathematics, University of Twente\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit Twente Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://purl.utwente.nl/publications/77710\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Report\"},{\"url\":\"http://purl.utwente.nl/publications/77710\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://purl.utwente.nl/publications/77710\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://purl.utwente.nl/publications/77710\",\"id\":\"ut:oai:doc.utwente.nl:77710\"},\"trust\":0.44084775}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit Twente Repository"},"target_publication_id":{"type":"STRING","value":"oai:doc.utwente.nl:77710"},"target_publication_author_list":{"type":"LIST_STRING","value":["Albers, Willem"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["ut:oai:doc.utwente.nl:77710"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.44084775},"target_publication_title":{"type":"STRING","value":"Control charts for high-quality processes: MAX or CUMAX?"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8dd48d6a2e2cad213179a3992c0be53c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fip:fedawp:2007-22\",\"titles\":[\"A discrete choice model of dividend reinvestment plans: classification and prediction\"],\"abstracts\":[\"We study 852 companies with dividend reinvestment plans in 1999 matched by total assets to 852 companies without such plans. We use discrete choice methods to predict the classification of these companies. We interpret the misclassified companies as being likely to switch their plan status. That is, if a firm\\u0027s financial data suggest that a company should have had a dividend reinvestment plan in 1999 but did not, then we expect that it would be more likely to institute a plan than the other companies in the sample. Conversely, if it did have a plan but the financial data suggest that it should not, then we expect that the company would be more likely to drop the plan. We use data from 2004 to explore this conjecture and find evidence supporting it. Our model is an economically and statistically reliable predictor of changes in plan status. We also identify which variables have the most influence on a company\\u0027s decision whether or not to offer a plan.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Boehm, Thomas P.\",\"Degennaro, Ramon P.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1002/mde.1527\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.frbatlanta.org/filelegacydocs/wp0722.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1002/mde.1527\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://hdl.handle.net/10.1002/mde.1527\",\"id\":\"oai:RePEc:wly:mgtdec:v:32:y:2011:i:4:p:215-229\"},\"trust\":0.1595949}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fip:fedawp:2007-22"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boehm, Thomas P.","Degennaro, Ramon P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wly:mgtdec:v:32:y:2011:i:4:p:215-229"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.1595949},"target_publication_title":{"type":"STRING","value":"A discrete choice model of dividend reinvestment plans: classification and prediction"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fip:fedawp:2007-22\",\"titles\":[\"A discrete choice model of dividend reinvestment plans: classification and prediction\"],\"abstracts\":[\"We study 852 companies with dividend reinvestment plans in 1999 matched by total assets to 852 companies without such plans. We use discrete choice methods to predict the classification of these companies. We interpret the misclassified companies as being likely to switch their plan status. That is, if a firm\\u0027s financial data suggest that a company should have had a dividend reinvestment plan in 1999 but did not, then we expect that it would be more likely to institute a plan than the other companies in the sample. Conversely, if it did have a plan but the financial data suggest that it should not, then we expect that the company would be more likely to drop the plan. We use data from 2004 to explore this conjecture and find evidence supporting it. Our model is an economically and statistically reliable predictor of changes in plan status. We also identify which variables have the most influence on a company\\u0027s decision whether or not to offer a plan.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Boehm, Thomas P.\",\"Degennaro, Ramon P.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1002/mde.1527\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.frbatlanta.org/filelegacydocs/wp0722.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1002/mde.1527\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://hdl.handle.net/10.1002/mde.1527\",\"id\":\"oai:RePEc:wly:mgtdec:v:32:y:2011:i:4:p:215-229\"},\"trust\":0.1595949}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fip:fedawp:2007-22"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boehm, Thomas P.","Degennaro, Ramon P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wly:mgtdec:v:32:y:2011:i:4:p:215-229"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.1595949},"target_publication_title":{"type":"STRING","value":"A discrete choice model of dividend reinvestment plans: classification and prediction"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fip:fedawp:2007-22\",\"titles\":[\"A discrete choice model of dividend reinvestment plans: classification and prediction\"],\"abstracts\":[\"We study 852 companies with dividend reinvestment plans in 1999 matched by total assets to 852 companies without such plans. We use discrete choice methods to predict the classification of these companies. We interpret the misclassified companies as being likely to switch their plan status. That is, if a firm\\u0027s financial data suggest that a company should have had a dividend reinvestment plan in 1999 but did not, then we expect that it would be more likely to institute a plan than the other companies in the sample. Conversely, if it did have a plan but the financial data suggest that it should not, then we expect that the company would be more likely to drop the plan. We use data from 2004 to explore this conjecture and find evidence supporting it. Our model is an economically and statistically reliable predictor of changes in plan status. We also identify which variables have the most influence on a company\\u0027s decision whether or not to offer a plan.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Boehm, Thomas P.\",\"Degennaro, Ramon P.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.frbatlanta.org/filelegacydocs/wp0722.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10.1002/mde.1527\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10.1002/mde.1527\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://hdl.handle.net/10.1002/mde.1527\",\"id\":\"oai:RePEc:wly:mgtdec:v:32:y:2011:i:4:p:215-229\"},\"trust\":0.49521935}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fip:fedawp:2007-22"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boehm, Thomas P.","Degennaro, Ramon P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wly:mgtdec:v:32:y:2011:i:4:p:215-229"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.49521935},"target_publication_title":{"type":"STRING","value":"A discrete choice model of dividend reinvestment plans: classification and prediction"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fip:fedawp:2007-22\",\"titles\":[\"A discrete choice model of dividend reinvestment plans: classification and prediction\"],\"abstracts\":[\"We study 852 companies with dividend reinvestment plans in 1999 matched by total assets to 852 companies without such plans. We use discrete choice methods to predict the classification of these companies. We interpret the misclassified companies as being likely to switch their plan status. That is, if a firm\\u0027s financial data suggest that a company should have had a dividend reinvestment plan in 1999 but did not, then we expect that it would be more likely to institute a plan than the other companies in the sample. Conversely, if it did have a plan but the financial data suggest that it should not, then we expect that the company would be more likely to drop the plan. We use data from 2004 to explore this conjecture and find evidence supporting it. Our model is an economically and statistically reliable predictor of changes in plan status. We also identify which variables have the most influence on a company\\u0027s decision whether or not to offer a plan.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Boehm, Thomas P.\",\"Degennaro, Ramon P.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.frbatlanta.org/filelegacydocs/wp0722.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/70715\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/70715\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/70715\",\"id\":\"oai:econstor.eu:10419/70715\"},\"trust\":0.5649445}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fip:fedawp:2007-22"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boehm, Thomas P.","Degennaro, Ramon P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/70715"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"trust":{"type":"FLOAT","value":0.5649445},"target_publication_title":{"type":"STRING","value":"A discrete choice model of dividend reinvestment plans: classification and prediction"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:wly:mgtdec:v:32:y:2011:i:4:p:215-229\",\"titles\":[\"A discrete choice model of dividend reinvestment plans: classification and prediction\"],\"abstracts\":[\"We use a discrete choice recursive model to classify companies with and without dividend reinvestment plans (DRIPs). Our model classifies 72.0% of companies correctly. We interpret misclassified companies as being likely to switch their plan status. For example, if financial data erroneously suggest that a company should have a DRIP then we expect that it would be more likely to institute a plan than other companies in the sample. Our results support this conjecture. Companies that add DRIPs tend to have more extreme levels of variables that control for management entrenchment, higher levels of variables that control for the ability to pay dividends and higher payout ratios. Copyright (C) 2011 John Wiley \\u0026 Sons, Ltd.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Boehm, Thomas P.\",\"Degennaro, Ramon P.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Managerial and Decision Economics\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1002/mde.1527\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/10.1002/mde.1527\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.frbatlanta.org/filelegacydocs/wp0722.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.frbatlanta.org/filelegacydocs/wp0722.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.frbatlanta.org/filelegacydocs/wp0722.pdf\",\"id\":\"oai:RePEc:fip:fedawp:2007-22\"},\"trust\":0.42189568}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:wly:mgtdec:v:32:y:2011:i:4:p:215-229"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boehm, Thomas P.","Degennaro, Ramon P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fip:fedawp:2007-22"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.42189568},"target_publication_title":{"type":"STRING","value":"A discrete choice model of dividend reinvestment plans: classification and prediction"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:wly:mgtdec:v:32:y:2011:i:4:p:215-229\",\"titles\":[\"A discrete choice model of dividend reinvestment plans: classification and prediction\"],\"abstracts\":[\"We use a discrete choice recursive model to classify companies with and without dividend reinvestment plans (DRIPs). Our model classifies 72.0% of companies correctly. We interpret misclassified companies as being likely to switch their plan status. For example, if financial data erroneously suggest that a company should have a DRIP then we expect that it would be more likely to institute a plan than other companies in the sample. Our results support this conjecture. Companies that add DRIPs tend to have more extreme levels of variables that control for management entrenchment, higher levels of variables that control for the ability to pay dividends and higher payout ratios. Copyright (C) 2011 John Wiley \\u0026 Sons, Ltd.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Boehm, Thomas P.\",\"Degennaro, Ramon P.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Managerial and Decision Economics\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1002/mde.1527\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/10.1002/mde.1527\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10419/70715\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/70715\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/70715\",\"id\":\"oai:econstor.eu:10419/70715\"},\"trust\":0.35058933}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:wly:mgtdec:v:32:y:2011:i:4:p:215-229"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boehm, Thomas P.","Degennaro, Ramon P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/70715"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"trust":{"type":"FLOAT","value":0.35058933},"target_publication_title":{"type":"STRING","value":"A discrete choice model of dividend reinvestment plans: classification and prediction"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/70715\",\"titles\":[\"A discrete choice model of dividend reinvestment plans: Classification and prediction\"],\"abstracts\":[\"We study 852 companies with dividend reinvestment plans in 1999 matched by total assets to 852 companies without such plans. We use discrete choice methods to predict the classification of these companies. We interpret the misclassified companies as being likely to switch their plan status. That is, if a firm\\u0027s financial data suggest that a company should have had a dividend reinvestment plan in 1999 but did not, then we expect that it would be more likely to institute a plan than the other companies in the sample. Conversely, if it did have a plan but the financial data suggest that it should not, then we expect that the company would be more likely to drop the plan. We use data from 2004 to explore this conjecture and find evidence supporting it. Our model is an economically and statistically reliable predictor of changes in plan status. We also identify which variables have the most influence on a company\\u0027s decision whether or not to offer a plan.\"],\"language\":\"eng\",\"subjects\":[\"G20\",\"G29\",\"G35\",\"ddc:330\",\"dividend reinvestment\",\"discrete choice\",\"clustering\"],\"creators\":[\"Boehm, Thomas P.\",\"Degennaro, Ramon P.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Federal Reserve Bank of Atlanta Atlanta, GA\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/70715\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.frbatlanta.org/filelegacydocs/wp0722.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.frbatlanta.org/filelegacydocs/wp0722.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.frbatlanta.org/filelegacydocs/wp0722.pdf\",\"id\":\"oai:RePEc:fip:fedawp:2007-22\"},\"trust\":0.992015}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/70715"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boehm, Thomas P.","Degennaro, Ramon P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fip:fedawp:2007-22"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G20","G29","G35","ddc:330","dividend reinvestment","discrete choice","clustering"]},"trust":{"type":"FLOAT","value":0.992015},"target_publication_title":{"type":"STRING","value":"A discrete choice model of dividend reinvestment plans: Classification and prediction"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/70715\",\"titles\":[\"A discrete choice model of dividend reinvestment plans: Classification and prediction\"],\"abstracts\":[\"We study 852 companies with dividend reinvestment plans in 1999 matched by total assets to 852 companies without such plans. We use discrete choice methods to predict the classification of these companies. We interpret the misclassified companies as being likely to switch their plan status. That is, if a firm\\u0027s financial data suggest that a company should have had a dividend reinvestment plan in 1999 but did not, then we expect that it would be more likely to institute a plan than the other companies in the sample. Conversely, if it did have a plan but the financial data suggest that it should not, then we expect that the company would be more likely to drop the plan. We use data from 2004 to explore this conjecture and find evidence supporting it. Our model is an economically and statistically reliable predictor of changes in plan status. We also identify which variables have the most influence on a company\\u0027s decision whether or not to offer a plan.\"],\"language\":\"eng\",\"subjects\":[\"G20\",\"G29\",\"G35\",\"ddc:330\",\"dividend reinvestment\",\"discrete choice\",\"clustering\"],\"creators\":[\"Boehm, Thomas P.\",\"Degennaro, Ramon P.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Federal Reserve Bank of Atlanta Atlanta, GA\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[{\"value\":\"10.1002/mde.1527\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/70715\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1002/mde.1527\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://hdl.handle.net/10.1002/mde.1527\",\"id\":\"oai:RePEc:wly:mgtdec:v:32:y:2011:i:4:p:215-229\"},\"trust\":0.96497095}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/70715"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boehm, Thomas P.","Degennaro, Ramon P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wly:mgtdec:v:32:y:2011:i:4:p:215-229"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G20","G29","G35","ddc:330","dividend reinvestment","discrete choice","clustering"]},"trust":{"type":"FLOAT","value":0.96497095},"target_publication_title":{"type":"STRING","value":"A discrete choice model of dividend reinvestment plans: Classification and prediction"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/70715\",\"titles\":[\"A discrete choice model of dividend reinvestment plans: Classification and prediction\"],\"abstracts\":[\"We study 852 companies with dividend reinvestment plans in 1999 matched by total assets to 852 companies without such plans. We use discrete choice methods to predict the classification of these companies. We interpret the misclassified companies as being likely to switch their plan status. That is, if a firm\\u0027s financial data suggest that a company should have had a dividend reinvestment plan in 1999 but did not, then we expect that it would be more likely to institute a plan than the other companies in the sample. Conversely, if it did have a plan but the financial data suggest that it should not, then we expect that the company would be more likely to drop the plan. We use data from 2004 to explore this conjecture and find evidence supporting it. Our model is an economically and statistically reliable predictor of changes in plan status. We also identify which variables have the most influence on a company\\u0027s decision whether or not to offer a plan.\"],\"language\":\"eng\",\"subjects\":[\"G20\",\"G29\",\"G35\",\"ddc:330\",\"dividend reinvestment\",\"discrete choice\",\"clustering\"],\"creators\":[\"Boehm, Thomas P.\",\"Degennaro, Ramon P.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Federal Reserve Bank of Atlanta Atlanta, GA\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[{\"value\":\"10.1002/mde.1527\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/70715\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1002/mde.1527\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://hdl.handle.net/10.1002/mde.1527\",\"id\":\"oai:RePEc:wly:mgtdec:v:32:y:2011:i:4:p:215-229\"},\"trust\":0.96497095}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/70715"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boehm, Thomas P.","Degennaro, Ramon P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wly:mgtdec:v:32:y:2011:i:4:p:215-229"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G20","G29","G35","ddc:330","dividend reinvestment","discrete choice","clustering"]},"trust":{"type":"FLOAT","value":0.96497095},"target_publication_title":{"type":"STRING","value":"A discrete choice model of dividend reinvestment plans: Classification and prediction"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/70715\",\"titles\":[\"A discrete choice model of dividend reinvestment plans: Classification and prediction\"],\"abstracts\":[\"We study 852 companies with dividend reinvestment plans in 1999 matched by total assets to 852 companies without such plans. We use discrete choice methods to predict the classification of these companies. We interpret the misclassified companies as being likely to switch their plan status. That is, if a firm\\u0027s financial data suggest that a company should have had a dividend reinvestment plan in 1999 but did not, then we expect that it would be more likely to institute a plan than the other companies in the sample. Conversely, if it did have a plan but the financial data suggest that it should not, then we expect that the company would be more likely to drop the plan. We use data from 2004 to explore this conjecture and find evidence supporting it. Our model is an economically and statistically reliable predictor of changes in plan status. We also identify which variables have the most influence on a company\\u0027s decision whether or not to offer a plan.\"],\"language\":\"eng\",\"subjects\":[\"G20\",\"G29\",\"G35\",\"ddc:330\",\"dividend reinvestment\",\"discrete choice\",\"clustering\"],\"creators\":[\"Boehm, Thomas P.\",\"Degennaro, Ramon P.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Federal Reserve Bank of Atlanta Atlanta, GA\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/70715\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10.1002/mde.1527\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10.1002/mde.1527\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://hdl.handle.net/10.1002/mde.1527\",\"id\":\"oai:RePEc:wly:mgtdec:v:32:y:2011:i:4:p:215-229\"},\"trust\":0.34752154}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/70715"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boehm, Thomas P.","Degennaro, Ramon P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wly:mgtdec:v:32:y:2011:i:4:p:215-229"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G20","G29","G35","ddc:330","dividend reinvestment","discrete choice","clustering"]},"trust":{"type":"FLOAT","value":0.34752154},"target_publication_title":{"type":"STRING","value":"A discrete choice model of dividend reinvestment plans: Classification and prediction"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bbk:bbkefp:0401\",\"titles\":[\"Global Shocks and Unemployment Adjustment\"],\"abstracts\":[\"The literature on unemployment dynamics is mainly concerned with the nature and impact of shocks to unemployment. In this paper we use OECD unemployment data to infer the nature of these shocks using factor analysis. We find that two Principal Components can account for a large part of the variance of unemployment between and within countries. We then use regression analysis in which equilibrium unemployment depends on a global shock and domestic labour market institutions, and the institutions also determine the response to global shocks and the speed of convergence to equilibrium. We find that national unemployment series do converge to a moving equilibrium and that the responsiveness of shocks and the speed of convergence to equilibrium also change over time as domestic labour market institutions change. The calculation of the Principal Component is suggestive of the possible economic causes of long swings in unemployment.\"],\"language\":\"und\",\"subjects\":[\"unemployment dynamics, principal components, labour market institutions\"],\"creators\":[\"Ron Smith\",\"Gylfi Zoega\"],\"publicationdate\":\"2004-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.bbk.ac.uk/ems/research/wp/PDF/BWPEF0401.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.sedlabanki.is/uploads/files/wp-24.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.sedlabanki.is/uploads/files/wp-24.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.sedlabanki.is/uploads/files/wp-24.pdf\",\"id\":\"oai:RePEc:ice:wpaper:wp24_smith\"},\"trust\":0.3649186}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bbk:bbkefp:0401"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ron Smith","Gylfi Zoega"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ice:wpaper:wp24_smith"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["unemployment dynamics, principal components, labour market institutions"]},"trust":{"type":"FLOAT","value":0.3649186},"target_publication_title":{"type":"STRING","value":"Global Shocks and Unemployment Adjustment"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bbk:bbkefp:0401\",\"titles\":[\"Global Shocks and Unemployment Adjustment\"],\"abstracts\":[\"The literature on unemployment dynamics is mainly concerned with the nature and impact of shocks to unemployment. In this paper we use OECD unemployment data to infer the nature of these shocks using factor analysis. We find that two Principal Components can account for a large part of the variance of unemployment between and within countries. We then use regression analysis in which equilibrium unemployment depends on a global shock and domestic labour market institutions, and the institutions also determine the response to global shocks and the speed of convergence to equilibrium. We find that national unemployment series do converge to a moving equilibrium and that the responsiveness of shocks and the speed of convergence to equilibrium also change over time as domestic labour market institutions change. The calculation of the Principal Component is suggestive of the possible economic causes of long swings in unemployment.\"],\"language\":\"und\",\"subjects\":[\"unemployment dynamics, principal components, labour market institutions\"],\"creators\":[\"Ron Smith\",\"Gylfi Zoega\"],\"publicationdate\":\"2004-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.bbk.ac.uk/ems/research/wp/PDF/BWPEF0401.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://degit.sam.sdu.dk/papers/degit_09/C009_003.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://degit.sam.sdu.dk/papers/degit_09/C009_003.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://degit.sam.sdu.dk/papers/degit_09/C009_003.pdf\",\"id\":\"oai:RePEc:deg:conpap:c009_003\"},\"trust\":0.61521363}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bbk:bbkefp:0401"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ron Smith","Gylfi Zoega"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:deg:conpap:c009_003"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["unemployment dynamics, principal components, labour market institutions"]},"trust":{"type":"FLOAT","value":0.61521363},"target_publication_title":{"type":"STRING","value":"Global Shocks and Unemployment Adjustment"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ice:wpaper:wp24_smith\",\"titles\":[\"Global Shocks and Unemployment Adjustment\"],\"abstracts\":[\"The literature on unemployment dynamics is mainly concerned with the nature and impact of shocks to unemployment. In this paper we use OECD unemployment data to infer the nature of these shocks using factor analysis. We find that two Principal Components can account for a large part of the variance of unemployment between and within countries. We then use regression analysis in which equilibrium unemployment depends on a global shock and domestic labour market institutions, and the institutions also determine the response to global shocks and the speed of convergence to equilibrium. We find that national unemployment series do converge to a moving equilibrium and that the responsiveness shocks and the speed of convergence to equilibrium also change over time as domestic labour market institutions change. The calculation of the Principal Components is suggestive of the possible economic causes of long swings in unemployment.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Ron Smith\",\"Gylfi Zoega\"],\"publicationdate\":\"2004-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.sedlabanki.is/uploads/files/wp-24.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.bbk.ac.uk/ems/research/wp/PDF/BWPEF0401.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.bbk.ac.uk/ems/research/wp/PDF/BWPEF0401.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.bbk.ac.uk/ems/research/wp/PDF/BWPEF0401.pdf\",\"id\":\"oai:RePEc:bbk:bbkefp:0401\"},\"trust\":0.920597}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ice:wpaper:wp24_smith"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ron Smith","Gylfi Zoega"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bbk:bbkefp:0401"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.920597},"target_publication_title":{"type":"STRING","value":"Global Shocks and Unemployment Adjustment"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ice:wpaper:wp24_smith\",\"titles\":[\"Global Shocks and Unemployment Adjustment\"],\"abstracts\":[\"The literature on unemployment dynamics is mainly concerned with the nature and impact of shocks to unemployment. In this paper we use OECD unemployment data to infer the nature of these shocks using factor analysis. We find that two Principal Components can account for a large part of the variance of unemployment between and within countries. We then use regression analysis in which equilibrium unemployment depends on a global shock and domestic labour market institutions, and the institutions also determine the response to global shocks and the speed of convergence to equilibrium. We find that national unemployment series do converge to a moving equilibrium and that the responsiveness shocks and the speed of convergence to equilibrium also change over time as domestic labour market institutions change. The calculation of the Principal Components is suggestive of the possible economic causes of long swings in unemployment.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Ron Smith\",\"Gylfi Zoega\"],\"publicationdate\":\"2004-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.sedlabanki.is/uploads/files/wp-24.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://degit.sam.sdu.dk/papers/degit_09/C009_003.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://degit.sam.sdu.dk/papers/degit_09/C009_003.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://degit.sam.sdu.dk/papers/degit_09/C009_003.pdf\",\"id\":\"oai:RePEc:deg:conpap:c009_003\"},\"trust\":0.08916646}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ice:wpaper:wp24_smith"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ron Smith","Gylfi Zoega"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:deg:conpap:c009_003"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.08916646},"target_publication_title":{"type":"STRING","value":"Global Shocks and Unemployment Adjustment"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:deg:conpap:c009_003\",\"titles\":[\"Global Shocks and Unemployment Adjustment\"],\"abstracts\":[\"The literature on unemployment dynamics is mainly concerned with the nature and impact of shocks to unemployment. In this paper we use OECD unemployment data to infer the nature of these shocks using factor analysis. We find that two Principal Components can account for a large part of the variance of unemployment between and within countries. We then use regression analysis in which equilibrium unemployment depends on a global shock and domestic labour market institutions, and the institutions also determine the response to global shocks and the speed of convergence to equilibrium. We find that national unemployment series do converge to a moving equilibrium and that the responsiveness shocks and the speed of convergence to equilibrium also change over time as domestic labour market institutions change. The calculation of the Principal Components is suggestive of the possible economic causes of long swings in unemployment.\"],\"language\":\"und\",\"subjects\":[\"Unemployment dynamics, Principal Components, labour-market institutions.\"],\"creators\":[\"Ron Smith\",\"Gylfi Zoega\"],\"publicationdate\":\"2004-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://degit.sam.sdu.dk/papers/degit_09/C009_003.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.bbk.ac.uk/ems/research/wp/PDF/BWPEF0401.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.bbk.ac.uk/ems/research/wp/PDF/BWPEF0401.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.bbk.ac.uk/ems/research/wp/PDF/BWPEF0401.pdf\",\"id\":\"oai:RePEc:bbk:bbkefp:0401\"},\"trust\":0.40433466}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:deg:conpap:c009_003"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ron Smith","Gylfi Zoega"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bbk:bbkefp:0401"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Unemployment dynamics, Principal Components, labour-market institutions."]},"trust":{"type":"FLOAT","value":0.40433466},"target_publication_title":{"type":"STRING","value":"Global Shocks and Unemployment Adjustment"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:deg:conpap:c009_003\",\"titles\":[\"Global Shocks and Unemployment Adjustment\"],\"abstracts\":[\"The literature on unemployment dynamics is mainly concerned with the nature and impact of shocks to unemployment. In this paper we use OECD unemployment data to infer the nature of these shocks using factor analysis. We find that two Principal Components can account for a large part of the variance of unemployment between and within countries. We then use regression analysis in which equilibrium unemployment depends on a global shock and domestic labour market institutions, and the institutions also determine the response to global shocks and the speed of convergence to equilibrium. We find that national unemployment series do converge to a moving equilibrium and that the responsiveness shocks and the speed of convergence to equilibrium also change over time as domestic labour market institutions change. The calculation of the Principal Components is suggestive of the possible economic causes of long swings in unemployment.\"],\"language\":\"und\",\"subjects\":[\"Unemployment dynamics, Principal Components, labour-market institutions.\"],\"creators\":[\"Ron Smith\",\"Gylfi Zoega\"],\"publicationdate\":\"2004-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://degit.sam.sdu.dk/papers/degit_09/C009_003.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.sedlabanki.is/uploads/files/wp-24.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.sedlabanki.is/uploads/files/wp-24.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.sedlabanki.is/uploads/files/wp-24.pdf\",\"id\":\"oai:RePEc:ice:wpaper:wp24_smith\"},\"trust\":0.28989112}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:deg:conpap:c009_003"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ron Smith","Gylfi Zoega"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ice:wpaper:wp24_smith"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Unemployment dynamics, Principal Components, labour-market institutions."]},"trust":{"type":"FLOAT","value":0.28989112},"target_publication_title":{"type":"STRING","value":"Global Shocks and Unemployment Adjustment"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.usu.ac.id:123456789/36535\",\"titles\":[\"Peranan Lembaga Praperadilan Dalam Penegakan Hak Asasi Tersangka (Studi Kasus Di Pengadilan Negeri Medan)\"],\"abstracts\":[\"Undang-undang Nomor 14 tahun 1970 tentang ketentuan-ketentuan Pokok Kekuasaan Kehakiman yang kemudian di revisi dengan Undang-undang Nomor 4 Tahun 2004, menetapkan bahwa \\\"setiap orang, yang disangka, ditangkap, ditahan, dituntut dan atau dihadapkan di depan Pengadilan, wajib dianggap tidak bersalah sebelum adanya putusan Pengadilan, yang menyatakan kesalahannya dan memperoleh kekuatan hukum yang tetap\\\". Ketentuan ini dikenal sebagai \\\"asas praduga tidak bersalah\\\"( presumption ofinnocence ), yang kemudian diatur oleh KUHAP di dalam Penjelasan Umum sub 3.e. dengan rumusan yang sama. Jika dilihat dari kaca mata hukum, maka Undang-undang No. 14 tahun 1970 merupakan salah satu dari latar belakang dan landasan yuridis lahirnya Undang-undang No.8 Tahun 1982 tentang Hukum Acara Pidana. Hal tersebut di atas merupakan salah satu dari dasar hukum dan latar belakang lahirnya praperadilan sebagai salah satu fungsi dan wewenang Pengadilan Negeri yang melembaga dan menjadi satu kesatuan di dalanmya. Dalam rangka menegakkan keadilan dan kepastian hukum pembuat undang-undang menciptakan suatu mekanisme atau sistem dalam KUHAP tentang praperadilan yang merupakan suatu lembaga yang berwenang memeriksa dan memutus sah atau tidaknya penangkapan atau penahanan maupun tindakan lain yang dilakukan penyidik atau penuntut umum. Diadakannya suatu lembaga praperadilan seperti yang diatur dalam pasal 77 sampai dengan pasal 83 Kitab Undang-undang Hukum Acara Pidana adalah untuk kepentingan pengawasan terhadap perlindungan hak-hak tersangka/terdakwa atas upaya paksa yang dilakukan oleh penyidik atau penuntut umum. Jenis penelitian dalam Skripsi ini adalah penelitian hukum normatif. Yaitu penelitian yang memfokuskan kepada Asas-asas hukum maupun sejarah hukum acara pidana, yaitu dengan cara meneliti bahan pustaka atau data skunder, berupa hukum positif dan bagaimana penerapannya dalam praktik di Pengadilan Negeri Medan, Penelitian ini digunakan untuk menguji sejauh mana efektifitas hukum acara pidana di Pengadilan Negeri Medan, yang sesuai dengan teori dan asas-asas hukum yang berlaku (peraturan perundang-undangan) terutama Undang-undang No.8 Tahun 1981. Bahwa keberadaan praperadilan berkaitan langsung dengan perlindungan terhadap hak-hak asasi (hak-hak tersangka dan terdakwa) manusia yang sekaligus berfungsi sebagai sarana pengawasan secara harizontal. Yang dimaksud dengan pengawasan secara horizontal adalah pengawasan yang dilakukan oleh lembaga praperadilan terhadap lembaga penyidik dan penuntut umum yang sifatnya sejajar dalam pelaksanaan penegakan hokum. Berdasarkan penelitian yang penulis lakukan dapat disimpulkan bahwa : Seperti halnya pemeriksaan kasasi terhadap putusan praperadilan, maka KUHAP juga tidak mengatur tentang pemeriksaan Peninjauan kembali (PK) terhadap putusan praperadilan. Akan tetapi dalam praktik hukum sudah pernah terjadi pemeriksaan peninjauan kembali oleh MA terhadap putusan praperadilan yang didasarkan pada ketentuan pasal 263 ayat (1) KUHAP dan pasal 21 UU No. 14 Tahun 1970. Dengan demikian, pemeriksaan peninjauan kembali (PK) tetap dapat dilakukan.\",\"000200198\"],\"language\":\"ind\",\"subjects\":[\"peranan lembaga praperadilan dalam penegakan hak asasi tersangka\"],\"creators\":[\"Fakhri, Zainul\"],\"publicationdate\":\"2008-04-22\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Khair, Abdul\",\"Ablizar, Madiasa\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"USU Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/12987\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"},{\"url\":\"http://repository.usu.ac.id/handle/123456789/12987\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/12987\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"USU Repository\",\"url\":\"http://repository.usu.ac.id/handle/123456789/12987\",\"id\":\"oai:repository.usu.ac.id:123456789/12987\"},\"trust\":0.7864319}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"USU Repository"},"target_publication_id":{"type":"STRING","value":"oai:repository.usu.ac.id:123456789/36535"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fakhri, Zainul"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repository.usu.ac.id:123456789/12987"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"},"target_publication_subject_list":{"type":"LIST_STRING","value":["peranan lembaga praperadilan dalam penegakan hak asasi tersangka"]},"trust":{"type":"FLOAT","value":0.7864319},"target_publication_title":{"type":"STRING","value":"Peranan Lembaga Praperadilan Dalam Penegakan Hak Asasi Tersangka (Studi Kasus Di Pengadilan Negeri Medan)"},"provenance_datasource_name":{"type":"STRING","value":"USU Repository"},"target_dateofacceptance":{"type":"DATE","value":"2008-04-22"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.usu.ac.id:123456789/12987\",\"titles\":[\"Peranan Lembaga Praperadilan Dalam Penegakan Hak Asasi Tersangka (Studi Kasus Di Pengadilan Negeri Medan)\"],\"abstracts\":[\"Undang-undang Nomor 14 tahun 1970 tentang ketentuan-ketentuan Pokok Kekuasaan Kehakiman yang kemudian di revisi dengan Undang-undang Nomor 4 Tahun 2004, menetapkan bahwa \\\"setiap orang, yang disangka, ditangkap, ditahan, dituntut dan atau dihadapkan di depan Pengadilan, wajib dianggap tidak bersalah sebelum adanya putusan Pengadilan, yang menyatakan kesalahannya dan memperoleh kekuatan hukum yang tetap\\\". Ketentuan ini dikenal sebagai \\\"asas praduga tidak bersalah\\\"( presumption ofinnocence ), yang kemudian diatur oleh KUHAP di dalam Penjelasan Umum sub 3.e. dengan rumusan yang sama. Jika dilihat dari kaca mata hukum, maka Undang-undang No. 14 tahun 1970 merupakan salah satu dari latar belakang dan landasan yuridis lahirnya Undang-undang No.8 Tahun 1982 tentang Hukum Acara Pidana. Hal tersebut di atas merupakan salah satu dari dasar hukum dan latar belakang lahirnya praperadilan sebagai salah satu fungsi dan wewenang Pengadilan Negeri yang melembaga dan menjadi satu kesatuan di dalanmya. Dalam rangka menegakkan keadilan dan kepastian hukum pembuat undang-undang menciptakan suatu mekanisme atau sistem dalam KUHAP tentang praperadilan yang merupakan suatu lembaga yang berwenang memeriksa dan memutus sah atau tidaknya penangkapan atau penahanan maupun tindakan lain yang dilakukan penyidik atau penuntut umum. Diadakannya suatu lembaga praperadilan seperti yang diatur dalam pasal 77 sampai dengan pasal 83 Kitab Undang-undang Hukum Acara Pidana adalah untuk kepentingan pengawasan terhadap perlindungan hak-hak tersangka/terdakwa atas upaya paksa yang dilakukan oleh penyidik atau penuntut umum. Jenis penelitian dalam Skripsi ini adalah penelitian hukum normatif. Yaitu penelitian yang memfokuskan kepada Asas-asas hukum maupun sejarah hukum acara pidana, yaitu dengan cara meneliti bahan pustaka atau data skunder, berupa hukum positif dan bagaimana penerapannya dalam praktik di Pengadilan Negeri Medan, Penelitian ini digunakan untuk menguji sejauh mana efektifitas hukum acara pidana di Pengadilan Negeri Medan, yang sesuai dengan teori dan asas-asas hukum yang berlaku (peraturan perundang-undangan) terutama Undang-undang No.8 Tahun 1981. Bahwa keberadaan praperadilan berkaitan langsung dengan perlindungan terhadap hak-hak asasi (hak-hak tersangka dan terdakwa) manusia yang sekaligus berfungsi sebagai sarana pengawasan secara harizontal. Yang dimaksud dengan pengawasan secara horizontal adalah pengawasan yang dilakukan oleh lembaga praperadilan terhadap lembaga penyidik dan penuntut umum yang sifatnya sejajar dalam pelaksanaan penegakan hokum. Berdasarkan penelitian yang penulis lakukan dapat disimpulkan bahwa : Seperti halnya pemeriksaan kasasi terhadap putusan praperadilan, maka KUHAP juga tidak mengatur tentang pemeriksaan Peninjauan kembali (PK) terhadap putusan praperadilan. Akan tetapi dalam praktik hukum sudah pernah terjadi pemeriksaan peninjauan kembali oleh MA terhadap putusan praperadilan yang didasarkan pada ketentuan pasal 263 ayat (1) KUHAP dan pasal 21 UU No. 14 Tahun 1970. Dengan demikian, pemeriksaan peninjauan kembali (PK) tetap dapat dilakukan.\",\"000200198\"],\"language\":\"ind\",\"subjects\":[\"peranan lembaga praperadilan dalam penegakan hak asasi tersangka\"],\"creators\":[\"Fakhri, Zainul\"],\"publicationdate\":\"2008-04-22\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Khair, Abdul\",\"Ablizar, Madiasa\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"USU Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/12987\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"},{\"url\":\"http://repository.usu.ac.id/handle/123456789/12987\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/12987\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"USU Repository\",\"url\":\"http://repository.usu.ac.id/handle/123456789/12987\",\"id\":\"oai:repository.usu.ac.id:123456789/36535\"},\"trust\":0.6205797}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"USU Repository"},"target_publication_id":{"type":"STRING","value":"oai:repository.usu.ac.id:123456789/12987"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fakhri, Zainul"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repository.usu.ac.id:123456789/36535"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"},"target_publication_subject_list":{"type":"LIST_STRING","value":["peranan lembaga praperadilan dalam penegakan hak asasi tersangka"]},"trust":{"type":"FLOAT","value":0.6205797},"target_publication_title":{"type":"STRING","value":"Peranan Lembaga Praperadilan Dalam Penegakan Hak Asasi Tersangka (Studi Kasus Di Pengadilan Negeri Medan)"},"provenance_datasource_name":{"type":"STRING","value":"USU Repository"},"target_dateofacceptance":{"type":"DATE","value":"2008-04-22"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:ineris-00972479v1\",\"titles\":[\"An experimental set-up study accidental industrial LPG releases\"],\"abstracts\":[\"International audience\",\"The objective of the atmospheric dispersion research project of the INERIS is to develop models of flashing releases as encountered in realistic industrial environments. Equivalent source models exist for flashing release in current long rang dispersion models. Several factors can, however, invalidate simplified equivalent source models, especially in the very near field where obstacles can be found. To perform his project objective, the INERIS takes part in a European project called FLIE (Flashing Liquids in Industrial Environment) and also works on a project supported by the French ministry of the environment. In FLIE project, INERIS carries out large-scale trials of propane and butane releases. The French part of the project is to develop a tool able to evaluate the gas and the liquid fraction (aerosol part and liquid pool) in the near field of the flashing release. This INERIS paper aims to present the large scale experimental set-up and the main current results. The experimental set-up is located in the INERIS site. It allows to perform propane and butane liquid releases at ambient temperature with a regulated pressure from the saturation pressure to 15 bar with an orifice (circular or rectangular shape) of an equivalent diameter from 10 mm to 25 mm. It is possible to realise free jets but also impinging jet by introducing obstacle at a maximum distance of 2 meters from the release point. During releases, several parameters are recorded : - Ambiant conditions : direction and speed of the wind, temperature, humidity and atmospheric pressure. - Release tank : pressure (the regulation of the pressure is possible), temperature at several heights in the tank and at the liquid /gas interface, weight of the tank. - Release point : pressure and temperature. - In the jet : a Dual Phase Doppler Anemometer allows to measure speed and size of particle aerosol at several locations in the jet.\"],\"language\":\"eng\",\"subjects\":[\"[SPI] Engineering Sciences\"],\"creators\":[\"Bonnet, Patrick\",\"Lacome, Jean-Marc\"],\"publicationdate\":\"2004-12-01\",\"publisher\":\"Indian institute of technology. Kanpur\",\"embargoenddate\":\"\",\"contributor\":[\"Institut National de l\\u0027Environnement Industriel et des Risques (INERIS) ; INERIS\",\"BAJPAI, S. ; JAIN, N. ; WARRIER, H.P.K. ; GUPTA, J.P.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal-ineris.ccsd.cnrs.fr/ineris-00972479\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal-ineris.ccsd.cnrs.fr/ineris-00972479\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-ineris.ccsd.cnrs.fr/ineris-00972479\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-ineris.ccsd.cnrs.fr/ineris-00972479\",\"id\":\"oai:hal-ineris.ccsd.cnrs.fr:ineris-00972479\"},\"trust\":0.79247934}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:ineris-00972479v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bonnet, Patrick","Lacome, Jean-Marc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal-ineris.ccsd.cnrs.fr:ineris-00972479"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SPI] Engineering Sciences"]},"trust":{"type":"FLOAT","value":0.79247934},"target_publication_title":{"type":"STRING","value":"An experimental set-up study accidental industrial LPG releases"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal-ineris.ccsd.cnrs.fr:ineris-00972479\",\"titles\":[\"An experimental set-up study accidental industrial LPG releases\"],\"abstracts\":[\"The objective of the atmospheric dispersion research project of the INERIS is to develop models of flashing releases as encountered in realistic industrial environments. Equivalent source models exist for flashing release in current long rang dispersion models. Several factors can, however, invalidate simplified equivalent source models, especially in the very near field where obstacles can be found. To perform his project objective, the INERIS takes part in a European project called FLIE (Flashing Liquids in Industrial Environment) and also works on a project supported by the French ministry of the environment. In FLIE project, INERIS carries out large-scale trials of propane and butane releases. The French part of the project is to develop a tool able to evaluate the gas and the liquid fraction (aerosol part and liquid pool) in the near field of the flashing release. This INERIS paper aims to present the large scale experimental set-up and the main current results. The experimental set-up is located in the INERIS site. It allows to perform propane and butane liquid releases at ambient temperature with a regulated pressure from the saturation pressure to 15 bar with an orifice (circular or rectangular shape) of an equivalent diameter from 10 mm to 25 mm. It is possible to realise free jets but also impinging jet by introducing obstacle at a maximum distance of 2 meters from the release point. During releases, several parameters are recorded : - Ambiant conditions : direction and speed of the wind, temperature, humidity and atmospheric pressure. - Release tank : pressure (the regulation of the pressure is possible), temperature at several heights in the tank and at the liquid /gas interface, weight of the tank. - Release point : pressure and temperature. - In the jet : a Dual Phase Doppler Anemometer allows to measure speed and size of particle aerosol at several locations in the jet.\"],\"language\":\"eng\",\"subjects\":[\"[SPI] Engineering Sciences\",\"[SPI] Sciences de l\\u0027ingénieur\"],\"creators\":[\"Bonnet, Patrick\",\"Lacome, Jean-Marc\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal-ineris.ccsd.cnrs.fr/ineris-00972479\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"http://hal-ineris.ccsd.cnrs.fr/ineris-00972479\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-ineris.ccsd.cnrs.fr/ineris-00972479\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-ineris.ccsd.cnrs.fr/ineris-00972479\",\"id\":\"oai:HAL:ineris-00972479v1\"},\"trust\":0.6449751}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal-ineris.ccsd.cnrs.fr:ineris-00972479"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bonnet, Patrick","Lacome, Jean-Marc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:ineris-00972479v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SPI] Engineering Sciences","[SPI] Sciences de l\u0027ingénieur"]},"trust":{"type":"FLOAT","value":0.6449751},"target_publication_title":{"type":"STRING","value":"An experimental set-up study accidental industrial LPG releases"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00521862v1\",\"titles\":[\"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence\"],\"abstracts\":[\"International audience\",\"Stability properties and mode signature for equilibria of a model of electron temperature gradient (ETG) driven turbulence are investigated by Hamiltonian techniques. After deriving the infinite families of Casimir invariants, associated with the noncanonical Poisson bracket of the model, a sufficient condition for stability is obtained by means of the Energy-Casimir method. Mode signature is then investigated for linear motions about homogeneous equilibria. Depending on the sign of the equilibrium \\u0027\\u0027translated\\u0027\\u0027 pressure gradient, stable equilibria can either be energy stable, i.e.\\\\ possess definite linearized perturbation energy (Hamiltonian), or spectrally stable with the existence of negative energy modes (NEMs). The ETG instability is then shown to arise through a Kre\\\\u{\\\\i}n-type bifurcation, due to the merging of a positive and a negative energy mode, corresponding to two modified drift waves admitted by the system. The Hamiltonian of the linearized system is then explicitly transformed into normal form, which unambiguously defines mode signature. In particular, the fast mode turns out to always be a positive energy mode (PEM), whereas the energy of the slow mode can have either positive or negative sign.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.PHYS.PHYS-PLASM-PH] Physics/Physics/Plasma Physics\"],\"creators\":[\"Tassi, Emanuele\",\"Morrison, Philip\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"American Institute of Physics (AIP)\",\"embargoenddate\":\"\",\"contributor\":[\"nldyncpt ; Fédération de Recherche des Unités de MAthématiques de Marseille (FRUMAM) ; Université de Toulon - Université de Provence - Aix-Marseille I - Université de la Méditerranée - Aix-Marseille II - Université Paul Cézanne - Aix-Marseille III - CNRS - Université de Toulon - Université de Provence - Aix-Marseille I - Université de la Méditerranée - Aix-Marseille II - Université Paul Cézanne - Aix-Marseille III - CNRS\",\"Institute for Fusion Studies (IFS) ; The University of Texas at Austin\",\"CEA EURATOM\",\"ANR Egypt\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00521862\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00521862\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00521862\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00521862\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00521862\"},\"trust\":0.28329206}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00521862v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tassi, Emanuele","Morrison, Philip"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00521862"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.PHYS.PHYS-PLASM-PH] Physics/Physics/Plasma Physics"]},"trust":{"type":"FLOAT","value":0.28329206},"target_publication_title":{"type":"STRING","value":"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00521862v1\",\"titles\":[\"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence\"],\"abstracts\":[\"International audience\",\"Stability properties and mode signature for equilibria of a model of electron temperature gradient (ETG) driven turbulence are investigated by Hamiltonian techniques. After deriving the infinite families of Casimir invariants, associated with the noncanonical Poisson bracket of the model, a sufficient condition for stability is obtained by means of the Energy-Casimir method. Mode signature is then investigated for linear motions about homogeneous equilibria. Depending on the sign of the equilibrium \\u0027\\u0027translated\\u0027\\u0027 pressure gradient, stable equilibria can either be energy stable, i.e.\\\\ possess definite linearized perturbation energy (Hamiltonian), or spectrally stable with the existence of negative energy modes (NEMs). The ETG instability is then shown to arise through a Kre\\\\u{\\\\i}n-type bifurcation, due to the merging of a positive and a negative energy mode, corresponding to two modified drift waves admitted by the system. The Hamiltonian of the linearized system is then explicitly transformed into normal form, which unambiguously defines mode signature. In particular, the fast mode turns out to always be a positive energy mode (PEM), whereas the energy of the slow mode can have either positive or negative sign.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.PHYS.PHYS-PLASM-PH] Physics/Physics/Plasma Physics\"],\"creators\":[\"Tassi, Emanuele\",\"Morrison, Philip\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"American Institute of Physics (AIP)\",\"embargoenddate\":\"\",\"contributor\":[\"nldyncpt ; Fédération de Recherche des Unités de MAthématiques de Marseille (FRUMAM) ; Université de Toulon - Université de Provence - Aix-Marseille I - Université de la Méditerranée - Aix-Marseille II - Université Paul Cézanne - Aix-Marseille III - CNRS - Université de Toulon - Université de Provence - Aix-Marseille I - Université de la Méditerranée - Aix-Marseille II - Université Paul Cézanne - Aix-Marseille III - CNRS\",\"Institute for Fusion Studies (IFS) ; The University of Texas at Austin\",\"CEA EURATOM\",\"ANR Egypt\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1063/1.3569850\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00521862\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1063/1.3569850\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1009.6092\",\"id\":\"oai:arXiv.org:1009.6092\"},\"trust\":0.5054923}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00521862v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tassi, Emanuele","Morrison, Philip"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1009.6092"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.PHYS.PHYS-PLASM-PH] Physics/Physics/Plasma Physics"]},"trust":{"type":"FLOAT","value":0.5054923},"target_publication_title":{"type":"STRING","value":"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00521862v1\",\"titles\":[\"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence\"],\"abstracts\":[\"International audience\",\"Stability properties and mode signature for equilibria of a model of electron temperature gradient (ETG) driven turbulence are investigated by Hamiltonian techniques. After deriving the infinite families of Casimir invariants, associated with the noncanonical Poisson bracket of the model, a sufficient condition for stability is obtained by means of the Energy-Casimir method. Mode signature is then investigated for linear motions about homogeneous equilibria. Depending on the sign of the equilibrium \\u0027\\u0027translated\\u0027\\u0027 pressure gradient, stable equilibria can either be energy stable, i.e.\\\\ possess definite linearized perturbation energy (Hamiltonian), or spectrally stable with the existence of negative energy modes (NEMs). The ETG instability is then shown to arise through a Kre\\\\u{\\\\i}n-type bifurcation, due to the merging of a positive and a negative energy mode, corresponding to two modified drift waves admitted by the system. The Hamiltonian of the linearized system is then explicitly transformed into normal form, which unambiguously defines mode signature. In particular, the fast mode turns out to always be a positive energy mode (PEM), whereas the energy of the slow mode can have either positive or negative sign.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.PHYS.PHYS-PLASM-PH] Physics/Physics/Plasma Physics\"],\"creators\":[\"Tassi, Emanuele\",\"Morrison, Philip\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"American Institute of Physics (AIP)\",\"embargoenddate\":\"\",\"contributor\":[\"nldyncpt ; Fédération de Recherche des Unités de MAthématiques de Marseille (FRUMAM) ; Université de Toulon - Université de Provence - Aix-Marseille I - Université de la Méditerranée - Aix-Marseille II - Université Paul Cézanne - Aix-Marseille III - CNRS - Université de Toulon - Université de Provence - Aix-Marseille I - Université de la Méditerranée - Aix-Marseille II - Université Paul Cézanne - Aix-Marseille III - CNRS\",\"Institute for Fusion Studies (IFS) ; The University of Texas at Austin\",\"CEA EURATOM\",\"ANR Egypt\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1063/1.3569850\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00521862\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1063/1.3569850\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1009.6092\",\"id\":\"oai:arXiv.org:1009.6092\"},\"trust\":0.5054923}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00521862v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tassi, Emanuele","Morrison, Philip"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1009.6092"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.PHYS.PHYS-PLASM-PH] Physics/Physics/Plasma Physics"]},"trust":{"type":"FLOAT","value":0.5054923},"target_publication_title":{"type":"STRING","value":"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00521862v1\",\"titles\":[\"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence\"],\"abstracts\":[\"International audience\",\"Stability properties and mode signature for equilibria of a model of electron temperature gradient (ETG) driven turbulence are investigated by Hamiltonian techniques. After deriving the infinite families of Casimir invariants, associated with the noncanonical Poisson bracket of the model, a sufficient condition for stability is obtained by means of the Energy-Casimir method. Mode signature is then investigated for linear motions about homogeneous equilibria. Depending on the sign of the equilibrium \\u0027\\u0027translated\\u0027\\u0027 pressure gradient, stable equilibria can either be energy stable, i.e.\\\\ possess definite linearized perturbation energy (Hamiltonian), or spectrally stable with the existence of negative energy modes (NEMs). The ETG instability is then shown to arise through a Kre\\\\u{\\\\i}n-type bifurcation, due to the merging of a positive and a negative energy mode, corresponding to two modified drift waves admitted by the system. The Hamiltonian of the linearized system is then explicitly transformed into normal form, which unambiguously defines mode signature. In particular, the fast mode turns out to always be a positive energy mode (PEM), whereas the energy of the slow mode can have either positive or negative sign.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.PHYS.PHYS-PLASM-PH] Physics/Physics/Plasma Physics\"],\"creators\":[\"Tassi, Emanuele\",\"Morrison, Philip\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"American Institute of Physics (AIP)\",\"embargoenddate\":\"\",\"contributor\":[\"nldyncpt ; Fédération de Recherche des Unités de MAthématiques de Marseille (FRUMAM) ; Université de Toulon - Université de Provence - Aix-Marseille I - Université de la Méditerranée - Aix-Marseille II - Université Paul Cézanne - Aix-Marseille III - CNRS - Université de Toulon - Université de Provence - Aix-Marseille I - Université de la Méditerranée - Aix-Marseille II - Université Paul Cézanne - Aix-Marseille III - CNRS\",\"Institute for Fusion Studies (IFS) ; The University of Texas at Austin\",\"CEA EURATOM\",\"ANR Egypt\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00521862\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/1009.6092\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1009.6092\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1009.6092\",\"id\":\"oai:arXiv.org:1009.6092\"},\"trust\":0.28870696}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00521862v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tassi, Emanuele","Morrison, Philip"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1009.6092"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.PHYS.PHYS-PLASM-PH] Physics/Physics/Plasma Physics"]},"trust":{"type":"FLOAT","value":0.28870696},"target_publication_title":{"type":"STRING","value":"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00521862\",\"titles\":[\"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence\"],\"abstracts\":[\"Stability properties and mode signature for equilibria of a model of electron temperature gradient (ETG) driven turbulence are investigated by Hamiltonian techniques. After deriving the infinite families of Casimir invariants, associated with the noncanonical Poisson bracket of the model, a sufficient condition for stability is obtained by means of the Energy-Casimir method. Mode signature is then investigated for linear motions about homogeneous equilibria. Depending on the sign of the equilibrium \\u0027\\u0027translated\\u0027\\u0027 pressure gradient, stable equilibria can either be energy stable, i.e.\\\\ possess definite linearized perturbation energy (Hamiltonian), or spectrally stable with the existence of negative energy modes (NEMs). The ETG instability is then shown to arise through a Kre\\\\u{\\\\i}n-type bifurcation, due to the merging of a positive and a negative energy mode, corresponding to two modified drift waves admitted by the system. The Hamiltonian of the linearized system is then explicitly transformed into normal form, which unambiguously defines mode signature. In particular, the fast mode turns out to always be a positive energy mode (PEM), whereas the energy of the slow mode can have either positive or negative sign.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:PHYS:PHYS_PLASM-PH] Physics/Physics/Plasma Physics\",\"[PHYS:PHYS:PHYS_PLASM-PH] Physique/Physique/Physique des plasmas\"],\"creators\":[\"Tassi, Emanuele\",\"Morrison, Philip\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00521862\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00521862\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00521862\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00521862\",\"id\":\"oai:HAL:hal-00521862v1\"},\"trust\":0.7934942}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00521862"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tassi, Emanuele","Morrison, Philip"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00521862v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:PHYS:PHYS_PLASM-PH] Physics/Physics/Plasma Physics","[PHYS:PHYS:PHYS_PLASM-PH] Physique/Physique/Physique des plasmas"]},"trust":{"type":"FLOAT","value":0.7934942},"target_publication_title":{"type":"STRING","value":"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00521862\",\"titles\":[\"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence\"],\"abstracts\":[\"Stability properties and mode signature for equilibria of a model of electron temperature gradient (ETG) driven turbulence are investigated by Hamiltonian techniques. After deriving the infinite families of Casimir invariants, associated with the noncanonical Poisson bracket of the model, a sufficient condition for stability is obtained by means of the Energy-Casimir method. Mode signature is then investigated for linear motions about homogeneous equilibria. Depending on the sign of the equilibrium \\u0027\\u0027translated\\u0027\\u0027 pressure gradient, stable equilibria can either be energy stable, i.e.\\\\ possess definite linearized perturbation energy (Hamiltonian), or spectrally stable with the existence of negative energy modes (NEMs). The ETG instability is then shown to arise through a Kre\\\\u{\\\\i}n-type bifurcation, due to the merging of a positive and a negative energy mode, corresponding to two modified drift waves admitted by the system. The Hamiltonian of the linearized system is then explicitly transformed into normal form, which unambiguously defines mode signature. In particular, the fast mode turns out to always be a positive energy mode (PEM), whereas the energy of the slow mode can have either positive or negative sign.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:PHYS:PHYS_PLASM-PH] Physics/Physics/Plasma Physics\",\"[PHYS:PHYS:PHYS_PLASM-PH] Physique/Physique/Physique des plasmas\"],\"creators\":[\"Tassi, Emanuele\",\"Morrison, Philip\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1063/1.3569850\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00521862\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1063/1.3569850\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1009.6092\",\"id\":\"oai:arXiv.org:1009.6092\"},\"trust\":0.1811567}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00521862"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tassi, Emanuele","Morrison, Philip"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1009.6092"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:PHYS:PHYS_PLASM-PH] Physics/Physics/Plasma Physics","[PHYS:PHYS:PHYS_PLASM-PH] Physique/Physique/Physique des plasmas"]},"trust":{"type":"FLOAT","value":0.1811567},"target_publication_title":{"type":"STRING","value":"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00521862\",\"titles\":[\"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence\"],\"abstracts\":[\"Stability properties and mode signature for equilibria of a model of electron temperature gradient (ETG) driven turbulence are investigated by Hamiltonian techniques. After deriving the infinite families of Casimir invariants, associated with the noncanonical Poisson bracket of the model, a sufficient condition for stability is obtained by means of the Energy-Casimir method. Mode signature is then investigated for linear motions about homogeneous equilibria. Depending on the sign of the equilibrium \\u0027\\u0027translated\\u0027\\u0027 pressure gradient, stable equilibria can either be energy stable, i.e.\\\\ possess definite linearized perturbation energy (Hamiltonian), or spectrally stable with the existence of negative energy modes (NEMs). The ETG instability is then shown to arise through a Kre\\\\u{\\\\i}n-type bifurcation, due to the merging of a positive and a negative energy mode, corresponding to two modified drift waves admitted by the system. The Hamiltonian of the linearized system is then explicitly transformed into normal form, which unambiguously defines mode signature. In particular, the fast mode turns out to always be a positive energy mode (PEM), whereas the energy of the slow mode can have either positive or negative sign.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:PHYS:PHYS_PLASM-PH] Physics/Physics/Plasma Physics\",\"[PHYS:PHYS:PHYS_PLASM-PH] Physique/Physique/Physique des plasmas\"],\"creators\":[\"Tassi, Emanuele\",\"Morrison, Philip\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1063/1.3569850\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00521862\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1063/1.3569850\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1009.6092\",\"id\":\"oai:arXiv.org:1009.6092\"},\"trust\":0.1811567}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00521862"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tassi, Emanuele","Morrison, Philip"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1009.6092"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:PHYS:PHYS_PLASM-PH] Physics/Physics/Plasma Physics","[PHYS:PHYS:PHYS_PLASM-PH] Physique/Physique/Physique des plasmas"]},"trust":{"type":"FLOAT","value":0.1811567},"target_publication_title":{"type":"STRING","value":"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00521862\",\"titles\":[\"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence\"],\"abstracts\":[\"Stability properties and mode signature for equilibria of a model of electron temperature gradient (ETG) driven turbulence are investigated by Hamiltonian techniques. After deriving the infinite families of Casimir invariants, associated with the noncanonical Poisson bracket of the model, a sufficient condition for stability is obtained by means of the Energy-Casimir method. Mode signature is then investigated for linear motions about homogeneous equilibria. Depending on the sign of the equilibrium \\u0027\\u0027translated\\u0027\\u0027 pressure gradient, stable equilibria can either be energy stable, i.e.\\\\ possess definite linearized perturbation energy (Hamiltonian), or spectrally stable with the existence of negative energy modes (NEMs). The ETG instability is then shown to arise through a Kre\\\\u{\\\\i}n-type bifurcation, due to the merging of a positive and a negative energy mode, corresponding to two modified drift waves admitted by the system. The Hamiltonian of the linearized system is then explicitly transformed into normal form, which unambiguously defines mode signature. In particular, the fast mode turns out to always be a positive energy mode (PEM), whereas the energy of the slow mode can have either positive or negative sign.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:PHYS:PHYS_PLASM-PH] Physics/Physics/Plasma Physics\",\"[PHYS:PHYS:PHYS_PLASM-PH] Physique/Physique/Physique des plasmas\"],\"creators\":[\"Tassi, Emanuele\",\"Morrison, Philip\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00521862\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/1009.6092\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1009.6092\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1009.6092\",\"id\":\"oai:arXiv.org:1009.6092\"},\"trust\":0.86537063}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00521862"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tassi, Emanuele","Morrison, Philip"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1009.6092"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:PHYS:PHYS_PLASM-PH] Physics/Physics/Plasma Physics","[PHYS:PHYS:PHYS_PLASM-PH] Physique/Physique/Physique des plasmas"]},"trust":{"type":"FLOAT","value":0.86537063},"target_publication_title":{"type":"STRING","value":"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1009.6092\",\"titles\":[\"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence\"],\"abstracts\":[\" Stability properties and mode signature for equilibria of a model of electron\\ntemperature gradient (ETG) driven turbulence are investigated by Hamiltonian\\ntechniques. After deriving the infinite families of Casimir invariants,\\nassociated with the noncanonical Poisson bracket of the model, a sufficient\\ncondition for stability is obtained by means of the Energy-Casimir method. Mode\\nsignature is then investigated for linear motions about homogeneous equilibria.\\nDepending on the sign of the equilibrium \\\"translated\\\" pressure gradient, stable\\nequilibria can either be energy stable, i.e.\\\\ possess definite linearized\\nperturbation energy (Hamiltonian), or spectrally stable with the existence of\\nnegative energy modes (NEMs). The ETG instability is then shown to arise\\nthrough a Kre\\\\u{\\\\i}n-type bifurcation, due to the merging of a positive and a\\nnegative energy mode, corresponding to two modified drift waves admitted by the\\nsystem. The Hamiltonian of the linearized system is then explicitly transformed\\ninto normal form, which unambiguously defines mode signature. In particular,\\nthe fast mode turns out to always be a positive energy mode (PEM), whereas the\\nenergy of the slow mode can have either positive or negative sign.\\n\"],\"language\":\"eng\",\"subjects\":[\"Physics - Plasma Physics\"],\"creators\":[\"Tassi, Emanuele\",\"Morrison, Philip J.\"],\"publicationdate\":\"2010-09-30\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1063/1.3569850\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1009.6092\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00521862\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00521862\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00521862\",\"id\":\"oai:HAL:hal-00521862v1\"},\"trust\":0.5738774}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1009.6092"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tassi, Emanuele","Morrison, Philip J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00521862v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics - Plasma Physics"]},"trust":{"type":"FLOAT","value":0.5738774},"target_publication_title":{"type":"STRING","value":"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-09-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1009.6092\",\"titles\":[\"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence\"],\"abstracts\":[\" Stability properties and mode signature for equilibria of a model of electron\\ntemperature gradient (ETG) driven turbulence are investigated by Hamiltonian\\ntechniques. After deriving the infinite families of Casimir invariants,\\nassociated with the noncanonical Poisson bracket of the model, a sufficient\\ncondition for stability is obtained by means of the Energy-Casimir method. Mode\\nsignature is then investigated for linear motions about homogeneous equilibria.\\nDepending on the sign of the equilibrium \\\"translated\\\" pressure gradient, stable\\nequilibria can either be energy stable, i.e.\\\\ possess definite linearized\\nperturbation energy (Hamiltonian), or spectrally stable with the existence of\\nnegative energy modes (NEMs). The ETG instability is then shown to arise\\nthrough a Kre\\\\u{\\\\i}n-type bifurcation, due to the merging of a positive and a\\nnegative energy mode, corresponding to two modified drift waves admitted by the\\nsystem. The Hamiltonian of the linearized system is then explicitly transformed\\ninto normal form, which unambiguously defines mode signature. In particular,\\nthe fast mode turns out to always be a positive energy mode (PEM), whereas the\\nenergy of the slow mode can have either positive or negative sign.\\n\"],\"language\":\"eng\",\"subjects\":[\"Physics - Plasma Physics\"],\"creators\":[\"Tassi, Emanuele\",\"Morrison, Philip J.\"],\"publicationdate\":\"2010-09-30\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1063/1.3569850\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1009.6092\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00521862\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00521862\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00521862\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00521862\"},\"trust\":0.19288129}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1009.6092"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tassi, Emanuele","Morrison, Philip J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00521862"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics - Plasma Physics"]},"trust":{"type":"FLOAT","value":0.19288129},"target_publication_title":{"type":"STRING","value":"Mode signature and stability for a Hamiltonian model of electron temperature gradient turbulence"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-09-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:openaccess.leidenuniv.nl:1887/1912\",\"titles\":[\"A note on the Tocharian dual\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Kortlandt, F. H. H.\"],\"publicationdate\":\"1991-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at University Leiden\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/1887/1912\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at University Leiden\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1887/1912\",\"license\":\"OPEN\",\"hostedby\":\"Leiden University Repository\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1887/1912\",\"license\":\"OPEN\",\"hostedby\":\"Leiden University Repository\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1887/1912\",\"id\":\"ul:oai:openaccess.leidenuniv.nl:1887/1912\"},\"trust\":0.42503858}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at University Leiden"},"target_publication_id":{"type":"STRING","value":"oai:openaccess.leidenuniv.nl:1887/1912"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kortlandt, F. H. H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["ul:oai:openaccess.leidenuniv.nl:1887/1912"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.42503858},"target_publication_title":{"type":"STRING","value":"A note on the Tocharian dual"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1991-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::854d6fae5ee42911677c739ee1734486"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.usu.ac.id:123456789/3861\",\"titles\":[\"Pengaruh Pemanasan Dan Perendaman Dua Variasi Benih Terhadap Perkecambahan Benih Dan Peryumbuhan Bibit Jati (Tectona Grandis L.F)\"],\"abstracts\":[\"Tujuan penelitian ini adalah untuk mengetahui pengaruh pemanasan dan perendaman benih jati yang dikupas atau tidak dikupas lapisan mesokarpnya, terhadap perkecambahannya, untuk menentukan metoda yang tepat guna meningkatkan dan mempercepat perkecambahan benih dan pertumbuhan bibit jati.\\nPenelitian ini dilakukan di Fakultas Pertanian Universitas Sumatera Utara Medan, yang berlangsung selama 6 bulan, mulai bulan Januari sampai Juni 2000.\\nRancangan yang digunakan adalah Rancangan Petak-Petak Terpisah (Split-Split Plot Design), yang diulang 3 kali. Faktor pertama adalah variasi benih sebagai petak utama, yaitu B1 \\u003d benih dengan mesokarp dan B2 \\u003d benih dikupas mesokarp. Faktor kedua adalah suhu pemanasan sebagai anak petak, yaitu T0 \\u003d pemanasan dengan sinar matahari, T1 \\u003d pemanasan dengan suhu 40°C, T1 \\u003d pemanasan dengan suhu 60°C dan T3 \\u003d pemanasan dengan suhu 80°C. Faktor ketiga adalah perendaman sebagai anak-anak petak, yaitu D0 \\u003d direndam 0 hari, D1 \\u003d direndam 1 hari, D2 \\u003ddirendam 2 hari, dan D3 \\u003ddirendam 3 hari.\\nBenih jati dipilih yang sehat dan berdiameter antara 12 - 18 mm, berasal dari pohon induk yang sudah berusia ± 25 tahun di daerah Secanggang, Sumatera Utara. Kemudian sebagian dibuang lapisan mesokarp, baru diperlakukan dengan suhu pemanasan dan perendaman. Setelah perlakuan selesai, dikeringanginkan sebentar, baru ditanam pada media perkecambahan yang telah dipersiapkan di rumah kaca. Seminggu setelah benih berkecambah, bibit dipindahkan ke polibag. Bibit yang berkecambah pada hari ke 21 - 40 dipindahkan ke tempat pembibitan di rumah kassa.\\nVariasi benih mempengaruhi persentase berkecambah dan kecepatan berkecambah benih. Pengupasan mesokarp benih dapat meningkatkan persentase berkecambah dan kecepatan berkecambah benih dibandingkan dengan yang tidak dikupas. Namun cenderung menekan pertumbuhan bibit jati.\\nBenih yang dipanaskan dengan suhu 60°C (T2) meningkatkan persentase berkecambah dan mempercepat perkecambahan benih, namun pemanasan dengan suhu 40°C (T1) cenderung lebih baik pertumbuhan bibitnya. Pemanasan dengan suhu 80°C (T3) menekan persentase berkecambah dan memperlambat perkecambahan benih dibandingkan dengan pemanasan dengan sinar matahari dan suhu 40°C (T1).\\nPersentase berkecambah dan kecepatan berkecambah benih tidak nyata dipengaruhi oleh perendaman benih, Perendarnan yang dilakukan cenderung menekan persentase berkecambah dan memperlambat perkecambahan benih. \\nPersentase berkecambah dan kecepatan berkecambah benih menunjukkan respon terhadap kombinasi variasi benih dengan suhu pemanasan mulai 6 mst. Benih yang dikupas mesokarpnya dan dipanaskan dengan suhu 60°C (B2T2) mempunyai persentase berkecambah dan kecepatan berkecambah tertinggi.\\nPersentase berkecambah juga menunjukkan respon terhadap kombinasi pemanasan dan perendaman. Pada benih yang dipanaskan dengan suhu 80°C, perendaman selama 2-3 hari meningkatkan persentase berkecambah benih. Pada benih yang dipanaskan dengan 60°C, akan menurunkan persentase berkecambah bila benih direndam, \\nParameter pertumbuhan bibit cenderung tidak dipengaruhi oleh perlakuan pemanasan dan perendaman. Perbedaan yang terjadi lebih disebabkan karena sifat genetis dari benih yang digunakan dan pengaruh lingkungan di pembibitan.\\nDisimpulkan bahwa perlakuan yang terbaik adalah kombinasi perlakuan benih dikupas mesokarpnya, dipanaskan dengan suhu 60°C dan tidak direndam (B2T2D0). Walaupun demikian hasil yang diperoleh tidak berbeda nyata dengan benih yang tidak dikupas, dipanaskan dengan suhu 60°C dan tidak direndam (B1T2D0).\",\"02012720\"],\"language\":\"ind\",\"subjects\":[\"tanaman jati\",\"perkecambahan benih\"],\"creators\":[\"Haryati\"],\"publicationdate\":\"2008-05-06\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"T. Chairun Nisa H.\",\"Napitupulu, J.A.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"USU Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/3861\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"},{\"url\":\"http://repository.usu.ac.id/handle/123456789/3888\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/3888\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"USU Repository\",\"url\":\"http://repository.usu.ac.id/handle/123456789/3888\",\"id\":\"oai:repository.usu.ac.id:123456789/3888\"},\"trust\":0.8361454}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"USU Repository"},"target_publication_id":{"type":"STRING","value":"oai:repository.usu.ac.id:123456789/3861"},"target_publication_author_list":{"type":"LIST_STRING","value":["Haryati"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repository.usu.ac.id:123456789/3888"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"},"target_publication_subject_list":{"type":"LIST_STRING","value":["tanaman jati","perkecambahan benih"]},"trust":{"type":"FLOAT","value":0.8361454},"target_publication_title":{"type":"STRING","value":"Pengaruh Pemanasan Dan Perendaman Dua Variasi Benih Terhadap Perkecambahan Benih Dan Peryumbuhan Bibit Jati (Tectona Grandis L.F)"},"provenance_datasource_name":{"type":"STRING","value":"USU Repository"},"target_dateofacceptance":{"type":"DATE","value":"2008-05-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.usu.ac.id:123456789/3888\",\"titles\":[\"Pengaruh Pemanasan Dan Perendaman Dua Variasi Benih Terhadap Perkecambahan Benih Dan Pertumbuhan Bibit Jati (Tectona grandis L.f)\"],\"abstracts\":[\"Tujuan penelitian ini adalah untuk mengetahui pengaruh pemanasan dan perendaman benih jati yang dikupas atau tidak dikupas lapisan mesokarpnya, terhadap perkecambahannya, untuk menentukan metoda yang tepat guna meningkatkan dan mempercepat perkecambahan benih dan pertumbuhan bibit jati.\\nPenelitian ini dilakukan di Fakultas Pertanian Universitas Sumatera Utara Medan, yang berlangsung selama 6 bulan, mulai bulan Januari sampai Juni 2000.\\nRancangan yang digunakan adalah Rancangan Petak-Petak Terpisah (Split-Split Plot Design), yang diulang 3 kali. Faktor pertama adalah variasi benih sebagai petak utama, yaitu B1 \\u003d benih dengan mesokarp dan B2 \\u003d benih dikupas mesokarp. Faktor kedua adalah suhu pemanasan sebagai anak petak, yaitu T0 \\u003d pemanasan dengan sinar matahari, T1 \\u003d pemanasan dengan suhu 400C, T2 \\u003d pemanasan dengan suhu 600C dan T3 \\u003d pp,manasan dengan suhu 80°C. Faktor ketiga adalah perendaman sebagai anak-anak petak, yaitu D0 \\u003d direndam 0 hari, D1 \\u003d direndam 1 hari, D2 \\u003d direndam 2 hari, dan D3\\u003d direndam 3 hari.\\nBenih jati dipilih yang sehat dan berdiameter antara 12 - 18 mm, berasal dari pohon induk yang sudah berusia ± 25 tahun di daerah Secanggang, Sumatera Utara. Kemudian sebagian dibuang lapisan mesokarp, baru diperlakukan dengan suhu pemanasan dan perendaman. Setelah perlakuan selesai, dikeringanginkan sebentar, baru ditanam pada media perkecambahan yang telah dipersiapkan di rumah kaca. Seminggu setelah benih berkecambah, bibit dipindahkan ke polibag. Bibit yang berkecambah pada hari ke 21 - 40 dipindahkan ke tempat pembibitan di rumah kassa.\\nVariasi benih mempengaruhi persentase berkecambah dan kecepatan berkecambah benih. Pengupasan mesokarp benih dapat meningkatkan persentase berkecambah dan kecepatan berkecambah benih dibandingkan dengan yang tidak dikupas.Namun cenderung menekan pertumbuhan bibit jati.\\nBenih yang dipanaskan dengan suhu 600C (T2) meningkatkan persentase berkecambah dan mempercepat perkecambahan benih, namun pemanasan dengan suhu 400C (T1) cenderung lebih baik pertumbuhan bibitnya. Pernanasan dengan suhu 800C (T3) menekan persentase berkecambah dan memperlambat perkecambahan benih dibandingkan dengan pernanasan dengan sinar matahari dan suhu 400C (T1).\\nPersentase berkecambah dan kecepatan berkecambah benih tidak nyata dipengaruhi oleh perendaman benih, Perendaman yang dilakukan cenderung menekan persentase berkecambah dan memperlambat perkecambahan benih.\\nPersentase berkecambah dan kecepatan berkecambah benih menunjukkan respon terhadap kombinasi variasi benih dengan suhu pemanasan mulai 6 mst. Benih yang dikupas mesokarpnya dan dipanaskan dengan suhu 60°C (B2T2) mempunyai persentase berkecambah dan kecepatan berkecambah tertinggi.\\nPersentase beekecambah juga menunjukkan respon terhadap kombinasi pernanasan dan perendaman. Pada benih yang dipanaskan dengan suhu 80°C, perendaman selama 2-3 hari meningkatkan persentase berkecambah benih, Pada benih yang dipanaskan dengan 60°C, akan menurunkan persentase berkecambah bila benih direndam.\\nParameter pertumbuhan bibit cenderung tidak dipengaruhi oleh perlakuan pemanasan dan perendaman. Perbedaan yang terjadi lebih disebabkan karena sifat genetis dari benih yang digunakan dan pengaruh lingkungan di pembibitan.\\nDisimpulkan bahwa perlakuan yang terbaik adalah kombinasi perlakuan benih dikupas mesokarpnya, dipanaskan dengan suhu 60°C dan tidak direndam (B1T2D0). Walaupun demikian hasil yang diperoleh tidak berbeda nyata dengan benih yang tidak dikupas, dipanaskan dengan suhu 60°C dan tidak direndam (B1T1D0).\",\"0200484\"],\"language\":\"ind\",\"subjects\":[\"agronomi\"],\"creators\":[\"Haryati\"],\"publicationdate\":\"2008-04-11\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Nisa, T.Chairun\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"USU Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/3888\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"},{\"url\":\"http://repository.usu.ac.id/handle/123456789/3861\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/3861\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"USU Repository\",\"url\":\"http://repository.usu.ac.id/handle/123456789/3861\",\"id\":\"oai:repository.usu.ac.id:123456789/3861\"},\"trust\":0.4584372}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"USU Repository"},"target_publication_id":{"type":"STRING","value":"oai:repository.usu.ac.id:123456789/3888"},"target_publication_author_list":{"type":"LIST_STRING","value":["Haryati"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repository.usu.ac.id:123456789/3861"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"},"target_publication_subject_list":{"type":"LIST_STRING","value":["agronomi"]},"trust":{"type":"FLOAT","value":0.4584372},"target_publication_title":{"type":"STRING","value":"Pengaruh Pemanasan Dan Perendaman Dua Variasi Benih Terhadap Perkecambahan Benih Dan Pertumbuhan Bibit Jati (Tectona grandis L.f)"},"provenance_datasource_name":{"type":"STRING","value":"USU Repository"},"target_dateofacceptance":{"type":"DATE","value":"2008-04-11"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00900148\",\"titles\":[\"Ubiquitin-proteasome-dependent proteolysis in skeletal muscle\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:BDLR] Life Sciences/Reproductive Biology\",\"[SDV:BDLR] Sciences du Vivant/Biologie de la reproduction\",\"[SDV:AEN] Life Sciences/Food and Nutrition\",\"[SDV:AEN] Sciences du Vivant/Alimentation et Nutrition\",\"[SDV:BDD] Life Sciences/Development Biology\",\"[SDV:BDD] Sciences du Vivant/Biologie du développement\"],\"creators\":[\"Attaix, Didier\",\"Aurousseau, Eveline\",\"Combaret, Lydie\",\"Kee, Anthony\",\"Larbaud, Daniel\",\"Rallière, Cécile\",\"Souweine, Bertrand\",\"Taillandier, Daniel\",\"Tilignac, Thomas\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00900148\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00900148\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00900148\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00900148\",\"id\":\"oai:HAL:hal-00900148v1\"},\"trust\":0.68884844}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00900148"},"target_publication_author_list":{"type":"LIST_STRING","value":["Attaix, Didier","Aurousseau, Eveline","Combaret, Lydie","Kee, Anthony","Larbaud, Daniel","Rallière, Cécile","Souweine, Bertrand","Taillandier, Daniel","Tilignac, Thomas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00900148v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BDLR] Life Sciences/Reproductive Biology","[SDV:BDLR] Sciences du Vivant/Biologie de la reproduction","[SDV:AEN] Life Sciences/Food and Nutrition","[SDV:AEN] Sciences du Vivant/Alimentation et Nutrition","[SDV:BDD] Life Sciences/Development Biology","[SDV:BDD] Sciences du Vivant/Biologie du développement"]},"trust":{"type":"FLOAT","value":0.68884844},"target_publication_title":{"type":"STRING","value":"Ubiquitin-proteasome-dependent proteolysis in skeletal muscle"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00900148\",\"titles\":[\"Ubiquitin-proteasome-dependent proteolysis in skeletal muscle\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:BDLR] Life Sciences/Reproductive Biology\",\"[SDV:BDLR] Sciences du Vivant/Biologie de la reproduction\",\"[SDV:AEN] Life Sciences/Food and Nutrition\",\"[SDV:AEN] Sciences du Vivant/Alimentation et Nutrition\",\"[SDV:BDD] Life Sciences/Development Biology\",\"[SDV:BDD] Sciences du Vivant/Biologie du développement\"],\"creators\":[\"Attaix, Didier\",\"Aurousseau, Eveline\",\"Combaret, Lydie\",\"Kee, Anthony\",\"Larbaud, Daniel\",\"Rallière, Cécile\",\"Souweine, Bertrand\",\"Taillandier, Daniel\",\"Tilignac, Thomas\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00900148\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"International audience\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00900148\",\"id\":\"oai:HAL:hal-00900148v1\"},\"trust\":0.9399083}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00900148"},"target_publication_author_list":{"type":"LIST_STRING","value":["Attaix, Didier","Aurousseau, Eveline","Combaret, Lydie","Kee, Anthony","Larbaud, Daniel","Rallière, Cécile","Souweine, Bertrand","Taillandier, Daniel","Tilignac, Thomas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00900148v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BDLR] Life Sciences/Reproductive Biology","[SDV:BDLR] Sciences du Vivant/Biologie de la reproduction","[SDV:AEN] Life Sciences/Food and Nutrition","[SDV:AEN] Sciences du Vivant/Alimentation et Nutrition","[SDV:BDD] Life Sciences/Development Biology","[SDV:BDD] Sciences du Vivant/Biologie du développement"]},"trust":{"type":"FLOAT","value":0.9399083},"target_publication_title":{"type":"STRING","value":"Ubiquitin-proteasome-dependent proteolysis in skeletal muscle"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00900148v1\",\"titles\":[\"Ubiquitin-proteasome-dependent proteolysis in skeletal muscle\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.BDLR] Life Sciences/Reproductive Biology\",\"[SDV.AEN] Life Sciences/Food and Nutrition\",\"[SDV.BDD] Life Sciences/Development Biology\"],\"creators\":[\"Attaix, Didier\",\"Aurousseau, Eveline\",\"Combaret, Lydie\",\"Kee, Anthony\",\"Larbaud, Daniel\",\"Rallière, Cécile\",\"Souweine, Bertrand\",\"Taillandier, Daniel\",\"Tilignac, Thomas\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"EDP Sciences\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00900148\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00900148\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00900148\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00900148\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00900148\"},\"trust\":0.6758921}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00900148v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Attaix, Didier","Aurousseau, Eveline","Combaret, Lydie","Kee, Anthony","Larbaud, Daniel","Rallière, Cécile","Souweine, Bertrand","Taillandier, Daniel","Tilignac, Thomas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00900148"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.BDLR] Life Sciences/Reproductive Biology","[SDV.AEN] Life Sciences/Food and Nutrition","[SDV.BDD] Life Sciences/Development Biology"]},"trust":{"type":"FLOAT","value":0.6758921},"target_publication_title":{"type":"STRING","value":"Ubiquitin-proteasome-dependent proteolysis in skeletal muscle"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:17846\",\"titles\":[\"The effective number of relevant parties : how voting power improves Laakso-Taagepera’s index\"],\"abstracts\":[\"This paper proposes a new method to evaluate the number of rel- \\nevant parties in an assembly. The most widespread indicator of frag- \\nmentation used in comparative politics is the ‘Effective Number of Par- \\nties’(ENP), designed by Laakso and Taagepera (1979). Taking both \\nthe number of parties and their relative weights into account, the ENP \\nis arguably a good parsimonious operationalization of the number of \\n‘relevant’ parties. This index however produces misleading results in \\nsingle-party ma jority situations as it still indicates that more than one \\nparty is relevant in terms of government formation. We propose to \\nmodify the ENP formula by replacing proportions of seats by voting \\npower measures. This improved index behaves more in line with Sar- \\ntori’s definition of relevance, without requiring additional information \\nin its construction.\"],\"language\":\"eng\",\"subjects\":[\"H10 - General\",\"D71 - Social Choice; Clubs; Committees; Associations\"],\"creators\":[\"Caulier, Jean-François\",\"Dumont, Patrick\"],\"publicationdate\":\"2005-07-19\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/17846/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/17846/1/MPRA_paper_17846.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/17846/1/MPRA_paper_17846.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/17846/1/MPRA_paper_17846.pdf\",\"id\":\"oai:RePEc:pra:mprapa:17846\"},\"trust\":0.690165}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:17846"},"target_publication_author_list":{"type":"LIST_STRING","value":["Caulier, Jean-François","Dumont, Patrick"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:17846"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H10 - General","D71 - Social Choice; Clubs; Committees; Associations"]},"trust":{"type":"FLOAT","value":0.690165},"target_publication_title":{"type":"STRING","value":"The effective number of relevant parties : how voting power improves Laakso-Taagepera’s index"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-07-19"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:17846\",\"titles\":[\"The effective number of relevant parties : how voting power improves Laakso-Taagepera’s index\"],\"abstracts\":[\"This paper proposes a new method to evaluate the number of rel- evant parties in an assembly. The most widespread indicator of frag- mentation used in comparative politics is the ‘Effective Number of Par- ties’(ENP), designed by Laakso and Taagepera (1979). Taking both the number of parties and their relative weights into account, the ENP is arguably a good parsimonious operationalization of the number of ‘relevant’ parties. This index however produces misleading results in single-party ma jority situations as it still indicates that more than one party is relevant in terms of government formation. We propose to modify the ENP formula by replacing proportions of seats by voting power measures. This improved index behaves more in line with Sar- tori’s definition of relevance, without requiring additional information in its construction.\"],\"language\":\"und\",\"subjects\":[\"Voting power indices; Effective Number of Parties; Party system fragmentation; Relevance; Coalition Formation\"],\"creators\":[\"Caulier, Jean-François\",\"Dumont, Patrick\"],\"publicationdate\":\"2005-07-19\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/17846/1/MPRA_paper_17846.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/17846/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/17846/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/17846/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:17846\"},\"trust\":0.91967404}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:17846"},"target_publication_author_list":{"type":"LIST_STRING","value":["Caulier, Jean-François","Dumont, Patrick"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:17846"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Voting power indices; Effective Number of Parties; Party system fragmentation; Relevance; Coalition Formation"]},"trust":{"type":"FLOAT","value":0.91967404},"target_publication_title":{"type":"STRING","value":"The effective number of relevant parties : how voting power improves Laakso-Taagepera’s index"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2005-07-19"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00022748\",\"titles\":[\"Segmentation du contour de l\\u0027endocarde sur des séquences d\\u0027images d\\u0027échographie cardiaque\"],\"abstracts\":[\"La segmentation d\\u0027images échocardiographiques fait l\\u0027objet de nombreuses recherches. Cet article propose une méthode utilisant les Modèles Actifs de Mouvement et d\\u0027Apparence (AAMM) combinés avec une prise en compte de la sémantique de l\\u0027image. Les AAMM peuvent modéliser les différents paramètres de l\\u0027image comme la forme du ventricule gauche, sa texture interne et l\\u0027aspect temporel des images. Concernant la sémantique de l\\u0027image, nous avons inclus la texture du myocarde dans le modèle. L\\u0027écart entre la segmentation experte et la segmentation automatique a ensuite été déterminé par des mesures telles que la mesure de Vinet et la distance de Hamming et des mesures morphologiques. Nous avons donc pu vérifier que nos résultats sont proches de la segmentation experte.\"],\"language\":\"fra/fre\",\"subjects\":[\"[INFO:INFO_TI] Computer Science/Image Processing\",\"[INFO:INFO_TI] Informatique/Traitement des images\"],\"creators\":[\"Lebossé, Jérome\",\"Lecellier, François\",\"Revenu, Marinette\",\"Saloux, Eric\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00022748\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00022748\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00022748\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00022748\",\"id\":\"oai:HAL:hal-00022748v1\"},\"trust\":0.4614572}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00022748"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lebossé, Jérome","Lecellier, François","Revenu, Marinette","Saloux, Eric"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00022748v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_TI] Computer Science/Image Processing","[INFO:INFO_TI] Informatique/Traitement des images"]},"trust":{"type":"FLOAT","value":0.4614572},"target_publication_title":{"type":"STRING","value":"Segmentation du contour de l\u0027endocarde sur des séquences d\u0027images d\u0027échographie cardiaque"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00022748v1\",\"titles\":[\"Segmentation du contour de l\\u0027endocarde sur des séquences d\\u0027images d\\u0027échographie cardiaque\"],\"abstracts\":[\"National audience\",\"La segmentation d\\u0027images échocardiographiques fait l\\u0027objet de nombreuses recherches. Cet article propose une méthode utilisant les Modèles Actifs de Mouvement et d\\u0027Apparence (AAMM) combinés avec une prise en compte de la sémantique de l\\u0027image. Les AAMM peuvent modéliser les différents paramètres de l\\u0027image comme la forme du ventricule gauche, sa texture interne et l\\u0027aspect temporel des images. Concernant la sémantique de l\\u0027image, nous avons inclus la texture du myocarde dans le modèle. L\\u0027écart entre la segmentation experte et la segmentation automatique a ensuite été déterminé par des mesures telles que la mesure de Vinet et la distance de Hamming et des mesures morphologiques. Nous avons donc pu vérifier que nos résultats sont proches de la segmentation experte.\"],\"language\":\"fra/fre\",\"subjects\":[\"[INFO.INFO-TI] Computer Science/Image Processing\"],\"creators\":[\"Lebossé, Jérome\",\"Lecellier, François\",\"Revenu, Marinette\",\"Saloux, Eric\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"image ; Groupe de Recherche en Informatique, Image, Automatique et Instrumentation de Caen (GREYC) ; CNRS - Université de Caen Basse-Normandie - Ecole Nationale Supérieure d\\u0027Ingénieurs de Caen - CNRS - Université de Caen Basse-Normandie - Ecole Nationale Supérieure d\\u0027Ingénieurs de Caen\",\"CHU Caen ; CHU Caen - Université de Caen Basse-Normandie\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00022748\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00022748\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00022748\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00022748\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00022748\"},\"trust\":0.31273007}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00022748v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lebossé, Jérome","Lecellier, François","Revenu, Marinette","Saloux, Eric"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00022748"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO.INFO-TI] Computer Science/Image Processing"]},"trust":{"type":"FLOAT","value":0.31273007},"target_publication_title":{"type":"STRING","value":"Segmentation du contour de l\u0027endocarde sur des séquences d\u0027images d\u0027échographie cardiaque"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3585065\",\"titles\":[\"The Role of Oxygen Sensors, Hydroxylases, and HIF in Cardiac Function and Disease\"],\"abstracts\":[\"Ischemic heart disease is the leading cause of death worldwide. Oxygen-sensing proteins are critical components of the physiological response to hypoxia and reperfusion injury, but the role of oxygen and oxygen-mediated effects is complex in that they can be cardioprotective or deleterious to the cardiac tissue. Over 200 oxygen-sensing proteins mediate the effects of oxygen tension and use oxygen as a substrate for posttranslational modification of other proteins. Hydroxylases are an essential component of these oxygen-sensing proteins. While a major role of hydroxylases is regulating the transcription factor HIF, we investigate the increasing scope of hydroxylase substrates. This review discusses the importance of oxygen-mediated effects in the heart as well as how the field of oxygen-sensing proteins is expanding, providing a more complete picture into how these enzymes play a multifaceted role in cardiac function and disease. We also review how oxygen-sensing proteins and hydroxylase function could prove to be invaluable in drug design and therapeutic targets for heart disease.\"],\"language\":\"eng\",\"subjects\":[\"Review Article\"],\"creators\":[\"Townley-Tilson, W. H. Davin\",\"Pi, Xinchun\",\"Xie, Liang\"],\"publicationdate\":\"2015-09-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Oxidative Medicine and Cellular Longevity\",\"issn\":\"1942-0900\",\"eissn\":\"1942-0994\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2015/676893\",\"type\":\"doi\"},{\"value\":\"PMC4600863\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4600863\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2015/676893\",\"license\":\"OPEN\",\"hostedby\":\"Oxidative Medicine and Cellular Longevity\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2015/676893\",\"license\":\"OPEN\",\"hostedby\":\"Oxidative Medicine and Cellular Longevity\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2015/676893\",\"id\":\"oai:doaj.org/article:9b93568f70ac49a1b2e0dfaea0f5c0e1\"},\"trust\":0.043532908}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3585065"},"target_publication_author_list":{"type":"LIST_STRING","value":["Townley-Tilson, W. H. Davin","Pi, Xinchun","Xie, Liang"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:9b93568f70ac49a1b2e0dfaea0f5c0e1"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Review Article"]},"trust":{"type":"FLOAT","value":0.043532908},"target_publication_title":{"type":"STRING","value":"The Role of Oxygen Sensors, Hydroxylases, and HIF in Cardiac Function and Disease"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2015-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/366678\",\"titles\":[\"Creating novel structures in food materials: The role of well-defined shear flow\"],\"abstracts\":[\"Structure formation in food materials is influenced by the ingredient properties and processing conditions. Until now, small structural elements, such as fibrils and crystals, have been formed using self-assembly, while processing was applied to create relatively large structures. The effect of self-assembly under flow is rarely studied for food materials, but it is widely studied for non-food systems. The use of well-defined flow, often simple shear, turned out to be essential to study and control the structure formation process in foods as well. This observation encouraged us to develop a number of different shearing devices that allowed processing of biopolymer systems under simple shear flow. This paper reviews our main findings. In the case of protein fibrillization, the shear rate was found to control the growth rate as well as the properties of the fibrils formed. In the case of dough processing, simple shear flow made the product more process tolerant and induced gluten migration. The use of shear flow for dense caseinate dispersions led to hierarchically structured and fibrous material. Based on the presented results, we conclude that introducing simple shear flow in food structuring processes can lead to a much broader range of structures, thereby better utilizing the full potential of food ingredients.\"],\"language\":\"eng\",\"subjects\":[\"calcium caseinate dispersions\",\"fibrous materials\",\"dough\",\"rheology\",\"microstructure\",\"mixtures\",\"fibrils\"],\"creators\":[\"Goot, A. J.\",\"Peighambardoust, S. H.\",\"Akkermans, C.\",\"Manski, J. M.\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/35583\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/366678\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/366678\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/366678\",\"id\":\"wur:oai:library.wur.nl:wurpubs/366678\"},\"trust\":0.7822105}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/366678"},"target_publication_author_list":{"type":"LIST_STRING","value":["Goot, A. J.","Peighambardoust, S. H.","Akkermans, C.","Manski, J. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/366678"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["calcium caseinate dispersions","fibrous materials","dough","rheology","microstructure","mixtures","fibrils"]},"trust":{"type":"FLOAT","value":0.7822105},"target_publication_title":{"type":"STRING","value":"Creating novel structures in food materials: The role of well-defined shear flow"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2240705\",\"titles\":[\"W-MAC: A Workload-Aware MAC Protocol for Heterogeneous Convergecast in Wireless Sensor Networks\"],\"abstracts\":[\"The power consumption and latency of existing MAC protocols for wireless sensor networks (WSNs) are high in heterogeneous convergecast, where each sensor node generates different amounts of data in one convergecast operation. To solve this problem, we present W-MAC, a workload-aware MAC protocol for heterogeneous convergecast in WSNs. A subtree-based iterative cascading scheduling mechanism and a workload-aware time slice allocation mechanism are proposed to minimize the power consumption of nodes, while offering a low data latency. In addition, an efficient schedule adjustment mechanism is provided for adapting to data traffic variation and network topology change. Analytical and simulation results show that the proposed protocol provides a significant energy saving and latency reduction in heterogeneous convergecast, and can effectively support data aggregation to further improve the performance.\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"wireless sensor network\",\"heterogeneous convergecast\",\"MAC protocol\",\"TDMA\"],\"creators\":[\"Xia, Ming\",\"Dong, Yabo\",\"Lu, Dongming\"],\"publicationdate\":\"2011-02-01\",\"publisher\":\"Molecular Diversity Preservation International (MDPI)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Sensors (Basel, Switzerland)\",\"issn\":\"\",\"eissn\":\"1424-8220\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3390/s110302505\",\"type\":\"doi\"},{\"value\":\"PMC3231590\",\"type\":\"pmc\"},{\"value\":\"22163753\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3231590\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.mdpi.com/1424-8220/11/3/2505/\",\"license\":\"OPEN\",\"hostedby\":\"Sensors\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.mdpi.com/1424-8220/11/3/2505/\",\"license\":\"OPEN\",\"hostedby\":\"Sensors\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.mdpi.com/1424-8220/11/3/2505/\",\"id\":\"oai:doaj.org/article:c5f6a89a6eca4dc78db97c17b3ae1182\"},\"trust\":0.7167948}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2240705"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xia, Ming","Dong, Yabo","Lu, Dongming"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:c5f6a89a6eca4dc78db97c17b3ae1182"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","wireless sensor network","heterogeneous convergecast","MAC protocol","TDMA"]},"trust":{"type":"FLOAT","value":0.7167948},"target_publication_title":{"type":"STRING","value":"W-MAC: A Workload-Aware MAC Protocol for Heterogeneous Convergecast in Wireless Sensor Networks"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2011-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:aperto.unito.it:2318/107414\",\"titles\":[\"Verso il piacere di leggere. La pratica della lettura tra gli studenti di Massa Marittima\"],\"abstracts\":[\"Il contributo descrive gli esiti di una indagine sulle pratiche di lettura degli studenti delle scuole elementari, medie, superiori di Massa Marittima (GR)\"],\"language\":\"ita\",\"subjects\":[\"LETTURA\",\"STUDENTI LETTURE INCHIESTE\",\"LETTURA MASSA MARITTIMA\"],\"creators\":[\"Vivarelli, Maurizio\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"Manziana\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Archivio Istituzionale\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2318/107414\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hdl.handle.net/2318/109429\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2318/109429\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Archivio Istituzionale\",\"url\":\"http://hdl.handle.net/2318/109429\",\"id\":\"oai:aperto.unito.it:2318/109429\"},\"trust\":0.6393519}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Archivio Istituzionale"},"target_publication_id":{"type":"STRING","value":"oai:aperto.unito.it:2318/107414"},"target_publication_author_list":{"type":"LIST_STRING","value":["Vivarelli, Maurizio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:aperto.unito.it:2318/109429"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::89fcd07f20b6785b92134bd6c1d0fa42"},"target_publication_subject_list":{"type":"LIST_STRING","value":["LETTURA","STUDENTI LETTURE INCHIESTE","LETTURA MASSA MARITTIMA"]},"trust":{"type":"FLOAT","value":0.6393519},"target_publication_title":{"type":"STRING","value":"Verso il piacere di leggere. La pratica della lettura tra gli studenti di Massa Marittima"},"provenance_datasource_name":{"type":"STRING","value":"Archivio Istituzionale"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::89fcd07f20b6785b92134bd6c1d0fa42"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:aperto.unito.it:2318/107414\",\"titles\":[\"Verso il piacere di leggere. La pratica della lettura tra gli studenti di Massa Marittima\"],\"abstracts\":[\"Il contributo descrive gli esiti di una indagine sulle pratiche di lettura degli studenti delle scuole elementari, medie, superiori di Massa Marittima (GR)\"],\"language\":\"ita\",\"subjects\":[\"LETTURA\",\"STUDENTI LETTURE INCHIESTE\",\"LETTURA MASSA MARITTIMA\"],\"creators\":[\"Vivarelli, Maurizio\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"Manziana\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Archivio Istituzionale\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2318/107414\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hdl.handle.net/2318/42181\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2318/42181\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Archivio Istituzionale\",\"url\":\"http://hdl.handle.net/2318/42181\",\"id\":\"oai:aperto.unito.it:2318/42181\"},\"trust\":0.094617486}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Archivio Istituzionale"},"target_publication_id":{"type":"STRING","value":"oai:aperto.unito.it:2318/107414"},"target_publication_author_list":{"type":"LIST_STRING","value":["Vivarelli, Maurizio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:aperto.unito.it:2318/42181"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::89fcd07f20b6785b92134bd6c1d0fa42"},"target_publication_subject_list":{"type":"LIST_STRING","value":["LETTURA","STUDENTI LETTURE INCHIESTE","LETTURA MASSA MARITTIMA"]},"trust":{"type":"FLOAT","value":0.094617486},"target_publication_title":{"type":"STRING","value":"Verso il piacere di leggere. La pratica della lettura tra gli studenti di Massa Marittima"},"provenance_datasource_name":{"type":"STRING","value":"Archivio Istituzionale"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::89fcd07f20b6785b92134bd6c1d0fa42"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:aperto.unito.it:2318/109429\",\"titles\":[\"Verso il piacere di leggere. La pratica della lettura tra gli studenti di Massa Marittima\"],\"abstracts\":[\"Il volume ospita gli esiti di una indagine sulle pratiche ed i livelli di lettura di studenti delle scuole elementari, medie, superiori di Massa Marittima (GR).\"],\"language\":\"ita\",\"subjects\":[\"LETTURA\",\"STUDENTI LETTURE INCHIESTE\",\"LETTURA MASSA MARITTIMA\"],\"creators\":[\"Vivarelli, Maurizio\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"Firenze\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Archivio Istituzionale\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2318/109429\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hdl.handle.net/2318/107414\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2318/107414\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Archivio Istituzionale\",\"url\":\"http://hdl.handle.net/2318/107414\",\"id\":\"oai:aperto.unito.it:2318/107414\"},\"trust\":0.4749002}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Archivio Istituzionale"},"target_publication_id":{"type":"STRING","value":"oai:aperto.unito.it:2318/109429"},"target_publication_author_list":{"type":"LIST_STRING","value":["Vivarelli, Maurizio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:aperto.unito.it:2318/107414"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::89fcd07f20b6785b92134bd6c1d0fa42"},"target_publication_subject_list":{"type":"LIST_STRING","value":["LETTURA","STUDENTI LETTURE INCHIESTE","LETTURA MASSA MARITTIMA"]},"trust":{"type":"FLOAT","value":0.4749002},"target_publication_title":{"type":"STRING","value":"Verso il piacere di leggere. La pratica della lettura tra gli studenti di Massa Marittima"},"provenance_datasource_name":{"type":"STRING","value":"Archivio Istituzionale"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::89fcd07f20b6785b92134bd6c1d0fa42"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:aperto.unito.it:2318/109429\",\"titles\":[\"Verso il piacere di leggere. La pratica della lettura tra gli studenti di Massa Marittima\"],\"abstracts\":[\"Il volume ospita gli esiti di una indagine sulle pratiche ed i livelli di lettura di studenti delle scuole elementari, medie, superiori di Massa Marittima (GR).\"],\"language\":\"ita\",\"subjects\":[\"LETTURA\",\"STUDENTI LETTURE INCHIESTE\",\"LETTURA MASSA MARITTIMA\"],\"creators\":[\"Vivarelli, Maurizio\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"Firenze\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Archivio Istituzionale\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2318/109429\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hdl.handle.net/2318/42181\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2318/42181\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Archivio Istituzionale\",\"url\":\"http://hdl.handle.net/2318/42181\",\"id\":\"oai:aperto.unito.it:2318/42181\"},\"trust\":0.29455006}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Archivio Istituzionale"},"target_publication_id":{"type":"STRING","value":"oai:aperto.unito.it:2318/109429"},"target_publication_author_list":{"type":"LIST_STRING","value":["Vivarelli, Maurizio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:aperto.unito.it:2318/42181"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::89fcd07f20b6785b92134bd6c1d0fa42"},"target_publication_subject_list":{"type":"LIST_STRING","value":["LETTURA","STUDENTI LETTURE INCHIESTE","LETTURA MASSA MARITTIMA"]},"trust":{"type":"FLOAT","value":0.29455006},"target_publication_title":{"type":"STRING","value":"Verso il piacere di leggere. La pratica della lettura tra gli studenti di Massa Marittima"},"provenance_datasource_name":{"type":"STRING","value":"Archivio Istituzionale"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::89fcd07f20b6785b92134bd6c1d0fa42"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:aperto.unito.it:2318/42181\",\"titles\":[\"Verso il piacere di leggere. La pratica della lettura tra gli studenti di Massa Marittima\"],\"abstracts\":[\"Il volume prende in esame le linee generali delle teorie della lettura, e ne studia le pratiche tra la popolazione studentesca di Massa Marittima (GR).\"],\"language\":\"ita\",\"subjects\":[\"LETTURA E USO DI ALTRI MEDIA DA PARTE DI RAGAZZI E GIOVANI INTERESSI E ABITUDINI DI LETTURA\"],\"creators\":[\"Vivarelli, Maurizio\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"Firenze\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Archivio Istituzionale\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2318/42181\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hdl.handle.net/2318/107414\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2318/107414\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Archivio Istituzionale\",\"url\":\"http://hdl.handle.net/2318/107414\",\"id\":\"oai:aperto.unito.it:2318/107414\"},\"trust\":0.82164484}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Archivio Istituzionale"},"target_publication_id":{"type":"STRING","value":"oai:aperto.unito.it:2318/42181"},"target_publication_author_list":{"type":"LIST_STRING","value":["Vivarelli, Maurizio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:aperto.unito.it:2318/107414"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::89fcd07f20b6785b92134bd6c1d0fa42"},"target_publication_subject_list":{"type":"LIST_STRING","value":["LETTURA E USO DI ALTRI MEDIA DA PARTE DI RAGAZZI E GIOVANI INTERESSI E ABITUDINI DI LETTURA"]},"trust":{"type":"FLOAT","value":0.82164484},"target_publication_title":{"type":"STRING","value":"Verso il piacere di leggere. La pratica della lettura tra gli studenti di Massa Marittima"},"provenance_datasource_name":{"type":"STRING","value":"Archivio Istituzionale"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::89fcd07f20b6785b92134bd6c1d0fa42"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:aperto.unito.it:2318/42181\",\"titles\":[\"Verso il piacere di leggere. La pratica della lettura tra gli studenti di Massa Marittima\"],\"abstracts\":[\"Il volume prende in esame le linee generali delle teorie della lettura, e ne studia le pratiche tra la popolazione studentesca di Massa Marittima (GR).\"],\"language\":\"ita\",\"subjects\":[\"LETTURA E USO DI ALTRI MEDIA DA PARTE DI RAGAZZI E GIOVANI INTERESSI E ABITUDINI DI LETTURA\"],\"creators\":[\"Vivarelli, Maurizio\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"Firenze\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Archivio Istituzionale\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2318/42181\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hdl.handle.net/2318/109429\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2318/109429\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Archivio Istituzionale\",\"url\":\"http://hdl.handle.net/2318/109429\",\"id\":\"oai:aperto.unito.it:2318/109429\"},\"trust\":0.012446165}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Archivio Istituzionale"},"target_publication_id":{"type":"STRING","value":"oai:aperto.unito.it:2318/42181"},"target_publication_author_list":{"type":"LIST_STRING","value":["Vivarelli, Maurizio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:aperto.unito.it:2318/109429"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::89fcd07f20b6785b92134bd6c1d0fa42"},"target_publication_subject_list":{"type":"LIST_STRING","value":["LETTURA E USO DI ALTRI MEDIA DA PARTE DI RAGAZZI E GIOVANI INTERESSI E ABITUDINI DI LETTURA"]},"trust":{"type":"FLOAT","value":0.012446165},"target_publication_title":{"type":"STRING","value":"Verso il piacere di leggere. La pratica della lettura tra gli studenti di Massa Marittima"},"provenance_datasource_name":{"type":"STRING","value":"Archivio Istituzionale"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::89fcd07f20b6785b92134bd6c1d0fa42"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1891389\",\"titles\":[\"Transarterial chemoembolisation (TACE) using irinotecan-loaded beads for the treatment of unresectable metastases to the liver in patients with colorectal cancer: an interim report\"],\"abstracts\":[\"Background Following failure of standard systemic chemotherapy, the role of hepatic transarterial therapy for colorectal hepatic metastasis continues to evolve as the experience with this technique matures. The aim of this study to gain a better understanding of the value of drug eluting bead therapy when administered to patients with unresectable colorectal hepatic metastasis. Methods This was an open-label, multi-center, single arm study, of unresectable colorectal hepatic metastasis patients who had failed standard therapy from 10/2006-10/2008. Patients received repeat embolizations with Irinotecan loaded beads(max 100 mg per embolization) per treating physician\\u0027s discretion. Results Fifty-five patients underwent 99 treatments using Irinotecan drug eluting beads. The median number of total treatments per patient was 2(range of 1-5). Median length of hospital stay was 23 hours(range 23 hours - 10 days). There were 30(30%) sessions associated with adverse reactions during or after the treatment. The median disease free and overall survival from the time of first treatment was 247 days and 343 days. Six patients(10%) were downstaged from their original disease status. Of these, four were treated with surgery and two with RFA. Neither number of liver lesions, size of liver lesions or extent of liver replacement(\\u003c\\u003d 25% vs \\u003e25%) were predictors of overall survival. Only the presence of extrahepatic disease(p \\u003d 0,001), extent of prior chemotherapy (failed 1st and 2nd line vs \\u003e 2 line failure)(p \\u003d 0,007) were predictors of overall survival in multivariate analysis. Conclusion Chemoembolization using Irinotecan loaded beads was safe and effective in the treatment of patients as demonstrated by a minimal complication rate and acceptable tumor response.\"],\"language\":\"eng\",\"subjects\":[\"Research\"],\"creators\":[\"Martin, Robert Cg\",\"Robbins, Ken\",\"Tomalty, Dana\",\"O Hara, Ryan\",\"Bosnjakovic, Petar\",\"Padr, Radek\",\"Rocek, Miloslav\",\"Slauf, Frantisek\",\"Scupchenko, Alexander\",\"Tatum, Cliff\"],\"publicationdate\":\"2009-11-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"World Journal of Surgical Oncology\",\"issn\":\"\",\"eissn\":\"1477-7819\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1477-7819-7-80\",\"type\":\"doi\"},{\"value\":\"PMC2777901\",\"type\":\"pmc\"},{\"value\":\"19886993\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2777901\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.wjso.com/content/7/1/80\",\"license\":\"OPEN\",\"hostedby\":\"World Journal of Surgical Oncology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.wjso.com/content/7/1/80\",\"license\":\"OPEN\",\"hostedby\":\"World Journal of Surgical Oncology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.wjso.com/content/7/1/80\",\"id\":\"oai:doaj.org/article:bb29539b6d1946369dff50fb11065c00\"},\"trust\":0.13426381}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1891389"},"target_publication_author_list":{"type":"LIST_STRING","value":["Martin, Robert Cg","Robbins, Ken","Tomalty, Dana","O Hara, Ryan","Bosnjakovic, Petar","Padr, Radek","Rocek, Miloslav","Slauf, Frantisek","Scupchenko, Alexander","Tatum, Cliff"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:bb29539b6d1946369dff50fb11065c00"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research"]},"trust":{"type":"FLOAT","value":0.13426381},"target_publication_title":{"type":"STRING","value":"Transarterial chemoembolisation (TACE) using irinotecan-loaded beads for the treatment of unresectable metastases to the liver in patients with colorectal cancer: an interim report"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:sedici.unlp.edu.ar:10915/13755\",\"titles\":[\"Sociología y democracia: la refundación de la carrera de Sociología en la Universidad de Buenos Aires (1984-1990)\"],\"abstracts\":[\"Desde su creación en 1957, la Carrera de Sociología de la UBA ha tenido una trayectoria accidentada. Las cambiantes coyunturas políticas nacionales, sumadas a la aparición de profundas controversias entre los sociólogos, delinearon una historia en la que resaltan las rupturas sobre las continuidades. Lejos de un proceso de institucionalización progresiva, se produjo una sucesión conflictiva de etapas en las que la orientación de la carrera variaba sustancialmente. La refundación ocurrida tras la vuelta a la democracia, en contraste, inauguró un período de inusitada estabilidad, caracterizada por la permanencia en el tiempo de profesores, materias y plan de estudios. Este artículo se propone reconstruir el proceso de reorganización institucional e intelectual de la carrera iniciado en 1984. A partir del análisis de las distintas gestiones que se sucedieron en su dirección y de las iniciativas de sus actores principales, procura dar cuenta de la instauración de esta novedosa estabilidad.\",\"Centro de Investigaciones Socio Históricas\"],\"language\":\"esl/spa\",\"subjects\":[\"Sociología\",\"educación\",\"dictadura\",\"democracia\"],\"creators\":[\"Blois, Juan Pedro\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Servicio de Difusión de la Creación Intelectual\"],\"pids\":[],\"instances\":[{\"url\":\"http://sedici.unlp.edu.ar/handle/10915/13755\",\"license\":\"OPEN\",\"hostedby\":\"Servicio de Difusión de la Creación Intelectual\",\"instancetype\":\"Article\"},{\"url\":\"http://www.sociohistorica.fahce.unlp.edu.ar/article/view/313\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.sociohistorica.fahce.unlp.edu.ar/article/view/313\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.sociohistorica.fahce.unlp.edu.ar/article/view/313\",\"id\":\"oai:doaj.org/article:8615eb7a1dc04e608bdbec68949726e5\"},\"trust\":0.75138456}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Servicio de Difusión de la Creación Intelectual"},"target_publication_id":{"type":"STRING","value":"oai:sedici.unlp.edu.ar:10915/13755"},"target_publication_author_list":{"type":"LIST_STRING","value":["Blois, Juan Pedro"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:8615eb7a1dc04e608bdbec68949726e5"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Sociología","educación","dictadura","democracia"]},"trust":{"type":"FLOAT","value":0.75138456},"target_publication_title":{"type":"STRING","value":"Sociología y democracia: la refundación de la carrera de Sociología en la Universidad de Buenos Aires (1984-1990)"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::01e9565cecc4e989123f9620c1d09c09"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:20596\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome, when the marginal cost of production is increasing. This is not the case when the marginal cost of production is constant.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:22480\"},\"trust\":0.6415637}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:20596"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:22480"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.6415637},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:20596\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome, when the marginal cost of production is increasing. This is not the case when the marginal cost of production is constant.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:22340\"},\"trust\":0.2902487}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:20596"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:22340"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.2902487},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:20596\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome, when the marginal cost of production is increasing. This is not the case when the marginal cost of production is constant.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:22385\"},\"trust\":0.5373331}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:20596"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:22385"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.5373331},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:20596\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome, when the marginal cost of production is increasing. This is not the case when the marginal cost of production is constant.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"id\":\"22480\"},\"trust\":0.71609306}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:20596"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["22480"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.71609306},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:20596\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome, when the marginal cost of production is increasing. This is not the case when the marginal cost of production is constant.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"id\":\"22385\"},\"trust\":0.79340774}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:20596"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["22385"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.79340774},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:22480\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:20596\"},\"trust\":0.9899307}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:22480"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:20596"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.9899307},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:22480\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:22340\"},\"trust\":0.6021814}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:22480"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:22340"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.6021814},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:22480\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:22385\"},\"trust\":0.06733531}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:22480"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:22385"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.06733531},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:22480\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"id\":\"22480\"},\"trust\":0.08567643}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:22480"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["22480"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.08567643},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:22480\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"id\":\"22385\"},\"trust\":0.05325842}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:22480"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["22385"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.05325842},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:22340\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:20596\"},\"trust\":0.44442433}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:22340"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:20596"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.44442433},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:22340\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:22480\"},\"trust\":0.7347196}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:22340"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:22480"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.7347196},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:22340\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:22385\"},\"trust\":0.16178495}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:22340"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:22385"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.16178495},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:22340\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"id\":\"22480\"},\"trust\":0.10553658}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:22340"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["22480"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.10553658},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:22340\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"id\":\"22385\"},\"trust\":0.22797078}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:22340"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["22385"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.22797078},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:22385\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:20596\"},\"trust\":0.1740194}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:22385"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:20596"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.1740194},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:22385\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:22480\"},\"trust\":0.60292083}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:22385"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:22480"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.60292083},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:22385\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:22340\"},\"trust\":0.4275595}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:22385"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:22340"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.4275595},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:22385\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"id\":\"22480\"},\"trust\":0.2983054}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:22385"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["22480"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.2983054},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:22385\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"id\":\"22385\"},\"trust\":0.81730497}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:22385"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["22385"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.81730497},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"22480\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency ; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:20596\"},\"trust\":0.5263229}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"22480"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:20596"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency ; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.5263229},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"22480\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency ; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:22480\"},\"trust\":0.02161789}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"22480"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:22480"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency ; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.02161789},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"22480\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency ; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:22340\"},\"trust\":0.33658445}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"22480"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:22340"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency ; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.33658445},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"22480\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency ; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:22385\"},\"trust\":0.048770547}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"22480"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:22385"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency ; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.048770547},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"22480\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency ; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"id\":\"22385\"},\"trust\":0.042264104}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"22480"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["22385"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency ; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.042264104},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"22385\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency ; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/20596/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:20596\"},\"trust\":0.9473421}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"22385"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:20596"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency ; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.9473421},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"22385\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency ; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/22480/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:22480\"},\"trust\":0.5228255}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"22385"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:22480"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency ; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.5228255},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"22385\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency ; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/22340/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:22340\"},\"trust\":0.50703853}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"22385"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:22340"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency ; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.50703853},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"22385\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency ; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/22385/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:22385\"},\"trust\":0.18301862}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"22385"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:22385"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency ; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.18301862},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"22385\",\"titles\":[\"Régulation d\\u0027un duopole et R\\u0026D environnementale\"],\"abstracts\":[\"We develop a three stage game model composed of a regulator and two firms. These firms compete on the same market where they offer the same homogeneous good, and can invest in R\\u0026D to lower their emission/output ratio. By means of a tax per-unit of pollution and a subsidy per-unit of R\\u0026D level, the regulator can induce the first best outcome.\"],\"language\":\"eng\",\"subjects\":[\"H21 - Efficiency ; Optimal Taxation\",\"D62 - Externalities\",\"O32 - Management of Technological Innovation and R\\u0026D\",\"C72 - Noncooperative Games\"],\"creators\":[\"Ben Youssef, Slim\",\"Dinar, Zeineb\"],\"publicationdate\":\"2009-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22385/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/22480/\",\"id\":\"22480\"},\"trust\":0.35316265}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"22385"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ben Youssef, Slim","Dinar, Zeineb"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["22480"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H21 - Efficiency ; Optimal Taxation","D62 - Externalities","O32 - Management of Technological Innovation and R\u0026D","C72 - Noncooperative Games"]},"trust":{"type":"FLOAT","value":0.35316265},"target_publication_title":{"type":"STRING","value":"Régulation d\u0027un duopole et R\u0026D environnementale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00560817\",\"titles\":[\"Incremental Verification of Component-Based Timed Systems\"],\"abstracts\":[\"We are interested in the incremental development, by integration of components, of component-based timed systems, and in particular, in the preservation of their properties during such a development process. We model timed components with timed automata. Their composition is achieved with the classic parallel composition operator for timed automata. The specifications of these timed systems are expressed with the timed linear logic Mitl (Metric Interval Temporal Logic). To guarantee the preservation of properties during an incremental development process, we propose to use ? -simulation relations, adapted for timed systems. First, we extend the classic notion of ? -simulation with timed aspects. As in the untimed case, this relation, called timed ? -simulation, preserves safety properties. To preserve more properties, in particular liveness ones, we present another relation, called divergencesensitive and stability-respecting (DS) timed ? -simulation. This last relation preserves all Mitl properties (and thus liveness ones), but also strong non-zenoness and deadlockfreedom. Moreover, as we put ourselves in a component-based framework, we study if the relations are appropriate to the use of the composition operator that we consider. For this purpose, we study if the relations are compatible with this operator, and if composability and compositionality hold. These three properties are a way to reduce the cost of the verification of the preservation, or even to get it for free. It results that the timed ? -simulation is appropriate with the classic operator since the properties hold without any assumption. However, this is not the case for the DS timed ? -simulation. We implemented the algorithmic verification of the simulations in a tool called Vesta (Verification of Simulation for Timed Automata). The structure of the tool was inspired from the one of the Open-Kronos tool. This allows, as additionnal feature, to connect the models considered in Vesta to the modules of the verification platform Open-Caesar. We show the interest of our method by applying it on a case study, concerning a production cell example.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_NI] Computer Science/Networking and Internet Architecture\",\"[INFO:INFO_NI] Informatique/Réseaux et télécommunications\"],\"creators\":[\"Julliand, Jacques\",\"Mountassir, Hassan\",\"Oudot, Emilie\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00560817\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00560817\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00560817\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00560817\",\"id\":\"oai:HAL:hal-00560817v1\"},\"trust\":0.9464728}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00560817"},"target_publication_author_list":{"type":"LIST_STRING","value":["Julliand, Jacques","Mountassir, Hassan","Oudot, Emilie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00560817v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_NI] Computer Science/Networking and Internet Architecture","[INFO:INFO_NI] Informatique/Réseaux et télécommunications"]},"trust":{"type":"FLOAT","value":0.9464728},"target_publication_title":{"type":"STRING","value":"Incremental Verification of Component-Based Timed Systems"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00560817v1\",\"titles\":[\"Incremental Verification of Component-Based Timed Systems\"],\"abstracts\":[\"International audience\",\"We are interested in the incremental development, by integration of components, of component-based timed systems, and in particular, in the preservation of their properties during such a development process. We model timed components with timed automata. Their composition is achieved with the classic parallel composition operator for timed automata. The specifications of these timed systems are expressed with the timed linear logic Mitl (Metric Interval Temporal Logic). To guarantee the preservation of properties during an incremental development process, we propose to use ? -simulation relations, adapted for timed systems. First, we extend the classic notion of ? -simulation with timed aspects. As in the untimed case, this relation, called timed ? -simulation, preserves safety properties. To preserve more properties, in particular liveness ones, we present another relation, called divergencesensitive and stability-respecting (DS) timed ? -simulation. This last relation preserves all Mitl properties (and thus liveness ones), but also strong non-zenoness and deadlockfreedom. Moreover, as we put ourselves in a component-based framework, we study if the relations are appropriate to the use of the composition operator that we consider. For this purpose, we study if the relations are compatible with this operator, and if composability and compositionality hold. These three properties are a way to reduce the cost of the verification of the preservation, or even to get it for free. It results that the timed ? -simulation is appropriate with the classic operator since the properties hold without any assumption. However, this is not the case for the DS timed ? -simulation. We implemented the algorithmic verification of the simulations in a tool called Vesta (Verification of Simulation for Timed Automata). The structure of the tool was inspired from the one of the Open-Kronos tool. This allows, as additionnal feature, to connect the models considered in Vesta to the modules of the verification platform Open-Caesar. We show the interest of our method by applying it on a case study, concerning a production cell example.\"],\"language\":\"eng\",\"subjects\":[\"[INFO.INFO-NI] Computer Science/Networking and Internet Architecture\"],\"creators\":[\"Julliand, Jacques\",\"Mountassir, Hassan\",\"Oudot, Emilie\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire d\\u0027Informatique de Franche-Comté (LIFC) ; Université de Franche-Comté\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00560817\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00560817\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00560817\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00560817\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00560817\"},\"trust\":0.7647223}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00560817v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Julliand, Jacques","Mountassir, Hassan","Oudot, Emilie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00560817"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO.INFO-NI] Computer Science/Networking and Internet Architecture"]},"trust":{"type":"FLOAT","value":0.7647223},"target_publication_title":{"type":"STRING","value":"Incremental Verification of Component-Based Timed Systems"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1485819\",\"titles\":[\"Hybridization in East African swarm-raiding army ants\"],\"abstracts\":[\"Hybridization can have complex effects on evolutionary dynamics in ants because of the combination of haplodiploid sex-determination and eusociality. While hybrid non-reproductive workers have been found in a range of species, examples of gene-flow via hybrid queens and males are rare. We studied hybridization in East African army ants (Dorylus subgenus Anomma) using morphology, mitochondrial DNA sequences, and nuclear microsatellites.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Kronauer, Daniel Jc\",\"Peters, Marcell K.\",\"Schöning, Caspar\",\"Boomsma, Jacobus J.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"CURIS - Copenhagen University Research Registration System\"],\"pids\":[],\"instances\":[{\"url\":\"http://curis.ku.dk/ws/files/41881629/1742_9994_8_20.pdf\",\"license\":\"OPEN\",\"hostedby\":\"CURIS - Copenhagen University Research Registration System\",\"instancetype\":\"Article\"},{\"url\":\"http://www.frontiersinzoology.com/content/8/1/20\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Zoology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.frontiersinzoology.com/content/8/1/20\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Zoology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.frontiersinzoology.com/content/8/1/20\",\"id\":\"oai:doaj.org/article:4b4b5d656c994f5eab43fcd8994d5b92\"},\"trust\":0.16709578}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"CURIS - Copenhagen University Research Registration System"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1485819"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kronauer, Daniel Jc","Peters, Marcell K.","Schöning, Caspar","Boomsma, Jacobus J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:4b4b5d656c994f5eab43fcd8994d5b92"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"trust":{"type":"FLOAT","value":0.16709578},"target_publication_title":{"type":"STRING","value":"Hybridization in East African swarm-raiding army ants"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::030e65da2b1c944090548d36b244b28d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1485819\",\"titles\":[\"Hybridization in East African swarm-raiding army ants\"],\"abstracts\":[\"Hybridization can have complex effects on evolutionary dynamics in ants because of the combination of haplodiploid sex-determination and eusociality. While hybrid non-reproductive workers have been found in a range of species, examples of gene-flow via hybrid queens and males are rare. We studied hybridization in East African army ants (Dorylus subgenus Anomma) using morphology, mitochondrial DNA sequences, and nuclear microsatellites.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Kronauer, Daniel Jc\",\"Peters, Marcell K.\",\"Schöning, Caspar\",\"Boomsma, Jacobus J.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"CURIS - Copenhagen University Research Registration System\"],\"pids\":[{\"value\":\"10.1186/1742-9994-8-20\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://curis.ku.dk/ws/files/41881629/1742_9994_8_20.pdf\",\"license\":\"OPEN\",\"hostedby\":\"CURIS - Copenhagen University Research Registration System\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1186/1742-9994-8-20\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3177866\",\"id\":\"oai:europepmc.org:2181533\"},\"trust\":0.9753881}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"CURIS - Copenhagen University Research Registration System"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1485819"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kronauer, Daniel Jc","Peters, Marcell K.","Schöning, Caspar","Boomsma, Jacobus J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2181533"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.9753881},"target_publication_title":{"type":"STRING","value":"Hybridization in East African swarm-raiding army ants"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::030e65da2b1c944090548d36b244b28d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1485819\",\"titles\":[\"Hybridization in East African swarm-raiding army ants\"],\"abstracts\":[\"Hybridization can have complex effects on evolutionary dynamics in ants because of the combination of haplodiploid sex-determination and eusociality. While hybrid non-reproductive workers have been found in a range of species, examples of gene-flow via hybrid queens and males are rare. We studied hybridization in East African army ants (Dorylus subgenus Anomma) using morphology, mitochondrial DNA sequences, and nuclear microsatellites.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Kronauer, Daniel Jc\",\"Peters, Marcell K.\",\"Schöning, Caspar\",\"Boomsma, Jacobus J.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"CURIS - Copenhagen University Research Registration System\"],\"pids\":[{\"value\":\"PMC3177866\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://curis.ku.dk/ws/files/41881629/1742_9994_8_20.pdf\",\"license\":\"OPEN\",\"hostedby\":\"CURIS - Copenhagen University Research Registration System\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3177866\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3177866\",\"id\":\"oai:europepmc.org:2181533\"},\"trust\":0.9753881}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"CURIS - Copenhagen University Research Registration System"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1485819"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kronauer, Daniel Jc","Peters, Marcell K.","Schöning, Caspar","Boomsma, Jacobus J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2181533"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.9753881},"target_publication_title":{"type":"STRING","value":"Hybridization in East African swarm-raiding army ants"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::030e65da2b1c944090548d36b244b28d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1485819\",\"titles\":[\"Hybridization in East African swarm-raiding army ants\"],\"abstracts\":[\"Hybridization can have complex effects on evolutionary dynamics in ants because of the combination of haplodiploid sex-determination and eusociality. While hybrid non-reproductive workers have been found in a range of species, examples of gene-flow via hybrid queens and males are rare. We studied hybridization in East African army ants (Dorylus subgenus Anomma) using morphology, mitochondrial DNA sequences, and nuclear microsatellites.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Kronauer, Daniel Jc\",\"Peters, Marcell K.\",\"Schöning, Caspar\",\"Boomsma, Jacobus J.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"CURIS - Copenhagen University Research Registration System\"],\"pids\":[{\"value\":\"21859477\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://curis.ku.dk/ws/files/41881629/1742_9994_8_20.pdf\",\"license\":\"OPEN\",\"hostedby\":\"CURIS - Copenhagen University Research Registration System\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"21859477\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3177866\",\"id\":\"oai:europepmc.org:2181533\"},\"trust\":0.9753881}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"CURIS - Copenhagen University Research Registration System"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1485819"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kronauer, Daniel Jc","Peters, Marcell K.","Schöning, Caspar","Boomsma, Jacobus J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2181533"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.9753881},"target_publication_title":{"type":"STRING","value":"Hybridization in East African swarm-raiding army ants"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::030e65da2b1c944090548d36b244b28d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1485819\",\"titles\":[\"Hybridization in East African swarm-raiding army ants\"],\"abstracts\":[\"Hybridization can have complex effects on evolutionary dynamics in ants because of the combination of haplodiploid sex-determination and eusociality. While hybrid non-reproductive workers have been found in a range of species, examples of gene-flow via hybrid queens and males are rare. We studied hybridization in East African army ants (Dorylus subgenus Anomma) using morphology, mitochondrial DNA sequences, and nuclear microsatellites.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Kronauer, Daniel Jc\",\"Peters, Marcell K.\",\"Schöning, Caspar\",\"Boomsma, Jacobus J.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"CURIS - Copenhagen University Research Registration System\"],\"pids\":[{\"value\":\"10.1186/1742-9994-8-20\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://curis.ku.dk/ws/files/41881629/1742_9994_8_20.pdf\",\"license\":\"OPEN\",\"hostedby\":\"CURIS - Copenhagen University Research Registration System\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1186/1742-9994-8-20\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3177866\",\"id\":\"oai:europepmc.org:2181533\"},\"trust\":0.9753881}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"CURIS - Copenhagen University Research Registration System"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1485819"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kronauer, Daniel Jc","Peters, Marcell K.","Schöning, Caspar","Boomsma, Jacobus J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2181533"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.9753881},"target_publication_title":{"type":"STRING","value":"Hybridization in East African swarm-raiding army ants"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::030e65da2b1c944090548d36b244b28d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1485819\",\"titles\":[\"Hybridization in East African swarm-raiding army ants\"],\"abstracts\":[\"Hybridization can have complex effects on evolutionary dynamics in ants because of the combination of haplodiploid sex-determination and eusociality. While hybrid non-reproductive workers have been found in a range of species, examples of gene-flow via hybrid queens and males are rare. We studied hybridization in East African army ants (Dorylus subgenus Anomma) using morphology, mitochondrial DNA sequences, and nuclear microsatellites.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Kronauer, Daniel Jc\",\"Peters, Marcell K.\",\"Schöning, Caspar\",\"Boomsma, Jacobus J.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"CURIS - Copenhagen University Research Registration System\"],\"pids\":[{\"value\":\"PMC3177866\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://curis.ku.dk/ws/files/41881629/1742_9994_8_20.pdf\",\"license\":\"OPEN\",\"hostedby\":\"CURIS - Copenhagen University Research Registration System\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3177866\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3177866\",\"id\":\"oai:europepmc.org:2181533\"},\"trust\":0.9753881}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"CURIS - Copenhagen University Research Registration System"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1485819"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kronauer, Daniel Jc","Peters, Marcell K.","Schöning, Caspar","Boomsma, Jacobus J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2181533"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.9753881},"target_publication_title":{"type":"STRING","value":"Hybridization in East African swarm-raiding army ants"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::030e65da2b1c944090548d36b244b28d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1485819\",\"titles\":[\"Hybridization in East African swarm-raiding army ants\"],\"abstracts\":[\"Hybridization can have complex effects on evolutionary dynamics in ants because of the combination of haplodiploid sex-determination and eusociality. While hybrid non-reproductive workers have been found in a range of species, examples of gene-flow via hybrid queens and males are rare. We studied hybridization in East African army ants (Dorylus subgenus Anomma) using morphology, mitochondrial DNA sequences, and nuclear microsatellites.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Kronauer, Daniel Jc\",\"Peters, Marcell K.\",\"Schöning, Caspar\",\"Boomsma, Jacobus J.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"CURIS - Copenhagen University Research Registration System\"],\"pids\":[{\"value\":\"21859477\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://curis.ku.dk/ws/files/41881629/1742_9994_8_20.pdf\",\"license\":\"OPEN\",\"hostedby\":\"CURIS - Copenhagen University Research Registration System\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"21859477\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3177866\",\"id\":\"oai:europepmc.org:2181533\"},\"trust\":0.9753881}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"CURIS - Copenhagen University Research Registration System"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1485819"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kronauer, Daniel Jc","Peters, Marcell K.","Schöning, Caspar","Boomsma, Jacobus J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2181533"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.9753881},"target_publication_title":{"type":"STRING","value":"Hybridization in East African swarm-raiding army ants"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::030e65da2b1c944090548d36b244b28d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2181533\",\"titles\":[\"Hybridization in East African swarm-raiding army ants\"],\"abstracts\":[\"Background Hybridization can have complex effects on evolutionary dynamics in ants because of the combination of haplodiploid sex-determination and eusociality. While hybrid non-reproductive workers have been found in a range of species, examples of gene-flow via hybrid queens and males are rare. We studied hybridization in East African army ants (Dorylus subgenus Anomma) using morphology, mitochondrial DNA sequences, and nuclear microsatellites. Results While the mitochondrial phylogeny had a strong geographic signal, different species were not recovered as monophyletic. At our main study site at Kakamega Forest, a mitochondrial haplotype was shared between a \\\"Dorylus molestus-like\\\" and a \\\"Dorylus wilverthi-like\\\" form. This pattern is best explained by introgression following hybridization between D. molestus and D. wilverthi. Microsatellite data from workers showed that the two morphological forms correspond to two distinct genetic clusters, with a significant proportion of individuals being classified as hybrids. Conclusions We conclude that hybridization and gene-flow between the two army ant species D. molestus and D. wilverthi has occurred, and that mating between the two forms continues to regularly produce hybrid workers. Hybridization is particularly surprising in army ants because workers have control over which males are allowed to mate with a young virgin queen inside the colony.\"],\"language\":\"eng\",\"subjects\":[\"Research\",\"Dorylinae\",\"Formicidae\",\"introgression\",\"microsatellites\",\"mtDNA\",\"gene flow\"],\"creators\":[\"Kronauer, Daniel Jc\",\"Peters, Marcell K.\",\"Schöning, Caspar\",\"Boomsma, Jacobus J.\"],\"publicationdate\":\"2011-08-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Frontiers in Zoology\",\"issn\":\"\",\"eissn\":\"1742-9994\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1742-9994-8-20\",\"type\":\"doi\"},{\"value\":\"PMC3177866\",\"type\":\"pmc\"},{\"value\":\"21859477\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3177866\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.frontiersinzoology.com/content/8/1/20\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Zoology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.frontiersinzoology.com/content/8/1/20\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Zoology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.frontiersinzoology.com/content/8/1/20\",\"id\":\"oai:doaj.org/article:4b4b5d656c994f5eab43fcd8994d5b92\"},\"trust\":0.75261974}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2181533"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kronauer, Daniel Jc","Peters, Marcell K.","Schöning, Caspar","Boomsma, Jacobus J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:4b4b5d656c994f5eab43fcd8994d5b92"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research","Dorylinae","Formicidae","introgression","microsatellites","mtDNA","gene flow"]},"trust":{"type":"FLOAT","value":0.75261974},"target_publication_title":{"type":"STRING","value":"Hybridization in East African swarm-raiding army ants"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2011-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2181533\",\"titles\":[\"Hybridization in East African swarm-raiding army ants\"],\"abstracts\":[\"Background Hybridization can have complex effects on evolutionary dynamics in ants because of the combination of haplodiploid sex-determination and eusociality. While hybrid non-reproductive workers have been found in a range of species, examples of gene-flow via hybrid queens and males are rare. We studied hybridization in East African army ants (Dorylus subgenus Anomma) using morphology, mitochondrial DNA sequences, and nuclear microsatellites. Results While the mitochondrial phylogeny had a strong geographic signal, different species were not recovered as monophyletic. At our main study site at Kakamega Forest, a mitochondrial haplotype was shared between a \\\"Dorylus molestus-like\\\" and a \\\"Dorylus wilverthi-like\\\" form. This pattern is best explained by introgression following hybridization between D. molestus and D. wilverthi. Microsatellite data from workers showed that the two morphological forms correspond to two distinct genetic clusters, with a significant proportion of individuals being classified as hybrids. Conclusions We conclude that hybridization and gene-flow between the two army ant species D. molestus and D. wilverthi has occurred, and that mating between the two forms continues to regularly produce hybrid workers. Hybridization is particularly surprising in army ants because workers have control over which males are allowed to mate with a young virgin queen inside the colony.\"],\"language\":\"eng\",\"subjects\":[\"Research\",\"Dorylinae\",\"Formicidae\",\"introgression\",\"microsatellites\",\"mtDNA\",\"gene flow\"],\"creators\":[\"Kronauer, Daniel Jc\",\"Peters, Marcell K.\",\"Schöning, Caspar\",\"Boomsma, Jacobus J.\"],\"publicationdate\":\"2011-08-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Frontiers in Zoology\",\"issn\":\"\",\"eissn\":\"1742-9994\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1742-9994-8-20\",\"type\":\"doi\"},{\"value\":\"PMC3177866\",\"type\":\"pmc\"},{\"value\":\"21859477\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3177866\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://curis.ku.dk/ws/files/41881629/1742_9994_8_20.pdf\",\"license\":\"OPEN\",\"hostedby\":\"CURIS - Copenhagen University Research Registration System\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://curis.ku.dk/ws/files/41881629/1742_9994_8_20.pdf\",\"license\":\"OPEN\",\"hostedby\":\"CURIS - Copenhagen University Research Registration System\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"CURIS - Copenhagen University Research Registration System\",\"url\":\"http://curis.ku.dk/ws/files/41881629/1742_9994_8_20.pdf\",\"id\":\"oai:oai.forksningsdatabasen.dk:1485819\"},\"trust\":0.68602777}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2181533"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kronauer, Daniel Jc","Peters, Marcell K.","Schöning, Caspar","Boomsma, Jacobus J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:1485819"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::030e65da2b1c944090548d36b244b28d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research","Dorylinae","Formicidae","introgression","microsatellites","mtDNA","gene flow"]},"trust":{"type":"FLOAT","value":0.68602777},"target_publication_title":{"type":"STRING","value":"Hybridization in East African swarm-raiding army ants"},"provenance_datasource_name":{"type":"STRING","value":"CURIS - Copenhagen University Research Registration System"},"target_dateofacceptance":{"type":"DATE","value":"2011-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\",\"titles\":[\"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies\"],\"abstracts\":[\"The role of ocean dynamics in optimally exciting interannual variability of tropical sea surface temperature (SST) anomalies is investigated using an idealized-geometry ocean general circulation model. Initial temperature and salinity perturbations leading to an optimal growth of tropical SST anomalies, typically arising from the nonnormal dynamics, are evaluated. The structure of the optimal perturbations is characterized by relatively strong deep salinity anomalies near the western boundary generating a transient amplification of equatorial SST anomalies in less than four years. The associated growth mechanism is linked to the excitation of coastal and equatorial Kelvin waves near the western boundary following a rapid geostrophic adjustment owing to the optimal initial temperature and salinity perturbations. The results suggest that the nonnormality of the ocean dynamics may efficiently create large tropical SST variability on interannual time scales in the Atlantic without the participation of air-sea processes or the meridional overturning circulation. An optimal deep initial salinity perturbation of 0.1 ppt located near the western boundary can result in a tropical SST anomaly of approximately 0.458C after nearly four years, assuming the dynamics are linear. Possible mechanisms for exciting such deep perturbations are discussed. While this study is motivated by tropical Atlantic SST variability, its relevance to other basins is not excluded. The optimal initial conditions leading to the tropical SST anomalies\\u0027 growth are obtained by solving a generalized eigenvalue problem. The evaluation of the optimals is achieved by using the Massachusetts Institute of Technology general circulation model (MITgcm) tangent linear and adjoint models as well the the Arnoldi Package (ARPACK) software for solving large-scale eigenvalue problems. © 2010 American Meteorological Society.\"],\"language\":\"eng\",\"subjects\":[\"Boundary currents\",\"Dynamics\",\"Interannual variability\",\"Kelvin waves\",\"Sea surface temperature\"],\"creators\":[\"Zanna, L.\",\"Heimbach, P.\",\"Moore, Am\",\"Tziperman, E.\"],\"publicationdate\":\"2010-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1175/2009JPO4196.1\",\"type\":\"doi\"},{\"value\":\"10.1175/2009jpo4196.1.\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1175/2009jpo4196.1.\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Digital Access to Scholarship at Harvard\",\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11892629\",\"id\":\"oai:dash.harvard.edu:1/11892629\"},\"trust\":0.737054}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zanna, L.","Heimbach, P.","Moore, Am","Tziperman, E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dash.harvard.edu:1/11892629"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Boundary currents","Dynamics","Interannual variability","Kelvin waves","Sea surface temperature"]},"trust":{"type":"FLOAT","value":0.737054},"target_publication_title":{"type":"STRING","value":"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies"},"provenance_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_dateofacceptance":{"type":"DATE","value":"2010-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\",\"titles\":[\"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies\"],\"abstracts\":[\"The role of ocean dynamics in optimally exciting interannual variability of tropical sea surface temperature (SST) anomalies is investigated using an idealized-geometry ocean general circulation model. Initial temperature and salinity perturbations leading to an optimal growth of tropical SST anomalies, typically arising from the nonnormal dynamics, are evaluated. The structure of the optimal perturbations is characterized by relatively strong deep salinity anomalies near the western boundary generating a transient amplification of equatorial SST anomalies in less than four years. The associated growth mechanism is linked to the excitation of coastal and equatorial Kelvin waves near the western boundary following a rapid geostrophic adjustment owing to the optimal initial temperature and salinity perturbations. The results suggest that the nonnormality of the ocean dynamics may efficiently create large tropical SST variability on interannual time scales in the Atlantic without the participation of air-sea processes or the meridional overturning circulation. An optimal deep initial salinity perturbation of 0.1 ppt located near the western boundary can result in a tropical SST anomaly of approximately 0.458C after nearly four years, assuming the dynamics are linear. Possible mechanisms for exciting such deep perturbations are discussed. While this study is motivated by tropical Atlantic SST variability, its relevance to other basins is not excluded. The optimal initial conditions leading to the tropical SST anomalies\\u0027 growth are obtained by solving a generalized eigenvalue problem. The evaluation of the optimals is achieved by using the Massachusetts Institute of Technology general circulation model (MITgcm) tangent linear and adjoint models as well the the Arnoldi Package (ARPACK) software for solving large-scale eigenvalue problems. © 2010 American Meteorological Society.\"],\"language\":\"eng\",\"subjects\":[\"Boundary currents\",\"Dynamics\",\"Interannual variability\",\"Kelvin waves\",\"Sea surface temperature\"],\"creators\":[\"Zanna, L.\",\"Heimbach, P.\",\"Moore, Am\",\"Tziperman, E.\"],\"publicationdate\":\"2010-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1175/2009JPO4196.1\",\"type\":\"doi\"},{\"value\":\"10.1175/2009JPO4196.1.\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1175/2009JPO4196.1.\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Digital Access to Scholarship at Harvard\",\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11892629\",\"id\":\"oai:dash.harvard.edu:1/11892629\"},\"trust\":0.737054}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zanna, L.","Heimbach, P.","Moore, Am","Tziperman, E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dash.harvard.edu:1/11892629"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Boundary currents","Dynamics","Interannual variability","Kelvin waves","Sea surface temperature"]},"trust":{"type":"FLOAT","value":0.737054},"target_publication_title":{"type":"STRING","value":"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies"},"provenance_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_dateofacceptance":{"type":"DATE","value":"2010-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\",\"titles\":[\"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies\"],\"abstracts\":[\"The role of ocean dynamics in optimally exciting interannual variability of tropical sea surface temperature (SST) anomalies is investigated using an idealized-geometry ocean general circulation model. Initial temperature and salinity perturbations leading to an optimal growth of tropical SST anomalies, typically arising from the nonnormal dynamics, are evaluated. The structure of the optimal perturbations is characterized by relatively strong deep salinity anomalies near the western boundary generating a transient amplification of equatorial SST anomalies in less than four years. The associated growth mechanism is linked to the excitation of coastal and equatorial Kelvin waves near the western boundary following a rapid geostrophic adjustment owing to the optimal initial temperature and salinity perturbations. The results suggest that the nonnormality of the ocean dynamics may efficiently create large tropical SST variability on interannual time scales in the Atlantic without the participation of air-sea processes or the meridional overturning circulation. An optimal deep initial salinity perturbation of 0.1 ppt located near the western boundary can result in a tropical SST anomaly of approximately 0.458C after nearly four years, assuming the dynamics are linear. Possible mechanisms for exciting such deep perturbations are discussed. While this study is motivated by tropical Atlantic SST variability, its relevance to other basins is not excluded. The optimal initial conditions leading to the tropical SST anomalies\\u0027 growth are obtained by solving a generalized eigenvalue problem. The evaluation of the optimals is achieved by using the Massachusetts Institute of Technology general circulation model (MITgcm) tangent linear and adjoint models as well the the Arnoldi Package (ARPACK) software for solving large-scale eigenvalue problems. © 2010 American Meteorological Society.\"],\"language\":\"eng\",\"subjects\":[\"Boundary currents\",\"Dynamics\",\"Interannual variability\",\"Kelvin waves\",\"Sea surface temperature\"],\"creators\":[\"Zanna, L.\",\"Heimbach, P.\",\"Moore, Am\",\"Tziperman, E.\"],\"publicationdate\":\"2010-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1175/2009JPO4196.1\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11892629\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11892629\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Digital Access to Scholarship at Harvard\",\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11892629\",\"id\":\"oai:dash.harvard.edu:1/11892629\"},\"trust\":0.11202085}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zanna, L.","Heimbach, P.","Moore, Am","Tziperman, E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dash.harvard.edu:1/11892629"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Boundary currents","Dynamics","Interannual variability","Kelvin waves","Sea surface temperature"]},"trust":{"type":"FLOAT","value":0.11202085},"target_publication_title":{"type":"STRING","value":"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies"},"provenance_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_dateofacceptance":{"type":"DATE","value":"2010-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\",\"titles\":[\"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies\"],\"abstracts\":[\"The role of ocean dynamics in optimally exciting interannual variability of tropical sea surface temperature (SST) anomalies is investigated using an idealized-geometry ocean general circulation model. Initial temperature and salinity perturbations leading to an optimal growth of tropical SST anomalies, typically arising from the nonnormal dynamics, are evaluated. The structure of the optimal perturbations is characterized by relatively strong deep salinity anomalies near the western boundary generating a transient amplification of equatorial SST anomalies in less than four years. The associated growth mechanism is linked to the excitation of coastal and equatorial Kelvin waves near the western boundary following a rapid geostrophic adjustment owing to the optimal initial temperature and salinity perturbations. The results suggest that the nonnormality of the ocean dynamics may efficiently create large tropical SST variability on interannual time scales in the Atlantic without the participation of air-sea processes or the meridional overturning circulation. An optimal deep initial salinity perturbation of 0.1 ppt located near the western boundary can result in a tropical SST anomaly of approximately 0.458C after nearly four years, assuming the dynamics are linear. Possible mechanisms for exciting such deep perturbations are discussed. While this study is motivated by tropical Atlantic SST variability, its relevance to other basins is not excluded. The optimal initial conditions leading to the tropical SST anomalies\\u0027 growth are obtained by solving a generalized eigenvalue problem. The evaluation of the optimals is achieved by using the Massachusetts Institute of Technology general circulation model (MITgcm) tangent linear and adjoint models as well the the Arnoldi Package (ARPACK) software for solving large-scale eigenvalue problems. © 2010 American Meteorological Society.\"],\"language\":\"eng\",\"subjects\":[\"Boundary currents\",\"Dynamics\",\"Interannual variability\",\"Kelvin waves\",\"Sea surface temperature\"],\"creators\":[\"Zanna, L.\",\"Heimbach, P.\",\"Moore, Am\",\"Tziperman, E.\"],\"publicationdate\":\"2010-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1175/2009JPO4196.1\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11892629\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11892629\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Digital Access to Scholarship at Harvard\",\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11892629\",\"id\":\"oai:dash.harvard.edu:1/11892629\"},\"trust\":0.11202085}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zanna, L.","Heimbach, P.","Moore, Am","Tziperman, E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dash.harvard.edu:1/11892629"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Boundary currents","Dynamics","Interannual variability","Kelvin waves","Sea surface temperature"]},"trust":{"type":"FLOAT","value":0.11202085},"target_publication_title":{"type":"STRING","value":"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies"},"provenance_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_dateofacceptance":{"type":"DATE","value":"2010-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\",\"titles\":[\"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies\"],\"abstracts\":[\"The role of ocean dynamics in optimally exciting interannual variability of tropical sea surface temperature (SST) anomalies is investigated using an idealized-geometry ocean general circulation model. Initial temperature and salinity perturbations leading to an optimal growth of tropical SST anomalies, typically arising from the nonnormal dynamics, are evaluated. The structure of the optimal perturbations is characterized by relatively strong deep salinity anomalies near the western boundary generating a transient amplification of equatorial SST anomalies in less than four years. The associated growth mechanism is linked to the excitation of coastal and equatorial Kelvin waves near the western boundary following a rapid geostrophic adjustment owing to the optimal initial temperature and salinity perturbations. The results suggest that the nonnormality of the ocean dynamics may efficiently create large tropical SST variability on interannual time scales in the Atlantic without the participation of air-sea processes or the meridional overturning circulation. An optimal deep initial salinity perturbation of 0.1 ppt located near the western boundary can result in a tropical SST anomaly of approximately 0.458C after nearly four years, assuming the dynamics are linear. Possible mechanisms for exciting such deep perturbations are discussed. While this study is motivated by tropical Atlantic SST variability, its relevance to other basins is not excluded. The optimal initial conditions leading to the tropical SST anomalies\\u0027 growth are obtained by solving a generalized eigenvalue problem. The evaluation of the optimals is achieved by using the Massachusetts Institute of Technology general circulation model (MITgcm) tangent linear and adjoint models as well the the Arnoldi Package (ARPACK) software for solving large-scale eigenvalue problems. © 2010 American Meteorological Society.\"],\"language\":\"eng\",\"subjects\":[\"Boundary currents\",\"Dynamics\",\"Interannual variability\",\"Kelvin waves\",\"Sea surface temperature\"],\"creators\":[\"Zanna, L.\",\"Heimbach, P.\",\"Moore, Am\",\"Tziperman, E.\"],\"publicationdate\":\"2010-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1175/2009JPO4196.1\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hdl.handle.net/1721.1/63137\",\"license\":\"OPEN\",\"hostedby\":\"DSpace@MIT\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1721.1/63137\",\"license\":\"OPEN\",\"hostedby\":\"DSpace@MIT\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DSpace@MIT\",\"url\":\"http://hdl.handle.net/1721.1/63137\",\"id\":\"oai:dspace.mit.edu:1721.1/63137\"},\"trust\":0.3571546}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zanna, L.","Heimbach, P.","Moore, Am","Tziperman, E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.mit.edu:1721.1/63137"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2a38a4a9316c49e5a833517c45d31070"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Boundary currents","Dynamics","Interannual variability","Kelvin waves","Sea surface temperature"]},"trust":{"type":"FLOAT","value":0.3571546},"target_publication_title":{"type":"STRING","value":"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies"},"provenance_datasource_name":{"type":"STRING","value":"DSpace@MIT"},"target_dateofacceptance":{"type":"DATE","value":"2010-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\",\"titles\":[\"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies\"],\"abstracts\":[\"The role of ocean dynamics in optimally exciting interannual variability of tropical sea surface temperature (SST) anomalies is investigated using an idealized-geometry ocean general circulation model. Initial temperature and salinity perturbations leading to an optimal growth of tropical SST anomalies, typically arising from the nonnormal dynamics, are evaluated. The structure of the optimal perturbations is characterized by relatively strong deep salinity anomalies near the western boundary generating a transient amplification of equatorial SST anomalies in less than four years. The associated growth mechanism is linked to the excitation of coastal and equatorial Kelvin waves near the western boundary following a rapid geostrophic adjustment owing to the optimal initial temperature and salinity perturbations. The results suggest that the nonnormality of the ocean dynamics may efficiently create large tropical SST variability on interannual time scales in the Atlantic without the participation of air-sea processes or the meridional overturning circulation. An optimal deep initial salinity perturbation of 0.1 ppt located near the western boundary can result in a tropical SST anomaly of approximately 0.458C after nearly four years, assuming the dynamics are linear. Possible mechanisms for exciting such deep perturbations are discussed. While this study is motivated by tropical Atlantic SST variability, its relevance to other basins is not excluded. The optimal initial conditions leading to the tropical SST anomalies\\u0027 growth are obtained by solving a generalized eigenvalue problem. The evaluation of the optimals is achieved by using the Massachusetts Institute of Technology general circulation model (MITgcm) tangent linear and adjoint models as well the the Arnoldi Package (ARPACK) software for solving large-scale eigenvalue problems. © 2010 American Meteorological Society.\"],\"language\":\"eng\",\"subjects\":[\"Boundary currents\",\"Dynamics\",\"Interannual variability\",\"Kelvin waves\",\"Sea surface temperature\"],\"creators\":[\"Zanna, L.\",\"Heimbach, P.\",\"Moore, Am\",\"Tziperman, E.\"],\"publicationdate\":\"2010-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1175/2009JPO4196.1\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hdl.handle.net/1721.1/63137\",\"license\":\"OPEN\",\"hostedby\":\"DSpace@MIT\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1721.1/63137\",\"license\":\"OPEN\",\"hostedby\":\"DSpace@MIT\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DSpace@MIT\",\"url\":\"http://hdl.handle.net/1721.1/63137\",\"id\":\"oai:dspace.mit.edu:1721.1/63137\"},\"trust\":0.3571546}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zanna, L.","Heimbach, P.","Moore, Am","Tziperman, E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.mit.edu:1721.1/63137"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2a38a4a9316c49e5a833517c45d31070"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Boundary currents","Dynamics","Interannual variability","Kelvin waves","Sea surface temperature"]},"trust":{"type":"FLOAT","value":0.3571546},"target_publication_title":{"type":"STRING","value":"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies"},"provenance_datasource_name":{"type":"STRING","value":"DSpace@MIT"},"target_dateofacceptance":{"type":"DATE","value":"2010-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:dash.harvard.edu:1/11892629\",\"titles\":[\"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies\"],\"abstracts\":[\"The role of ocean dynamics in optimally exciting interannual variability of tropical sea surface temperature (SST) anomalies is investigated using an idealized-geometry ocean general circulation model. Initial temperature and salinity perturbations leading to an optimal growth of tropical SST anomalies, typically arising from the nonnormal dynamics, are evaluated. The structure of the optimal perturbations is characterized by relatively strong deep salinity anomalies near the western boundary generating a transient amplification of equatorial SST anomalies in less than four years. \\nThe associated growth mechanism is linked to the excitation of coastal and equatorial Kelvin waves near the western boundary following a rapid geostrophic adjustment owing to the optimal initial temperature and salinity perturbations. The results suggest that the nonnormality of the ocean dynamics may efficiently create large tropical SST variability on interannual time scales in the Atlantic without the participation of air–sea processes or the meridional overturning circulation. An optimal deep initial salinity perturbation of 0.1 ppt located near the western boundary can result in a tropical SST anomaly of approximately 0.45°C after nearly four years, assuming the dynamics are linear. Possible mechanisms for exciting such deep perturbations are discussed. While this study is motivated by tropical Atlantic SST variability, its relevance to other basins is not excluded. The optimal initial conditions leading to the tropical SST anomalies’ growth are obtained by solving a generalized eigenvalue problem. The evaluation of the optimals is achieved by using the Massachusetts Institute of Technology general circulation model (MITgcm) tangent linear and adjoint models as well the the Arnoldi Package (ARPACK) software for solving large-scale eigenvalue problems.\",\"Earth and Planetary Sciences\"],\"language\":\"eng\",\"subjects\":[\"dynamics\",\"sea surface temperature\",\"interannual variability\",\"boundary currents\",\"Kelvin waves\"],\"creators\":[\"Zanna, Laure\",\"Heimbach, Patrick\",\"Moore, Andrew M.\",\"Tziperman, Eli\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"American Meteorological Society\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Digital Access to Scholarship at Harvard\"],\"pids\":[{\"value\":\"10.1175/2009jpo4196.1.\",\"type\":\"doi\"},{\"value\":\"10.1175/2009JPO4196.1.\",\"type\":\"doi\"},{\"value\":\"10.1175/2009JPO4196.1\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11892629\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1175/2009JPO4196.1\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\",\"id\":\"oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\"},\"trust\":0.04334992}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_publication_id":{"type":"STRING","value":"oai:dash.harvard.edu:1/11892629"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zanna, Laure","Heimbach, Patrick","Moore, Andrew M.","Tziperman, Eli"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"target_publication_subject_list":{"type":"LIST_STRING","value":["dynamics","sea surface temperature","interannual variability","boundary currents","Kelvin waves"]},"trust":{"type":"FLOAT","value":0.04334992},"target_publication_title":{"type":"STRING","value":"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dash.harvard.edu:1/11892629\",\"titles\":[\"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies\"],\"abstracts\":[\"The role of ocean dynamics in optimally exciting interannual variability of tropical sea surface temperature (SST) anomalies is investigated using an idealized-geometry ocean general circulation model. Initial temperature and salinity perturbations leading to an optimal growth of tropical SST anomalies, typically arising from the nonnormal dynamics, are evaluated. The structure of the optimal perturbations is characterized by relatively strong deep salinity anomalies near the western boundary generating a transient amplification of equatorial SST anomalies in less than four years. \\nThe associated growth mechanism is linked to the excitation of coastal and equatorial Kelvin waves near the western boundary following a rapid geostrophic adjustment owing to the optimal initial temperature and salinity perturbations. The results suggest that the nonnormality of the ocean dynamics may efficiently create large tropical SST variability on interannual time scales in the Atlantic without the participation of air–sea processes or the meridional overturning circulation. An optimal deep initial salinity perturbation of 0.1 ppt located near the western boundary can result in a tropical SST anomaly of approximately 0.45°C after nearly four years, assuming the dynamics are linear. Possible mechanisms for exciting such deep perturbations are discussed. While this study is motivated by tropical Atlantic SST variability, its relevance to other basins is not excluded. The optimal initial conditions leading to the tropical SST anomalies’ growth are obtained by solving a generalized eigenvalue problem. The evaluation of the optimals is achieved by using the Massachusetts Institute of Technology general circulation model (MITgcm) tangent linear and adjoint models as well the the Arnoldi Package (ARPACK) software for solving large-scale eigenvalue problems.\",\"Earth and Planetary Sciences\"],\"language\":\"eng\",\"subjects\":[\"dynamics\",\"sea surface temperature\",\"interannual variability\",\"boundary currents\",\"Kelvin waves\"],\"creators\":[\"Zanna, Laure\",\"Heimbach, Patrick\",\"Moore, Andrew M.\",\"Tziperman, Eli\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"American Meteorological Society\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Digital Access to Scholarship at Harvard\"],\"pids\":[{\"value\":\"10.1175/2009jpo4196.1.\",\"type\":\"doi\"},{\"value\":\"10.1175/2009JPO4196.1.\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11892629\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1721.1/63137\",\"license\":\"OPEN\",\"hostedby\":\"DSpace@MIT\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1721.1/63137\",\"license\":\"OPEN\",\"hostedby\":\"DSpace@MIT\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DSpace@MIT\",\"url\":\"http://hdl.handle.net/1721.1/63137\",\"id\":\"oai:dspace.mit.edu:1721.1/63137\"},\"trust\":0.013177156}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_publication_id":{"type":"STRING","value":"oai:dash.harvard.edu:1/11892629"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zanna, Laure","Heimbach, Patrick","Moore, Andrew M.","Tziperman, Eli"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.mit.edu:1721.1/63137"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2a38a4a9316c49e5a833517c45d31070"},"target_publication_subject_list":{"type":"LIST_STRING","value":["dynamics","sea surface temperature","interannual variability","boundary currents","Kelvin waves"]},"trust":{"type":"FLOAT","value":0.013177156},"target_publication_title":{"type":"STRING","value":"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies"},"provenance_datasource_name":{"type":"STRING","value":"DSpace@MIT"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:dspace.mit.edu:1721.1/63137\",\"titles\":[\"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies\"],\"abstracts\":[\"The role of ocean dynamics in optimally exciting interannual variability of tropical sea surface temperature (SST) anomalies is investigated using an idealized-geometry ocean general circulation model. Initial temperature and salinity perturbations leading to an optimal growth of tropical SST anomalies, typically arising from the nonnormal dynamics, are evaluated. The structure of the optimal perturbations is characterized by relatively strong deep salinity anomalies near the western boundary generating a transient amplification of equatorial SST anomalies in less than four years.\\n\\nThe associated growth mechanism is linked to the excitation of coastal and equatorial Kelvin waves near the western boundary following a rapid geostrophic adjustment owing to the optimal initial temperature and salinity perturbations. The results suggest that the nonnormality of the ocean dynamics may efficiently create large tropical SST variability on interannual time scales in the Atlantic without the participation of air–sea processes or the meridional overturning circulation. An optimal deep initial salinity perturbation of 0.1 ppt located near the western boundary can result in a tropical SST anomaly of approximately 0.45°C after nearly four years, assuming the dynamics are linear. Possible mechanisms for exciting such deep perturbations are discussed. While this study is motivated by tropical Atlantic SST variability, its relevance to other basins is not excluded.\\n\\nThe optimal initial conditions leading to the tropical SST anomalies’ growth are obtained by solving a generalized eigenvalue problem. The evaluation of the optimals is achieved by using the Massachusetts Institute of Technology general circulation model (MITgcm) tangent linear and adjoint models as well the the Arnoldi Package (ARPACK) software for solving large-scale eigenvalue problems.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Zanna, Laure\",\"Heimbach, Patrick\",\"Tziperman, Eli\",\"Moore, Andrew M.\"],\"publicationdate\":\"2009-12-01\",\"publisher\":\"American Meteorological Society\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace@MIT\"],\"pids\":[{\"value\":\"10.1175/2009JPO4196.1\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1721.1/63137\",\"license\":\"OPEN\",\"hostedby\":\"DSpace@MIT\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1175/2009JPO4196.1\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\",\"id\":\"oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\"},\"trust\":0.9568974}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace@MIT"},"target_publication_id":{"type":"STRING","value":"oai:dspace.mit.edu:1721.1/63137"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zanna, Laure","Heimbach, Patrick","Tziperman, Eli","Moore, Andrew M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"trust":{"type":"FLOAT","value":0.9568974},"target_publication_title":{"type":"STRING","value":"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2a38a4a9316c49e5a833517c45d31070"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:dspace.mit.edu:1721.1/63137\",\"titles\":[\"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies\"],\"abstracts\":[\"The role of ocean dynamics in optimally exciting interannual variability of tropical sea surface temperature (SST) anomalies is investigated using an idealized-geometry ocean general circulation model. Initial temperature and salinity perturbations leading to an optimal growth of tropical SST anomalies, typically arising from the nonnormal dynamics, are evaluated. The structure of the optimal perturbations is characterized by relatively strong deep salinity anomalies near the western boundary generating a transient amplification of equatorial SST anomalies in less than four years.\\n\\nThe associated growth mechanism is linked to the excitation of coastal and equatorial Kelvin waves near the western boundary following a rapid geostrophic adjustment owing to the optimal initial temperature and salinity perturbations. The results suggest that the nonnormality of the ocean dynamics may efficiently create large tropical SST variability on interannual time scales in the Atlantic without the participation of air–sea processes or the meridional overturning circulation. An optimal deep initial salinity perturbation of 0.1 ppt located near the western boundary can result in a tropical SST anomaly of approximately 0.45°C after nearly four years, assuming the dynamics are linear. Possible mechanisms for exciting such deep perturbations are discussed. While this study is motivated by tropical Atlantic SST variability, its relevance to other basins is not excluded.\\n\\nThe optimal initial conditions leading to the tropical SST anomalies’ growth are obtained by solving a generalized eigenvalue problem. The evaluation of the optimals is achieved by using the Massachusetts Institute of Technology general circulation model (MITgcm) tangent linear and adjoint models as well the the Arnoldi Package (ARPACK) software for solving large-scale eigenvalue problems.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Zanna, Laure\",\"Heimbach, Patrick\",\"Tziperman, Eli\",\"Moore, Andrew M.\"],\"publicationdate\":\"2009-12-01\",\"publisher\":\"American Meteorological Society\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace@MIT\"],\"pids\":[{\"value\":\"10.1175/2009JPO4196.1\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1721.1/63137\",\"license\":\"OPEN\",\"hostedby\":\"DSpace@MIT\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1175/2009JPO4196.1\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\",\"id\":\"oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979\"},\"trust\":0.9568974}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace@MIT"},"target_publication_id":{"type":"STRING","value":"oai:dspace.mit.edu:1721.1/63137"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zanna, Laure","Heimbach, Patrick","Tziperman, Eli","Moore, Andrew M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:f49afb04-f11f-4e15-80ab-aa74a076f979"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"trust":{"type":"FLOAT","value":0.9568974},"target_publication_title":{"type":"STRING","value":"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2a38a4a9316c49e5a833517c45d31070"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:dspace.mit.edu:1721.1/63137\",\"titles\":[\"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies\"],\"abstracts\":[\"The role of ocean dynamics in optimally exciting interannual variability of tropical sea surface temperature (SST) anomalies is investigated using an idealized-geometry ocean general circulation model. Initial temperature and salinity perturbations leading to an optimal growth of tropical SST anomalies, typically arising from the nonnormal dynamics, are evaluated. The structure of the optimal perturbations is characterized by relatively strong deep salinity anomalies near the western boundary generating a transient amplification of equatorial SST anomalies in less than four years.\\n\\nThe associated growth mechanism is linked to the excitation of coastal and equatorial Kelvin waves near the western boundary following a rapid geostrophic adjustment owing to the optimal initial temperature and salinity perturbations. The results suggest that the nonnormality of the ocean dynamics may efficiently create large tropical SST variability on interannual time scales in the Atlantic without the participation of air–sea processes or the meridional overturning circulation. An optimal deep initial salinity perturbation of 0.1 ppt located near the western boundary can result in a tropical SST anomaly of approximately 0.45°C after nearly four years, assuming the dynamics are linear. Possible mechanisms for exciting such deep perturbations are discussed. While this study is motivated by tropical Atlantic SST variability, its relevance to other basins is not excluded.\\n\\nThe optimal initial conditions leading to the tropical SST anomalies’ growth are obtained by solving a generalized eigenvalue problem. The evaluation of the optimals is achieved by using the Massachusetts Institute of Technology general circulation model (MITgcm) tangent linear and adjoint models as well the the Arnoldi Package (ARPACK) software for solving large-scale eigenvalue problems.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Zanna, Laure\",\"Heimbach, Patrick\",\"Tziperman, Eli\",\"Moore, Andrew M.\"],\"publicationdate\":\"2009-12-01\",\"publisher\":\"American Meteorological Society\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace@MIT\"],\"pids\":[{\"value\":\"10.1175/2009jpo4196.1.\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1721.1/63137\",\"license\":\"OPEN\",\"hostedby\":\"DSpace@MIT\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1175/2009jpo4196.1.\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Digital Access to Scholarship at Harvard\",\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11892629\",\"id\":\"oai:dash.harvard.edu:1/11892629\"},\"trust\":0.70375985}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace@MIT"},"target_publication_id":{"type":"STRING","value":"oai:dspace.mit.edu:1721.1/63137"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zanna, Laure","Heimbach, Patrick","Tziperman, Eli","Moore, Andrew M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dash.harvard.edu:1/11892629"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"},"trust":{"type":"FLOAT","value":0.70375985},"target_publication_title":{"type":"STRING","value":"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies"},"provenance_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_dateofacceptance":{"type":"DATE","value":"2009-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2a38a4a9316c49e5a833517c45d31070"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:dspace.mit.edu:1721.1/63137\",\"titles\":[\"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies\"],\"abstracts\":[\"The role of ocean dynamics in optimally exciting interannual variability of tropical sea surface temperature (SST) anomalies is investigated using an idealized-geometry ocean general circulation model. Initial temperature and salinity perturbations leading to an optimal growth of tropical SST anomalies, typically arising from the nonnormal dynamics, are evaluated. The structure of the optimal perturbations is characterized by relatively strong deep salinity anomalies near the western boundary generating a transient amplification of equatorial SST anomalies in less than four years.\\n\\nThe associated growth mechanism is linked to the excitation of coastal and equatorial Kelvin waves near the western boundary following a rapid geostrophic adjustment owing to the optimal initial temperature and salinity perturbations. The results suggest that the nonnormality of the ocean dynamics may efficiently create large tropical SST variability on interannual time scales in the Atlantic without the participation of air–sea processes or the meridional overturning circulation. An optimal deep initial salinity perturbation of 0.1 ppt located near the western boundary can result in a tropical SST anomaly of approximately 0.45°C after nearly four years, assuming the dynamics are linear. Possible mechanisms for exciting such deep perturbations are discussed. While this study is motivated by tropical Atlantic SST variability, its relevance to other basins is not excluded.\\n\\nThe optimal initial conditions leading to the tropical SST anomalies’ growth are obtained by solving a generalized eigenvalue problem. The evaluation of the optimals is achieved by using the Massachusetts Institute of Technology general circulation model (MITgcm) tangent linear and adjoint models as well the the Arnoldi Package (ARPACK) software for solving large-scale eigenvalue problems.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Zanna, Laure\",\"Heimbach, Patrick\",\"Tziperman, Eli\",\"Moore, Andrew M.\"],\"publicationdate\":\"2009-12-01\",\"publisher\":\"American Meteorological Society\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace@MIT\"],\"pids\":[{\"value\":\"10.1175/2009JPO4196.1.\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1721.1/63137\",\"license\":\"OPEN\",\"hostedby\":\"DSpace@MIT\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1175/2009JPO4196.1.\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Digital Access to Scholarship at Harvard\",\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11892629\",\"id\":\"oai:dash.harvard.edu:1/11892629\"},\"trust\":0.70375985}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace@MIT"},"target_publication_id":{"type":"STRING","value":"oai:dspace.mit.edu:1721.1/63137"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zanna, Laure","Heimbach, Patrick","Tziperman, Eli","Moore, Andrew M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dash.harvard.edu:1/11892629"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"},"trust":{"type":"FLOAT","value":0.70375985},"target_publication_title":{"type":"STRING","value":"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies"},"provenance_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_dateofacceptance":{"type":"DATE","value":"2009-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2a38a4a9316c49e5a833517c45d31070"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:dspace.mit.edu:1721.1/63137\",\"titles\":[\"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies\"],\"abstracts\":[\"The role of ocean dynamics in optimally exciting interannual variability of tropical sea surface temperature (SST) anomalies is investigated using an idealized-geometry ocean general circulation model. Initial temperature and salinity perturbations leading to an optimal growth of tropical SST anomalies, typically arising from the nonnormal dynamics, are evaluated. The structure of the optimal perturbations is characterized by relatively strong deep salinity anomalies near the western boundary generating a transient amplification of equatorial SST anomalies in less than four years.\\n\\nThe associated growth mechanism is linked to the excitation of coastal and equatorial Kelvin waves near the western boundary following a rapid geostrophic adjustment owing to the optimal initial temperature and salinity perturbations. The results suggest that the nonnormality of the ocean dynamics may efficiently create large tropical SST variability on interannual time scales in the Atlantic without the participation of air–sea processes or the meridional overturning circulation. An optimal deep initial salinity perturbation of 0.1 ppt located near the western boundary can result in a tropical SST anomaly of approximately 0.45°C after nearly four years, assuming the dynamics are linear. Possible mechanisms for exciting such deep perturbations are discussed. While this study is motivated by tropical Atlantic SST variability, its relevance to other basins is not excluded.\\n\\nThe optimal initial conditions leading to the tropical SST anomalies’ growth are obtained by solving a generalized eigenvalue problem. The evaluation of the optimals is achieved by using the Massachusetts Institute of Technology general circulation model (MITgcm) tangent linear and adjoint models as well the the Arnoldi Package (ARPACK) software for solving large-scale eigenvalue problems.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Zanna, Laure\",\"Heimbach, Patrick\",\"Tziperman, Eli\",\"Moore, Andrew M.\"],\"publicationdate\":\"2009-12-01\",\"publisher\":\"American Meteorological Society\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace@MIT\"],\"pids\":[{\"value\":\"10.1175/2009jpo4196.1.\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1721.1/63137\",\"license\":\"OPEN\",\"hostedby\":\"DSpace@MIT\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1175/2009jpo4196.1.\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Digital Access to Scholarship at Harvard\",\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11892629\",\"id\":\"oai:dash.harvard.edu:1/11892629\"},\"trust\":0.70375985}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace@MIT"},"target_publication_id":{"type":"STRING","value":"oai:dspace.mit.edu:1721.1/63137"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zanna, Laure","Heimbach, Patrick","Tziperman, Eli","Moore, Andrew M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dash.harvard.edu:1/11892629"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"},"trust":{"type":"FLOAT","value":0.70375985},"target_publication_title":{"type":"STRING","value":"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies"},"provenance_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_dateofacceptance":{"type":"DATE","value":"2009-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2a38a4a9316c49e5a833517c45d31070"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:dspace.mit.edu:1721.1/63137\",\"titles\":[\"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies\"],\"abstracts\":[\"The role of ocean dynamics in optimally exciting interannual variability of tropical sea surface temperature (SST) anomalies is investigated using an idealized-geometry ocean general circulation model. Initial temperature and salinity perturbations leading to an optimal growth of tropical SST anomalies, typically arising from the nonnormal dynamics, are evaluated. The structure of the optimal perturbations is characterized by relatively strong deep salinity anomalies near the western boundary generating a transient amplification of equatorial SST anomalies in less than four years.\\n\\nThe associated growth mechanism is linked to the excitation of coastal and equatorial Kelvin waves near the western boundary following a rapid geostrophic adjustment owing to the optimal initial temperature and salinity perturbations. The results suggest that the nonnormality of the ocean dynamics may efficiently create large tropical SST variability on interannual time scales in the Atlantic without the participation of air–sea processes or the meridional overturning circulation. An optimal deep initial salinity perturbation of 0.1 ppt located near the western boundary can result in a tropical SST anomaly of approximately 0.45°C after nearly four years, assuming the dynamics are linear. Possible mechanisms for exciting such deep perturbations are discussed. While this study is motivated by tropical Atlantic SST variability, its relevance to other basins is not excluded.\\n\\nThe optimal initial conditions leading to the tropical SST anomalies’ growth are obtained by solving a generalized eigenvalue problem. The evaluation of the optimals is achieved by using the Massachusetts Institute of Technology general circulation model (MITgcm) tangent linear and adjoint models as well the the Arnoldi Package (ARPACK) software for solving large-scale eigenvalue problems.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Zanna, Laure\",\"Heimbach, Patrick\",\"Tziperman, Eli\",\"Moore, Andrew M.\"],\"publicationdate\":\"2009-12-01\",\"publisher\":\"American Meteorological Society\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace@MIT\"],\"pids\":[{\"value\":\"10.1175/2009JPO4196.1.\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1721.1/63137\",\"license\":\"OPEN\",\"hostedby\":\"DSpace@MIT\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1175/2009JPO4196.1.\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Digital Access to Scholarship at Harvard\",\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11892629\",\"id\":\"oai:dash.harvard.edu:1/11892629\"},\"trust\":0.70375985}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace@MIT"},"target_publication_id":{"type":"STRING","value":"oai:dspace.mit.edu:1721.1/63137"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zanna, Laure","Heimbach, Patrick","Tziperman, Eli","Moore, Andrew M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dash.harvard.edu:1/11892629"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"},"trust":{"type":"FLOAT","value":0.70375985},"target_publication_title":{"type":"STRING","value":"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies"},"provenance_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_dateofacceptance":{"type":"DATE","value":"2009-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2a38a4a9316c49e5a833517c45d31070"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace.mit.edu:1721.1/63137\",\"titles\":[\"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies\"],\"abstracts\":[\"The role of ocean dynamics in optimally exciting interannual variability of tropical sea surface temperature (SST) anomalies is investigated using an idealized-geometry ocean general circulation model. Initial temperature and salinity perturbations leading to an optimal growth of tropical SST anomalies, typically arising from the nonnormal dynamics, are evaluated. The structure of the optimal perturbations is characterized by relatively strong deep salinity anomalies near the western boundary generating a transient amplification of equatorial SST anomalies in less than four years.\\n\\nThe associated growth mechanism is linked to the excitation of coastal and equatorial Kelvin waves near the western boundary following a rapid geostrophic adjustment owing to the optimal initial temperature and salinity perturbations. The results suggest that the nonnormality of the ocean dynamics may efficiently create large tropical SST variability on interannual time scales in the Atlantic without the participation of air–sea processes or the meridional overturning circulation. An optimal deep initial salinity perturbation of 0.1 ppt located near the western boundary can result in a tropical SST anomaly of approximately 0.45°C after nearly four years, assuming the dynamics are linear. Possible mechanisms for exciting such deep perturbations are discussed. While this study is motivated by tropical Atlantic SST variability, its relevance to other basins is not excluded.\\n\\nThe optimal initial conditions leading to the tropical SST anomalies’ growth are obtained by solving a generalized eigenvalue problem. The evaluation of the optimals is achieved by using the Massachusetts Institute of Technology general circulation model (MITgcm) tangent linear and adjoint models as well the the Arnoldi Package (ARPACK) software for solving large-scale eigenvalue problems.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Zanna, Laure\",\"Heimbach, Patrick\",\"Tziperman, Eli\",\"Moore, Andrew M.\"],\"publicationdate\":\"2009-12-01\",\"publisher\":\"American Meteorological Society\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace@MIT\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/1721.1/63137\",\"license\":\"OPEN\",\"hostedby\":\"DSpace@MIT\",\"instancetype\":\"Article\"},{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11892629\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11892629\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Digital Access to Scholarship at Harvard\",\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:11892629\",\"id\":\"oai:dash.harvard.edu:1/11892629\"},\"trust\":0.9836077}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace@MIT"},"target_publication_id":{"type":"STRING","value":"oai:dspace.mit.edu:1721.1/63137"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zanna, Laure","Heimbach, Patrick","Tziperman, Eli","Moore, Andrew M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dash.harvard.edu:1/11892629"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"},"trust":{"type":"FLOAT","value":0.9836077},"target_publication_title":{"type":"STRING","value":"The Role of Ocean Dynamics in the Optimal Growth of Tropical SST Anomalies"},"provenance_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_dateofacceptance":{"type":"DATE","value":"2009-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2a38a4a9316c49e5a833517c45d31070"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/460285\",\"titles\":[\"Het gebruik van onzekerheidsanalyse bij modelberekeningen : een toepassing op het regionale bodemverzuringsmodel RESAM\"],\"abstracts\":[],\"language\":\"dut/nld\",\"subjects\":[\"bodem ph\",\"soil ph\",\"bodemaciditeit\",\"soil acidity\",\"bodemoplossing\",\"soil solution\",\"fysicochemische eigenschappen\",\"physicochemical properties\",\"bodemeigenschappen\",\"soil properties\",\"bodemchemie\",\"soil chemistry\",\"neerslag\",\"precipitation\",\"chemische eigenschappen\",\"chemical properties\",\"zuurgraad\",\"acidity\",\"zure regen\",\"acid rain\",\"nederland\",\"netherlands\",\"Soil Pollution\",\"Bodemverontreiniging\"],\"creators\":[\"Kros, J.\",\"Janssen, P. H. M.\",\"Vries, W.\"],\"publicationdate\":\"1990-01-01\",\"publisher\":\"Staring Centrum\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/306630\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"External research report\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/460285\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/460285\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/460285\",\"id\":\"wur:oai:library.wur.nl:wurpubs/460285\"},\"trust\":0.55420935}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/460285"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kros, J.","Janssen, P. H. M.","Vries, W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/460285"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["bodem ph","soil ph","bodemaciditeit","soil acidity","bodemoplossing","soil solution","fysicochemische eigenschappen","physicochemical properties","bodemeigenschappen","soil properties","bodemchemie","soil chemistry","neerslag","precipitation","chemische eigenschappen","chemical properties","zuurgraad","acidity","zure regen","acid rain","nederland","netherlands","Soil Pollution","Bodemverontreiniging"]},"trust":{"type":"FLOAT","value":0.55420935},"target_publication_title":{"type":"STRING","value":"Het gebruik van onzekerheidsanalyse bij modelberekeningen : een toepassing op het regionale bodemverzuringsmodel RESAM"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1990-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:873281\",\"titles\":[\"Longitudinal analysis of growth and puberty in 21-hydroxylase deficiency patients\"],\"abstracts\":[\"Aims: To evaluate growth from diagnosis until final height (FH) in 21-hydroxylase deficiency patients. \"],\"language\":\"eng\",\"subjects\":[\"Original Article\"],\"creators\":[\"Kamp, H. J.\",\"Otten, B.\",\"Buitenweg, N.\",\"Muinck, Keizer- S. M. P. F.\",\"Oostdijk, W.\",\"Jansen, M.\",\"Delemarre-De, W.\",\"Vulsma, T.\",\"Wit, J.\"],\"publicationdate\":\"2002-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC1719187\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC1719187\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dspace.library.uu.nl/handle/1874/13676\",\"license\":\"OPEN\",\"hostedby\":\"Utrecht University Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dspace.library.uu.nl/handle/1874/13676\",\"license\":\"OPEN\",\"hostedby\":\"Utrecht University Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://dspace.library.uu.nl/handle/1874/13676\",\"id\":\"uu:oai:dspace.library.uu.nl:1874/13676\"},\"trust\":0.9824331}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:873281"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kamp, H. J.","Otten, B.","Buitenweg, N.","Muinck, Keizer- S. M. P. F.","Oostdijk, W.","Jansen, M.","Delemarre-De, W.","Vulsma, T.","Wit, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uu:oai:dspace.library.uu.nl:1874/13676"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Article"]},"trust":{"type":"FLOAT","value":0.9824331},"target_publication_title":{"type":"STRING","value":"Longitudinal analysis of growth and puberty in 21-hydroxylase deficiency patients"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2002-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00208850\",\"titles\":[\"Analysis of some physical properties of cerium compounds in the Anderson model\"],\"abstracts\":[\"Using the theory of Lacroix-Lyon-Caen et al., who have calculated the magnetic susceptibility of a cerium Kondo system in the Anderson model, including the crystal field effects, we have determined the value of the exchange parameter Γn(EF) and the Kondo temperature TK of some cerium compounds from susceptibility measurements. We observe that | Γ| n(EF) increases when the electronic specific heat coefficient γ decreases and that the product γ.Γn(EF) varies only slightly. The analysis of the resistivity curves of these compounds (in particular, we have measured the electrical resistivity of CePb3) shows the validity of the calculations performed by Cornut and Coqblin with the Anderson Hamiltonian for T ⪢ TK.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\",\"Anderson model\",\"cerium alloys\",\"electrical conductivity of crystalline metals and alloys\",\"exchange interactions electron\",\"Kondo effect\",\"magnetic susceptibility\"],\"creators\":[\"Lethuillier, P.\",\"Lacroix-Lyon-Caen, C.\"],\"publicationdate\":\"1978-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphys:0197800390100110500\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00208850\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00208850\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00208850\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00208850\",\"id\":\"oai:HAL:jpa-00208850v1\"},\"trust\":0.4223631}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00208850"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lethuillier, P.","Lacroix-Lyon-Caen, C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00208850v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens","Anderson model","cerium alloys","electrical conductivity of crystalline metals and alloys","exchange interactions electron","Kondo effect","magnetic susceptibility"]},"trust":{"type":"FLOAT","value":0.4223631},"target_publication_title":{"type":"STRING","value":"Analysis of some physical properties of cerium compounds in the Anderson model"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1978-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00208850v1\",\"titles\":[\"Analysis of some physical properties of cerium compounds in the Anderson model\"],\"abstracts\":[\"Using the theory of Lacroix-Lyon-Caen et al., who have calculated the magnetic susceptibility of a cerium Kondo system in the Anderson model, including the crystal field effects, we have determined the value of the exchange parameter Γn(EF) and the Kondo temperature TK of some cerium compounds from susceptibility measurements. We observe that | Γ| n(EF) increases when the electronic specific heat coefficient γ decreases and that the product γ.Γn(EF) varies only slightly. The analysis of the resistivity curves of these compounds (in particular, we have measured the electrical resistivity of CePb3) shows the validity of the calculations performed by Cornut and Coqblin with the Anderson Hamiltonian for T ⪢ TK.\"],\"language\":\"eng\",\"subjects\":[\"Anderson model\",\"cerium alloys\",\"electrical conductivity of crystalline metals and alloys\",\"exchange interactions electron\",\"Kondo effect\",\"magnetic susceptibility\",\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Lethuillier, P.\",\"Lacroix-Lyon-Caen, C.\"],\"publicationdate\":\"1978-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphys:0197800390100110500\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00208850\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00208850\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00208850\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00208850\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00208850\"},\"trust\":0.3914659}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00208850v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lethuillier, P.","Lacroix-Lyon-Caen, C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00208850"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Anderson model","cerium alloys","electrical conductivity of crystalline metals and alloys","exchange interactions electron","Kondo effect","magnetic susceptibility","[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.3914659},"target_publication_title":{"type":"STRING","value":"Analysis of some physical properties of cerium compounds in the Anderson model"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1978-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00921232v1\",\"titles\":[\"Magnetic susceptibility of liquid 3He\"],\"abstracts\":[\"International audience\",\"3He is a model of Fermi liquid, isotropic, its Fermi temperature is attainable and the interaction between atoms can be controlled by changing the pressure on the liquid. In this paper we present accurate cw-NMR measurements of the nuclear magnetic susceptibility of liquid 3He as a function of temperature and pressure. The emphasis has been placed in reliable thermometry, 3He pressure measurements directly in the cell to increase the measuring range until solidification, and an accurate characterization of the NMR spectrometer. Our measurements give effective Fermi temperatures substantially lower than former results.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.COND.CM-SCE] Physics/Condensed Matter/Strongly Correlated Electrons\"],\"creators\":[\"Goudon, Valérie\",\"Triqueneaux, Sébastien\",\"Collin, Eddy\",\"Bunkov, Yuriy M.\",\"Godfrin, Henri\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"Institute of Physics: Open Access Journals\",\"embargoenddate\":\"\",\"contributor\":[\"Institut Néel (NEEL) ; Université Joseph Fourier - Grenoble I - Institut National Polytechnique de Grenoble (INPG) - CNRS\",\"Air Liquide Advanced Technologies [Sassenage] ; Air Liquide\",\"UBT ; Institut Néel (NEEL) ; Université Joseph Fourier - Grenoble I - Institut National Polytechnique de Grenoble (INPG) - CNRS - Université Joseph Fourier - Grenoble I - Institut National Polytechnique de Grenoble (INPG) - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00921232\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00921232\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00921232\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00921232\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00921232\"},\"trust\":0.24890125}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00921232v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Goudon, Valérie","Triqueneaux, Sébastien","Collin, Eddy","Bunkov, Yuriy M.","Godfrin, Henri"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00921232"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.COND.CM-SCE] Physics/Condensed Matter/Strongly Correlated Electrons"]},"trust":{"type":"FLOAT","value":0.24890125},"target_publication_title":{"type":"STRING","value":"Magnetic susceptibility of liquid 3He"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00921232\",\"titles\":[\"Magnetic susceptibility of liquid 3He\"],\"abstracts\":[\"3He is a model of Fermi liquid, isotropic, its Fermi temperature is attainable and the interaction between atoms can be controlled by changing the pressure on the liquid. In this paper we present accurate cw-NMR measurements of the nuclear magnetic susceptibility of liquid 3He as a function of temperature and pressure. The emphasis has been placed in reliable thermometry, 3He pressure measurements directly in the cell to increase the measuring range until solidification, and an accurate characterization of the NMR spectrometer. Our measurements give effective Fermi temperatures substantially lower than former results.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:COND:CM_SCE] Physics/Condensed Matter/Strongly Correlated Electrons\",\"[PHYS:COND:CM_SCE] Physique/Matière Condensée/Electrons fortement corrélés\"],\"creators\":[\"Goudon, Valérie\",\"Triqueneaux, Sébastien\",\"Collin, Eddy\",\"Bunkov, Yuriy M.\",\"Godfrin, Henri\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00921232\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00921232\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00921232\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00921232\",\"id\":\"oai:HAL:hal-00921232v1\"},\"trust\":0.020507395}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00921232"},"target_publication_author_list":{"type":"LIST_STRING","value":["Goudon, Valérie","Triqueneaux, Sébastien","Collin, Eddy","Bunkov, Yuriy M.","Godfrin, Henri"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00921232v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:COND:CM_SCE] Physics/Condensed Matter/Strongly Correlated Electrons","[PHYS:COND:CM_SCE] Physique/Matière Condensée/Electrons fortement corrélés"]},"trust":{"type":"FLOAT","value":0.020507395},"target_publication_title":{"type":"STRING","value":"Magnetic susceptibility of liquid 3He"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hdr:hdocpa:hdocpa-2002-10\",\"titles\":[\"Regional Overview of the Impact of Failures of Accountability on Poor People\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"human development, democracy\"],\"creators\":[\"Ahmed Mohiddin\"],\"publicationdate\":\"2002-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdr.undp.org/en/reports/global/hdr2002/papers/Mohiddin_2002.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdrnet.org/478/1/Mohiddin_2002.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Human Development Resource Network (HDRNet)\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdrnet.org/478/1/Mohiddin_2002.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Human Development Resource Network (HDRNet)\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Human Development Resource Network (HDRNet)\",\"url\":\"http://hdrnet.org/478/1/Mohiddin_2002.pdf\",\"id\":\"oai:hdrnet.org:478\"},\"trust\":0.22822738}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hdr:hdocpa:hdocpa-2002-10"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ahmed Mohiddin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hdrnet.org:478"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::7b5bba8e856860f1ae4aeb39d431dc0d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["human development, democracy"]},"trust":{"type":"FLOAT","value":0.22822738},"target_publication_title":{"type":"STRING","value":"Regional Overview of the Impact of Failures of Accountability on Poor People"},"provenance_datasource_name":{"type":"STRING","value":"Human Development Resource Network (HDRNet)"},"target_dateofacceptance":{"type":"DATE","value":"2002-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hdr:hdocpa:hdocpa-2002-10\",\"titles\":[\"Regional Overview of the Impact of Failures of Accountability on Poor People\"],\"abstracts\":[\"This paper provides a regional overview of the impact on poor people and disadvantaged groups of the failures of accountability of institutions of governance, and the different kinds of actions taken and policy actions discussed in order to improve accountability. \"],\"language\":\"und\",\"subjects\":[\"human development, democracy\"],\"creators\":[\"Ahmed Mohiddin\"],\"publicationdate\":\"2002-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdr.undp.org/en/reports/global/hdr2002/papers/Mohiddin_2002.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"This paper provides a regional overview of the impact on poor people and disadvantaged groups of the failures of accountability of institutions of governance, and the different kinds of actions taken and policy actions discussed in order to improve accountability. \"]},\"provenance\":{\"repositoryName\":\"Human Development Resource Network (HDRNet)\",\"url\":\"http://hdrnet.org/478/1/Mohiddin_2002.pdf\",\"id\":\"oai:hdrnet.org:478\"},\"trust\":0.13931954}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hdr:hdocpa:hdocpa-2002-10"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ahmed Mohiddin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hdrnet.org:478"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::7b5bba8e856860f1ae4aeb39d431dc0d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["human development, democracy"]},"trust":{"type":"FLOAT","value":0.13931954},"target_publication_title":{"type":"STRING","value":"Regional Overview of the Impact of Failures of Accountability on Poor People"},"provenance_datasource_name":{"type":"STRING","value":"Human Development Resource Network (HDRNet)"},"target_dateofacceptance":{"type":"DATE","value":"2002-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hdrnet.org:478\",\"titles\":[\"Regional Overview of the Impact of Failures of Accountability on Poor People\"],\"abstracts\":[\"This paper provides a regional overview of the impact on poor people and disadvantaged groups of the failures of accountability of institutions of governance, and the different kinds of actions taken and policy actions discussed in order to improve accountability. \"],\"language\":\"und\",\"subjects\":[\"Conceptual issues\",\"Policies\"],\"creators\":[\"Mohiddin, Ahmed\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"UNDP\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Human Development Resource Network (HDRNet)\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdrnet.org/478/1/Mohiddin_2002.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Human Development Resource Network (HDRNet)\",\"instancetype\":\"Book\"},{\"url\":\"http://hdr.undp.org/en/reports/global/hdr2002/papers/Mohiddin_2002.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdr.undp.org/en/reports/global/hdr2002/papers/Mohiddin_2002.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://hdr.undp.org/en/reports/global/hdr2002/papers/Mohiddin_2002.pdf\",\"id\":\"oai:RePEc:hdr:hdocpa:hdocpa-2002-10\"},\"trust\":0.2963786}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Human Development Resource Network (HDRNet)"},"target_publication_id":{"type":"STRING","value":"oai:hdrnet.org:478"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mohiddin, Ahmed"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hdr:hdocpa:hdocpa-2002-10"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Conceptual issues","Policies"]},"trust":{"type":"FLOAT","value":0.2963786},"target_publication_title":{"type":"STRING","value":"Regional Overview of the Impact of Failures of Accountability on Poor People"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|driver______::7b5bba8e856860f1ae4aeb39d431dc0d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/329545\",\"titles\":[\"Hoog produktieve rassen van Engels raaigras de beste stikstofbenutters\"],\"abstracts\":[\"Stikstofbenutting vormt momenteel nog geen vast onderdeel van het onderzoek, maar met het oog op vermindering van de verliezen is het van belang te weten hoe de stikstofbenutting van de rassen van Engels raaigras zich onderling verhouden.\"],\"language\":\"und\",\"subjects\":[\"Praktijkonderzoek Rundvee, Schapen en Paarden\"],\"creators\":[\"Sikkema, K.\"],\"publicationdate\":\"1994-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/47936\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/329545\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Contribution for newspaper or weekly magazine\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/329545\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Contribution for newspaper or weekly magazine\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/329545\",\"id\":\"wur:oai:library.wur.nl:wurpubs/329545\"},\"trust\":0.47913253}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/329545"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sikkema, K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/329545"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Praktijkonderzoek Rundvee, Schapen en Paarden"]},"trust":{"type":"FLOAT","value":0.47913253},"target_publication_title":{"type":"STRING","value":"Hoog produktieve rassen van Engels raaigras de beste stikstofbenutters"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1994-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/463632\",\"titles\":[\"Histologisch onderzoek naar de samenstelling van honde- en kattevoerconserven\"],\"abstracts\":[\"Door middel van histologisch-microscopisch onderzoek is nagaan of het mogelijk is blikken honde- en kattevoer op samenstelling te controleren. Daarvoor zijn 12 monsters vqn de meest gangbare honde- en kattevoerconserven via histologische technieken en diverse kleuringen onderzocht op samenstellende bestanddelen.\"],\"language\":\"dut/nld\",\"subjects\":[\"honden\",\"dogs\",\"katten\",\"cats\",\"hondenvoer\",\"dog foods\",\"kattenvoer\",\"cat foods\",\"voersamenstelling\",\"feed formulation\",\"histologie\",\"histology\",\"microscopie\",\"microscopy\",\"Feed Composition and Quality\",\"Samenstelling en kwaliteit van diervoeders\",\"Pets and Companion Animals\",\"Gezelschapsdieren\"],\"creators\":[\"Ossenkoppele, J. S.\",\"Vliege, J. J. M.\",\"Jong, W. J. H. J.\",\"Hollman, P.\"],\"publicationdate\":\"1982-01-01\",\"publisher\":\"RIKILT\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/249860\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"External research report\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/463632\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/463632\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/463632\",\"id\":\"wur:oai:library.wur.nl:wurpubs/463632\"},\"trust\":0.82213396}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/463632"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ossenkoppele, J. S.","Vliege, J. J. M.","Jong, W. J. H. J.","Hollman, P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/463632"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["honden","dogs","katten","cats","hondenvoer","dog foods","kattenvoer","cat foods","voersamenstelling","feed formulation","histologie","histology","microscopie","microscopy","Feed Composition and Quality","Samenstelling en kwaliteit van diervoeders","Pets and Companion Animals","Gezelschapsdieren"]},"trust":{"type":"FLOAT","value":0.82213396},"target_publication_title":{"type":"STRING","value":"Histologisch onderzoek naar de samenstelling van honde- en kattevoerconserven"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1982-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.tue.nl:771829\",\"titles\":[\"Lévy multiplicative chaos and star scale invariant random structures\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Rhodes, R.\",\"Sohier, J.\",\"Vargas, V.\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repository TU/e\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.tue.nl/771829\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"},{\"url\":\"http://repository.tue.nl/771829\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.tue.nl/771829\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.tue.nl/771829\",\"id\":\"tue:oai:library.tue.nl:771829\"},\"trust\":0.7537272}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repository TU/e"},"target_publication_id":{"type":"STRING","value":"oai:library.tue.nl:771829"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rhodes, R.","Sohier, J.","Vargas, V."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tue:oai:library.tue.nl:771829"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.7537272},"target_publication_title":{"type":"STRING","value":"Lévy multiplicative chaos and star scale invariant random structures"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::99c5e07b4d5de9d18c350cdf64c5aa3d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hmm:journl:v:1:y:2011:i:1:p:61-64\",\"titles\":[\"STUDENT SATISFACTION IN HIGHER EDUCATION AND EMPATHY IN RELATIONSHIP WITH THEM\"],\"abstracts\":[\"The internationalization in university education represents a consequence of globalization. Nowadays, higher education institutions want to become bigger, to develop more and more their research programs, to attract as many well prepared students to cope with increasing competition coming from big universities outside the country. The students possibility to choose a university from a variety of offers determines them to be very critical on the educational and material offer that is presented by the higher education institute. Therefore, during the last years, universities have made substantial efforts in developing an elaborated relational system based on the degree measurement of student satisfaction or dissatisfaction, in order to allow them to make optimal decisions in which to ensure their future success.\"],\"language\":\"und\",\"subjects\":[\"leading students, satisfaction, quality, loyalty, empathy\"],\"creators\":[\"Avram, Emanuela Maria\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Holistic Marketing Management\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://holisticmarketingmanagement.ro/RePEc/hmm/v1i1/1/12.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.rebe.rau.ro/RePEc/rau/homkmg/SP11/homkmg-SP11-A11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.rebe.rau.ro/RePEc/rau/homkmg/SP11/homkmg-SP11-A11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.rebe.rau.ro/RePEc/rau/homkmg/SP11/homkmg-SP11-A11.pdf\",\"id\":\"oai:RePEc:rau:homkmg:v:1:y:2011:i:1:p:74-79\"},\"trust\":0.64328134}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hmm:journl:v:1:y:2011:i:1:p:61-64"},"target_publication_author_list":{"type":"LIST_STRING","value":["Avram, Emanuela Maria"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:rau:homkmg:v:1:y:2011:i:1:p:74-79"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["leading students, satisfaction, quality, loyalty, empathy"]},"trust":{"type":"FLOAT","value":0.64328134},"target_publication_title":{"type":"STRING","value":"STUDENT SATISFACTION IN HIGHER EDUCATION AND EMPATHY IN RELATIONSHIP WITH THEM"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:rau:homkmg:v:1:y:2011:i:1:p:74-79\",\"titles\":[\"STUDENT SATISFACTION IN HIGHER EDUCATION AND EMPATHY IN RELATIONSHIP WITH THEM\"],\"abstracts\":[\"The internationalization in university education represents a consequence of globalization. Nowadays, higher education institutions want to become bigger, to develop more and more their research programs, to attract as many well prepared students to cope with increasing competition coming from big universities outside the country. The students’ possibility to choose a university from a variety of offers determines them to be very critical on the educational and material offer that is presented by the higher education institute. Therefore, during the last years, universities have made substantial efforts in developing an elaborated relational system based on the degree measurement of student satisfaction or dissatisfaction, in order to allow them to make optimal decisions in which to ensure their future success.\"],\"language\":\"und\",\"subjects\":[\"leading students, satisfaction, quality, loyalty, empathy\"],\"creators\":[\"Avram, Emanuela Maria\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Holistic Marketing Management\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.rebe.rau.ro/RePEc/rau/homkmg/SP11/homkmg-SP11-A11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://holisticmarketingmanagement.ro/RePEc/hmm/v1i1/1/12.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://holisticmarketingmanagement.ro/RePEc/hmm/v1i1/1/12.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://holisticmarketingmanagement.ro/RePEc/hmm/v1i1/1/12.pdf\",\"id\":\"oai:RePEc:hmm:journl:v:1:y:2011:i:1:p:61-64\"},\"trust\":0.28924584}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:rau:homkmg:v:1:y:2011:i:1:p:74-79"},"target_publication_author_list":{"type":"LIST_STRING","value":["Avram, Emanuela Maria"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hmm:journl:v:1:y:2011:i:1:p:61-64"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["leading students, satisfaction, quality, loyalty, empathy"]},"trust":{"type":"FLOAT","value":0.28924584},"target_publication_title":{"type":"STRING","value":"STUDENT SATISFACTION IN HIGHER EDUCATION AND EMPATHY IN RELATIONSHIP WITH THEM"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.ubn.ru.nl:2066/24401\",\"titles\":[\"Advanced colorectal cancer refractory to infusional fluorouracil treatment: efficacy of second line fluorouracil in combination with a different biochemical modulation\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Bacterial Infections\",\"Blood Cells\",\"Combined Modality Therapy\",\"Infection\",\"Leukemia\",\"Lymphoma\",\"Magnetic Resonance Imaging\",\"Mycoses\"],\"creators\":[\"Halteren, H. K.\",\"Wagener, D. J. T.\",\"Vreugdenhil, G. R.\",\"Punt, C. J. A.\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Radboud Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2066/24401\",\"license\":\"OPEN\",\"hostedby\":\"Radboud Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://repository.ubn.ru.nl/handle/2066/24401\",\"license\":\"OPEN\",\"hostedby\":\"Radboud Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.ubn.ru.nl/handle/2066/24401\",\"license\":\"OPEN\",\"hostedby\":\"Radboud Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.ubn.ru.nl/handle/2066/24401\",\"id\":\"ru:oai:repository.ubn.ru.nl:2066/24401\"},\"trust\":0.35958695}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Radboud Repository"},"target_publication_id":{"type":"STRING","value":"oai:repository.ubn.ru.nl:2066/24401"},"target_publication_author_list":{"type":"LIST_STRING","value":["Halteren, H. K.","Wagener, D. J. T.","Vreugdenhil, G. R.","Punt, C. J. A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["ru:oai:repository.ubn.ru.nl:2066/24401"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Bacterial Infections","Blood Cells","Combined Modality Therapy","Infection","Leukemia","Lymphoma","Magnetic Resonance Imaging","Mycoses"]},"trust":{"type":"FLOAT","value":0.35958695},"target_publication_title":{"type":"STRING","value":"Advanced colorectal cancer refractory to infusional fluorouracil treatment: efficacy of second line fluorouracil in combination with a different biochemical modulation"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7bccfde7714a1ebadf06c5f4cea752c1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-01032452v1\",\"titles\":[\"Cannabis control in Europe\"],\"abstracts\":[\"The history of cannabis has been the subject of numerous books in recent years (see Fankhauser, this monograph). One of the many historical perspectives that have been explored is cannabis\\u0027s social, political and legislative history. This chapter provides a brief history of controls on cannabis, and analyses a series of recent government enquiries that have informed legislative reform, particularly in Europe. Opinions are divided in this area. Liberalisers and cannabis advocacy groups -- the key Internet publishers of information on the issue -- continue to claim cannabis is a recently controlled substance and \\u0027natural product\\u0027, and have espoused a number of theories to explain its prohibition (1). Yet the historical picture is more complex. Use of cannabis as a psychoactive drug has stirred controversy for centuries. And finding the most appropriate control system has interested professionals, politicians and governments from the beginning. Today, international drugs conventions recommend signatories to designate, under national legislation, the most stringent control over cannabis. However, some countries have used the granted discretion to move away from such recommendations. A cross-reading of governmental enquiries shows that, while cannabis is considered a potentially dangerous substance, its dangers, in comparison with other controlled substances, may have been overstated and alternative forms of sanctions, such as civil sanctions, fines or compulsory health assessments, have been recommended in place of criminal penalties. European countries\\u0027 laws or prosecution policies seem to be broadly in accord with these government enquiries. Nonetheless, more liberal positions have attracted some concerns, expressed in particular at UN level, on the grounds that leniency on cannabis can endanger the overall international effort against drugs. Accordingly, the latest developments in some countries seem to tip the balance back towards a new attention on restrictive measures.\"],\"language\":\"eng\",\"subjects\":[\"[SHS.SOCIO] Humanities and Social Sciences/Sociology\"],\"creators\":[\"Hughes, Brendan\",\"Ballotta, Danilo\",\"Bergeron, Henri\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"EMCDDA\",\"embargoenddate\":\"\",\"contributor\":[\"European Legal Database on Drugs (ELDD) ; European Monitoring Centre for Drugs and Drug Addiction\",\"Centre de sociologie des organisations (CSO) ; Sciences Po - CNRS\",\"Griffiths, Paul\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal-sciencespo.archives-ouvertes.fr/hal-01032452\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/f0uohitsgqh8dhk97j1s6g9g3\",\"license\":\"OPEN\",\"hostedby\":\"SPIRE - Sciences Po Institutional REpository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/f0uohitsgqh8dhk97j1s6g9g3\",\"license\":\"OPEN\",\"hostedby\":\"SPIRE - Sciences Po Institutional REpository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"SPIRE - Sciences Po Institutional REpository\",\"url\":\"http://spire.sciencespo.fr/hdl:/2441/f0uohitsgqh8dhk97j1s6g9g3\",\"id\":\"oai:spire.sciencespo.fr:2441/f0uohitsgqh8dhk97j1s6g9g3\"},\"trust\":0.43202734}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-01032452v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hughes, Brendan","Ballotta, Danilo","Bergeron, Henri"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:spire.sciencespo.fr:2441/f0uohitsgqh8dhk97j1s6g9g3"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS.SOCIO] Humanities and Social Sciences/Sociology"]},"trust":{"type":"FLOAT","value":0.43202734},"target_publication_title":{"type":"STRING","value":"Cannabis control in Europe"},"provenance_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:spire.sciencespo.fr:2441/f0uohitsgqh8dhk97j1s6g9g3\",\"titles\":[\"Cannabis control in Europe\"],\"abstracts\":[\"The history of cannabis has been the subject of numerous books in recent years (see\\nFankhauser, this monograph). One of the many historical perspectives that have been\\nexplored is cannabis’s social, political and legislative history. This chapter provides\\na brief history of controls on cannabis, and analyses a series of recent government\\nenquiries that have informed legislative reform, particularly in Europe.\\nOpinions are divided in this area. Liberalisers and cannabis advocacy groups — the\\nkey Internet publishers of information on the issue — continue to claim cannabis is a\\nrecently controlled substance and ‘natural product’, and have espoused a number of\\ntheories to explain its prohibition (1). Yet the historical picture is more complex. Use\\nof cannabis as a psychoactive drug has stirred controversy for centuries. And finding\\nthe most appropriate control system has interested professionals, politicians and\\ngovernments from the beginning.\\nToday, international drugs conventions recommend signatories to designate, under\\nnational legislation, the most stringent control over cannabis. However, some countries\\nhave used the granted discretion to move away from such recommendations. A cross-reading of governmental enquiries shows that, while cannabis is considered a potentially\\ndangerous substance, its dangers, in comparison with other controlled substances, may\\nhave been overstated and alternative forms of sanctions, such as civil sanctions, fines or\\ncompulsory health assessments, have been recommended in place of criminal penalties.\\nEuropean countries’ laws or prosecution policies seem to be broadly in accord with\\nthese government enquiries. Nonetheless, more liberal positions have attracted some\\nconcerns, expressed in particular at UN level, on the grounds that leniency on cannabis\\ncan endanger the overall international effort against drugs. Accordingly, the latest\\ndevelopments in some countries seem to tip the balance back towards a new attention\\non restrictive measures.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Hughes, Brendan\",\"Ballotta, Danilo\",\"Bergeron, Henri\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"EMCDDA\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"SPIRE - Sciences Po Institutional REpository\"],\"pids\":[],\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/f0uohitsgqh8dhk97j1s6g9g3\",\"license\":\"OPEN\",\"hostedby\":\"SPIRE - Sciences Po Institutional REpository\",\"instancetype\":\"Article\"},{\"url\":\"https://hal-sciencespo.archives-ouvertes.fr/hal-01032452\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal-sciencespo.archives-ouvertes.fr/hal-01032452\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal-sciencespo.archives-ouvertes.fr/hal-01032452\",\"id\":\"oai:HAL:hal-01032452v1\"},\"trust\":0.4290551}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_publication_id":{"type":"STRING","value":"oai:spire.sciencespo.fr:2441/f0uohitsgqh8dhk97j1s6g9g3"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hughes, Brendan","Ballotta, Danilo","Bergeron, Henri"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-01032452v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"trust":{"type":"FLOAT","value":0.4290551},"target_publication_title":{"type":"STRING","value":"Cannabis control in Europe"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.usu.ac.id:123456789/48987\",\"titles\":[\"Penggunaan Jamur Antagonis Trichoderma sp. dan Gliocladium sp. untuk Mengendalikan Penyakit Layu (Fusarium oxysporum) pada Tanaman Bawang Merah (Allium ascalonicum L.)\"],\"abstracts\":[\"The aim of\\nthe research was to know the effectiveness of antagonism fungus of Trichoderma sp.\\nand Gliocladium sp. in controlling wilt in red onion plants. The research was\\nperformed in the green-house at the faculty of Agriculture, USU, from February until\\nMay, 2012. The research used non-factorial RAK (random group design) with eight\\ntreatments: control, 10 grams of F. oxysporum, 12 grams of Trichoderma sp., 18\\ngrams of Trichoderma sp., 24 grams of Trichoderma sp. and 12 grams of\\nGliocladium sp., 18 grams of Gliocladium sp., 24 grams of Gliocladium sp., and three\\nrepetitions.\\nThe results of the research showed that the worst-highest disease was in the\\ncontrol treatment with 10 grams of F. oxysporum (2.60%) and the lowest disease was\\nin the control treatment with 18 grams of Trichoderma sp., 24 grams of Trichoderma\\nsp., 18 grams of Gliocladium sp., and 24 grams of Gliocladium sp. (0.71%). The\\naccident of the highest disease was in the treatment with 10 grams of F. oxysporum\\n(5.01%) and the lowest disease was in control treatment with 18 grams of\\nTrichoderma sp., 24 grams of Trichoderma sp., 18 grams of Gliocladium sp. and 24\\ngrams of Gliocladium sp. (0.71%). The largest number of leaves was found in the\\ntreatment with 24 grams of Trichoderma sp. (36 leaves), and the smallest number of\\nleaves was found in the treatment with 10 grams of F. oxysporum (29 leaves). The\\nhighest plant was in the treatment with 24 grams of Gliocladium sp. (40.20\\ncentimeters) and the lowest plant was in the treatment with 10 grams of F. oxysporum\\n(37.26 centimeters). The largest number of F. oxysporum colonies was in the\\ntreatment with 10 grams of F. oxysporum (8.86%). The highest production was in the\\ntreatment with 24 grams of Trichiderma sp. (2.34 tons/ha) and the lowest production\\nwas in the treatment with 10 grams of F. oxysporum (1.56 tons/ha). The test of\\nantagonism fungus of Trichoderma sp. and Gliocladium sp. on F. oxysporum\\nindicates that the growth of both types of antagonism is faster so that F. oxysporum\\ntends to keep away from antagonism in the medium of the laboratory.\",\"070302034\"],\"language\":\"ind\",\"subjects\":[\"Trichoderma sp.\",\"Gliocladium sp.\",\"Fusarium Oxysporum\",\"Antagonism\"],\"creators\":[\"Ramadhina, Arie\"],\"publicationdate\":\"2015-07-31\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Lisnawita\",\"Lubis, Lahmuddin\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"USU Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/48987\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"},{\"url\":\"http://repository.usu.ac.id/handle/123456789/37935\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/37935\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"USU Repository\",\"url\":\"http://repository.usu.ac.id/handle/123456789/37935\",\"id\":\"oai:repository.usu.ac.id:123456789/37935\"},\"trust\":0.94910693}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"USU Repository"},"target_publication_id":{"type":"STRING","value":"oai:repository.usu.ac.id:123456789/48987"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ramadhina, Arie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repository.usu.ac.id:123456789/37935"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Trichoderma sp.","Gliocladium sp.","Fusarium Oxysporum","Antagonism"]},"trust":{"type":"FLOAT","value":0.94910693},"target_publication_title":{"type":"STRING","value":"Penggunaan Jamur Antagonis Trichoderma sp. dan Gliocladium sp. untuk Mengendalikan Penyakit Layu (Fusarium oxysporum) pada Tanaman Bawang Merah (Allium ascalonicum L.)"},"provenance_datasource_name":{"type":"STRING","value":"USU Repository"},"target_dateofacceptance":{"type":"DATE","value":"2015-07-31"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.usu.ac.id:123456789/37935\",\"titles\":[\"Penggunaan Jamur Antagonis Trichoderma SP. Dan Gliocladium SP. Untuk Mengendalikan Penyakit Layu (Fusarium Oxysporum) Pada Tanaman Bawang Merah (Allium Ascalonicum L.)\"],\"abstracts\":[\"Arie Ramadhina, 2012. The Use of Antagonism Fungus of Trichoderma sp and Gliocladium sp. for Controlling Wilt (Fusarium oxysporum) in Red Onion Plants (Allium ascolanicum). Supervised by Lisnawita and Lahmuddin Lubis. The aim of the research was to know the effectiveness of antagonism fungus of Trichoderma sp. and Gliocladium sp. in controlling wilt in red onion plants. The research was performed in the green-house at the faculty of Agriculture, USU, from February until May, 2012. The research used non-factorial RAK (random group design) with eight treatments: control, 10 grams of F. oxysporum, 12 grams of Trichoderma sp., 18 grams of Trichoderma sp., 24 grams of Trichoderma sp. and 12 grams of Gliocladium sp., 18 grams of Gliocladium sp., 24 grams of Gliocladium sp., and three repetitions.\\nThe results of the research showed that the worst-highest disease was in the control treatment with 10 grams of F. oxysporum (2.60%) and the lowest disease was in the control treatment with 18 grams of Trichoderma sp., 24 grams of Trichoderma sp., 18 grams of Gliocladium sp., and 24 grams of Gliocladium sp. (0.71%). The accident of the highest disease was in the treatment with 10 grams of F. oxysporum (5.01%) and the lowest disease was in control treatment with 18 grams of Trichoderma sp., 24 grams of Trichoderma sp., 18 grams of Gliocladium sp. and 24 grams of Gliocladium sp. (0.71%). The largest number of leaves was found in the treatment with 24 grams of Trichoderma sp. (36 leaves), and the smallest number of leaves was found in the treatment with 10 grams of F. oxysporum (29 leaves). The highest plant was in the treatment with 24 grams of Gliocladium sp. (40.20 centimeters) and the lowest plant was in the treatment with 10 grams of F. oxysporum (37.26 centimeters). The largest number of F. oxysporum colonies was in the treatment with 10 grams of F. oxysporum (8.86%). The highest production was in the treatment with 24 grams of Trichiderma sp. (2.34 tons/ha) and the lowest production was in the treatment with 10 grams of F. oxysporum (1.56 tons/ha). The test of antagonism fungus of Trichoderma sp. and Gliocladium sp. on F. oxysporum indicates that the growth of both types of antagonism is faster so that F. oxysporum tends to keep away from antagonism in the medium of the laboratory.\",\"070302034\"],\"language\":\"ind\",\"subjects\":[\"Trichoderma sp\",\"Gliocladium sp\",\"Fusarium oxysporum\",\"Antagonisme\"],\"creators\":[\"Ramadhina, Arie\"],\"publicationdate\":\"2013-06-04\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Lisnawita\",\"Lubis, Lahmuddin\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"USU Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/37935\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"},{\"url\":\"http://repository.usu.ac.id/handle/123456789/48987\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/48987\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"USU Repository\",\"url\":\"http://repository.usu.ac.id/handle/123456789/48987\",\"id\":\"oai:repository.usu.ac.id:123456789/48987\"},\"trust\":0.62492687}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"USU Repository"},"target_publication_id":{"type":"STRING","value":"oai:repository.usu.ac.id:123456789/37935"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ramadhina, Arie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repository.usu.ac.id:123456789/48987"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Trichoderma sp","Gliocladium sp","Fusarium oxysporum","Antagonisme"]},"trust":{"type":"FLOAT","value":0.62492687},"target_publication_title":{"type":"STRING","value":"Penggunaan Jamur Antagonis Trichoderma SP. Dan Gliocladium SP. Untuk Mengendalikan Penyakit Layu (Fusarium Oxysporum) Pada Tanaman Bawang Merah (Allium Ascalonicum L.)"},"provenance_datasource_name":{"type":"STRING","value":"USU Repository"},"target_dateofacceptance":{"type":"DATE","value":"2013-06-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt\",\"titles\":[\"Patents VS Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one research unit (RU) with an innovative idea bargains to license its nonverifiable interim knowledge exclusively to one of two competing development units (DUs) via one of two alternative modes: an open sale after patenting this knowledge, or a closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU\\u0027s postinvention revenues. Both modes lead to partial leakage of RU\\u0027s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a nonmonotonic relationship between the strength of intellectual property rights and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"eng\",\"subjects\":[\"info:eu-repo/classification/jel/D23\",\"info:eu-repo/classification/jel/O32\",\"info:eu-repo/classification/jel/O34\"],\"creators\":[\"Bhattacharya, Sudipto\",\"Guriev, Sergei\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"MIT Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"SPIRE - Sciences Po Institutional REpository\"],\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"license\":\"OPEN\",\"hostedby\":\"SPIRE - Sciences Po Institutional REpository\",\"instancetype\":\"Article\"},{\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"LSE Research Online\",\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"id\":\"oai:eprints.lse.ac.uk:444\"},\"trust\":0.13523865}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_publication_id":{"type":"STRING","value":"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bhattacharya, Sudipto","Guriev, Sergei"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.lse.ac.uk:444"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7eabe3a1649ffa2b3ff8c02ebfd5659f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["info:eu-repo/classification/jel/D23","info:eu-repo/classification/jel/O32","info:eu-repo/classification/jel/O34"]},"trust":{"type":"FLOAT","value":0.13523865},"target_publication_title":{"type":"STRING","value":"Patents VS Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"LSE Research Online"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt\",\"titles\":[\"Patents VS Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one research unit (RU) with an innovative idea bargains to license its nonverifiable interim knowledge exclusively to one of two competing development units (DUs) via one of two alternative modes: an open sale after patenting this knowledge, or a closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU\\u0027s postinvention revenues. Both modes lead to partial leakage of RU\\u0027s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a nonmonotonic relationship between the strength of intellectual property rights and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"eng\",\"subjects\":[\"info:eu-repo/classification/jel/D23\",\"info:eu-repo/classification/jel/O32\",\"info:eu-repo/classification/jel/O34\"],\"creators\":[\"Bhattacharya, Sudipto\",\"Guriev, Sergei\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"MIT Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"SPIRE - Sciences Po Institutional REpository\"],\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"license\":\"OPEN\",\"hostedby\":\"SPIRE - Sciences Po Institutional REpository\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"id\":\"oai:RePEc:cfr:cefirw:w0064\"},\"trust\":0.62705356}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_publication_id":{"type":"STRING","value":"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bhattacharya, Sudipto","Guriev, Sergei"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cfr:cefirw:w0064"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["info:eu-repo/classification/jel/D23","info:eu-repo/classification/jel/O32","info:eu-repo/classification/jel/O34"]},"trust":{"type":"FLOAT","value":0.62705356},"target_publication_title":{"type":"STRING","value":"Patents VS Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt\",\"titles\":[\"Patents VS Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one research unit (RU) with an innovative idea bargains to license its nonverifiable interim knowledge exclusively to one of two competing development units (DUs) via one of two alternative modes: an open sale after patenting this knowledge, or a closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU\\u0027s postinvention revenues. Both modes lead to partial leakage of RU\\u0027s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a nonmonotonic relationship between the strength of intellectual property rights and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"eng\",\"subjects\":[\"info:eu-repo/classification/jel/D23\",\"info:eu-repo/classification/jel/O32\",\"info:eu-repo/classification/jel/O34\"],\"creators\":[\"Bhattacharya, Sudipto\",\"Guriev, Sergei\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"MIT Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"SPIRE - Sciences Po Institutional REpository\"],\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"license\":\"OPEN\",\"hostedby\":\"SPIRE - Sciences Po Institutional REpository\",\"instancetype\":\"Article\"},{\"url\":\"http://eprints.lse.ac.uk/444/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/444/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://eprints.lse.ac.uk/444/\",\"id\":\"oai:RePEc:ehl:lserod:444\"},\"trust\":0.9217989}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_publication_id":{"type":"STRING","value":"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bhattacharya, Sudipto","Guriev, Sergei"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ehl:lserod:444"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["info:eu-repo/classification/jel/D23","info:eu-repo/classification/jel/O32","info:eu-repo/classification/jel/O34"]},"trust":{"type":"FLOAT","value":0.9217989},"target_publication_title":{"type":"STRING","value":"Patents VS Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt\",\"titles\":[\"Patents VS Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one research unit (RU) with an innovative idea bargains to license its nonverifiable interim knowledge exclusively to one of two competing development units (DUs) via one of two alternative modes: an open sale after patenting this knowledge, or a closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU\\u0027s postinvention revenues. Both modes lead to partial leakage of RU\\u0027s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a nonmonotonic relationship between the strength of intellectual property rights and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"eng\",\"subjects\":[\"info:eu-repo/classification/jel/D23\",\"info:eu-repo/classification/jel/O32\",\"info:eu-repo/classification/jel/O34\"],\"creators\":[\"Bhattacharya, Sudipto\",\"Guriev, Sergei\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"MIT Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"SPIRE - Sciences Po Institutional REpository\"],\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"license\":\"OPEN\",\"hostedby\":\"SPIRE - Sciences Po Institutional REpository\",\"instancetype\":\"Article\"},{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"id\":\"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt\"},\"trust\":0.15575439}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_publication_id":{"type":"STRING","value":"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bhattacharya, Sudipto","Guriev, Sergei"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["info:eu-repo/classification/jel/D23","info:eu-repo/classification/jel/O32","info:eu-repo/classification/jel/O34"]},"trust":{"type":"FLOAT","value":0.15575439},"target_publication_title":{"type":"STRING","value":"Patents VS Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt\",\"titles\":[\"Patents VS Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one research unit (RU) with an innovative idea bargains to license its nonverifiable interim knowledge exclusively to one of two competing development units (DUs) via one of two alternative modes: an open sale after patenting this knowledge, or a closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU\\u0027s postinvention revenues. Both modes lead to partial leakage of RU\\u0027s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a nonmonotonic relationship between the strength of intellectual property rights and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"eng\",\"subjects\":[\"info:eu-repo/classification/jel/D23\",\"info:eu-repo/classification/jel/O32\",\"info:eu-repo/classification/jel/O34\"],\"creators\":[\"Bhattacharya, Sudipto\",\"Guriev, Sergei\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"MIT Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"SPIRE - Sciences Po Institutional REpository\"],\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"license\":\"OPEN\",\"hostedby\":\"SPIRE - Sciences Po Institutional REpository\",\"instancetype\":\"Article\"},{\"url\":\"http://eprints.lse.ac.uk/444/1/bgsep2005.pdf\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/444/1/bgsep2005.pdf\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.lse.ac.uk/444/1/bgsep2005.pdf\",\"id\":\"oai:eprints.lse.ac.uk:444\"},\"trust\":0.19890606}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_publication_id":{"type":"STRING","value":"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bhattacharya, Sudipto","Guriev, Sergei"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.lse.ac.uk:444"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["info:eu-repo/classification/jel/D23","info:eu-repo/classification/jel/O32","info:eu-repo/classification/jel/O34"]},"trust":{"type":"FLOAT","value":0.19890606},"target_publication_title":{"type":"STRING","value":"Patents VS Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.lse.ac.uk:444\",\"titles\":[\"Patents vs trade secrets: knowledge licensing and spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. We find that higher levels of interim knowledge are more likely to be licensed via closed sales. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"eng\",\"subjects\":[\"HG Finance\"],\"creators\":[\"Bhattacharya, Sudipto\",\"Guriev, Sergei\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"Centre for Economic Policy Research\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"LSE Research Online\"],\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"SPIRE - Sciences Po Institutional REpository\",\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"id\":\"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt\"},\"trust\":0.78661877}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"LSE Research Online"},"target_publication_id":{"type":"STRING","value":"oai:eprints.lse.ac.uk:444"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bhattacharya, Sudipto","Guriev, Sergei"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"},"target_publication_subject_list":{"type":"LIST_STRING","value":["HG Finance"]},"trust":{"type":"FLOAT","value":0.78661877},"target_publication_title":{"type":"STRING","value":"Patents vs trade secrets: knowledge licensing and spillover"},"provenance_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7eabe3a1649ffa2b3ff8c02ebfd5659f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.lse.ac.uk:444\",\"titles\":[\"Patents vs trade secrets: knowledge licensing and spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. We find that higher levels of interim knowledge are more likely to be licensed via closed sales. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"eng\",\"subjects\":[\"HG Finance\"],\"creators\":[\"Bhattacharya, Sudipto\",\"Guriev, Sergei\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"Centre for Economic Policy Research\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"LSE Research Online\"],\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"SPIRE - Sciences Po Institutional REpository\",\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"id\":\"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt\"},\"trust\":0.78661877}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"LSE Research Online"},"target_publication_id":{"type":"STRING","value":"oai:eprints.lse.ac.uk:444"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bhattacharya, Sudipto","Guriev, Sergei"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"},"target_publication_subject_list":{"type":"LIST_STRING","value":["HG Finance"]},"trust":{"type":"FLOAT","value":0.78661877},"target_publication_title":{"type":"STRING","value":"Patents vs trade secrets: knowledge licensing and spillover"},"provenance_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7eabe3a1649ffa2b3ff8c02ebfd5659f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:eprints.lse.ac.uk:444\",\"titles\":[\"Patents vs trade secrets: knowledge licensing and spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. We find that higher levels of interim knowledge are more likely to be licensed via closed sales. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"eng\",\"subjects\":[\"HG Finance\"],\"creators\":[\"Bhattacharya, Sudipto\",\"Guriev, Sergei\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"Centre for Economic Policy Research\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"LSE Research Online\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"},{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"license\":\"OPEN\",\"hostedby\":\"SPIRE - Sciences Po Institutional REpository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"license\":\"OPEN\",\"hostedby\":\"SPIRE - Sciences Po Institutional REpository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"SPIRE - Sciences Po Institutional REpository\",\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"id\":\"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt\"},\"trust\":0.8892793}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"LSE Research Online"},"target_publication_id":{"type":"STRING","value":"oai:eprints.lse.ac.uk:444"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bhattacharya, Sudipto","Guriev, Sergei"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"},"target_publication_subject_list":{"type":"LIST_STRING","value":["HG Finance"]},"trust":{"type":"FLOAT","value":0.8892793},"target_publication_title":{"type":"STRING","value":"Patents vs trade secrets: knowledge licensing and spillover"},"provenance_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7eabe3a1649ffa2b3ff8c02ebfd5659f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:eprints.lse.ac.uk:444\",\"titles\":[\"Patents vs trade secrets: knowledge licensing and spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. We find that higher levels of interim knowledge are more likely to be licensed via closed sales. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"eng\",\"subjects\":[\"HG Finance\"],\"creators\":[\"Bhattacharya, Sudipto\",\"Guriev, Sergei\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"Centre for Economic Policy Research\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"LSE Research Online\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"},{\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"id\":\"oai:RePEc:cfr:cefirw:w0064\"},\"trust\":0.4732232}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"LSE Research Online"},"target_publication_id":{"type":"STRING","value":"oai:eprints.lse.ac.uk:444"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bhattacharya, Sudipto","Guriev, Sergei"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cfr:cefirw:w0064"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["HG Finance"]},"trust":{"type":"FLOAT","value":0.4732232},"target_publication_title":{"type":"STRING","value":"Patents vs trade secrets: knowledge licensing and spillover"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7eabe3a1649ffa2b3ff8c02ebfd5659f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:eprints.lse.ac.uk:444\",\"titles\":[\"Patents vs trade secrets: knowledge licensing and spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. We find that higher levels of interim knowledge are more likely to be licensed via closed sales. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"eng\",\"subjects\":[\"HG Finance\"],\"creators\":[\"Bhattacharya, Sudipto\",\"Guriev, Sergei\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"Centre for Economic Policy Research\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"LSE Research Online\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"},{\"url\":\"http://eprints.lse.ac.uk/444/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/444/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://eprints.lse.ac.uk/444/\",\"id\":\"oai:RePEc:ehl:lserod:444\"},\"trust\":0.6452537}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"LSE Research Online"},"target_publication_id":{"type":"STRING","value":"oai:eprints.lse.ac.uk:444"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bhattacharya, Sudipto","Guriev, Sergei"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ehl:lserod:444"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["HG Finance"]},"trust":{"type":"FLOAT","value":0.6452537},"target_publication_title":{"type":"STRING","value":"Patents vs trade secrets: knowledge licensing and spillover"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7eabe3a1649ffa2b3ff8c02ebfd5659f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:eprints.lse.ac.uk:444\",\"titles\":[\"Patents vs trade secrets: knowledge licensing and spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. We find that higher levels of interim knowledge are more likely to be licensed via closed sales. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"eng\",\"subjects\":[\"HG Finance\"],\"creators\":[\"Bhattacharya, Sudipto\",\"Guriev, Sergei\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"Centre for Economic Policy Research\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"LSE Research Online\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"},{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"id\":\"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt\"},\"trust\":0.801293}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"LSE Research Online"},"target_publication_id":{"type":"STRING","value":"oai:eprints.lse.ac.uk:444"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bhattacharya, Sudipto","Guriev, Sergei"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["HG Finance"]},"trust":{"type":"FLOAT","value":0.801293},"target_publication_title":{"type":"STRING","value":"Patents vs trade secrets: knowledge licensing and spillover"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7eabe3a1649ffa2b3ff8c02ebfd5659f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:eprints.lse.ac.uk:444\",\"titles\":[\"Patents vs trade secrets: knowledge licensing and spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. We find that higher levels of interim knowledge are more likely to be licensed via closed sales. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"eng\",\"subjects\":[\"HG Finance\"],\"creators\":[\"Bhattacharya, Sudipto\",\"Guriev, Sergei\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"Centre for Economic Policy Research\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"LSE Research Online\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"},{\"url\":\"http://eprints.lse.ac.uk/444/1/bgsep2005.pdf\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/444/1/bgsep2005.pdf\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.lse.ac.uk/444/1/bgsep2005.pdf\",\"id\":\"oai:eprints.lse.ac.uk:444\"},\"trust\":0.95198977}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"LSE Research Online"},"target_publication_id":{"type":"STRING","value":"oai:eprints.lse.ac.uk:444"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bhattacharya, Sudipto","Guriev, Sergei"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.lse.ac.uk:444"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["HG Finance"]},"trust":{"type":"FLOAT","value":0.95198977},"target_publication_title":{"type":"STRING","value":"Patents vs trade secrets: knowledge licensing and spillover"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7eabe3a1649ffa2b3ff8c02ebfd5659f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cfr:cefirw:w0064\",\"titles\":[\"Patents vs Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2004-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"SPIRE - Sciences Po Institutional REpository\",\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"id\":\"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt\"},\"trust\":0.87211}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cfr:cefirw:w0064"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"},"trust":{"type":"FLOAT","value":0.87211},"target_publication_title":{"type":"STRING","value":"Patents vs Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_dateofacceptance":{"type":"DATE","value":"2004-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cfr:cefirw:w0064\",\"titles\":[\"Patents vs Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2004-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"SPIRE - Sciences Po Institutional REpository\",\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"id\":\"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt\"},\"trust\":0.87211}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cfr:cefirw:w0064"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"},"trust":{"type":"FLOAT","value":0.87211},"target_publication_title":{"type":"STRING","value":"Patents vs Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_dateofacceptance":{"type":"DATE","value":"2004-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cfr:cefirw:w0064\",\"titles\":[\"Patents vs Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2004-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"license\":\"OPEN\",\"hostedby\":\"SPIRE - Sciences Po Institutional REpository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"license\":\"OPEN\",\"hostedby\":\"SPIRE - Sciences Po Institutional REpository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"SPIRE - Sciences Po Institutional REpository\",\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"id\":\"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt\"},\"trust\":0.6618887}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cfr:cefirw:w0064"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"},"trust":{"type":"FLOAT","value":0.6618887},"target_publication_title":{"type":"STRING","value":"Patents vs Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_dateofacceptance":{"type":"DATE","value":"2004-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cfr:cefirw:w0064\",\"titles\":[\"Patents vs Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2004-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"LSE Research Online\",\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"id\":\"oai:eprints.lse.ac.uk:444\"},\"trust\":0.1873073}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cfr:cefirw:w0064"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.lse.ac.uk:444"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7eabe3a1649ffa2b3ff8c02ebfd5659f"},"trust":{"type":"FLOAT","value":0.1873073},"target_publication_title":{"type":"STRING","value":"Patents vs Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"LSE Research Online"},"target_dateofacceptance":{"type":"DATE","value":"2004-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cfr:cefirw:w0064\",\"titles\":[\"Patents vs Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2004-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://eprints.lse.ac.uk/444/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/444/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://eprints.lse.ac.uk/444/\",\"id\":\"oai:RePEc:ehl:lserod:444\"},\"trust\":0.06074518}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cfr:cefirw:w0064"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ehl:lserod:444"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.06074518},"target_publication_title":{"type":"STRING","value":"Patents vs Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cfr:cefirw:w0064\",\"titles\":[\"Patents vs Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2004-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"id\":\"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt\"},\"trust\":0.9205153}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cfr:cefirw:w0064"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.9205153},"target_publication_title":{"type":"STRING","value":"Patents vs Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cfr:cefirw:w0064\",\"titles\":[\"Patents vs Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2004-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://eprints.lse.ac.uk/444/1/bgsep2005.pdf\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/444/1/bgsep2005.pdf\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.lse.ac.uk/444/1/bgsep2005.pdf\",\"id\":\"oai:eprints.lse.ac.uk:444\"},\"trust\":0.69716984}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cfr:cefirw:w0064"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.lse.ac.uk:444"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"trust":{"type":"FLOAT","value":0.69716984},"target_publication_title":{"type":"STRING","value":"Patents vs Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2004-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ehl:lserod:444\",\"titles\":[\"Patents vs trade secrets: knowledge licensing and spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. We find that higher levels of interim knowledge are more likely to be licensed via closed sales. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[\"JEL classification codes : D23; O32; O34\"],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/444/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"SPIRE - Sciences Po Institutional REpository\",\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"id\":\"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt\"},\"trust\":0.21764731}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ehl:lserod:444"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"},"target_publication_subject_list":{"type":"LIST_STRING","value":["JEL classification codes : D23; O32; O34"]},"trust":{"type":"FLOAT","value":0.21764731},"target_publication_title":{"type":"STRING","value":"Patents vs trade secrets: knowledge licensing and spillover"},"provenance_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ehl:lserod:444\",\"titles\":[\"Patents vs trade secrets: knowledge licensing and spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. We find that higher levels of interim knowledge are more likely to be licensed via closed sales. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[\"JEL classification codes : D23; O32; O34\"],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/444/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"SPIRE - Sciences Po Institutional REpository\",\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"id\":\"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt\"},\"trust\":0.21764731}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ehl:lserod:444"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"},"target_publication_subject_list":{"type":"LIST_STRING","value":["JEL classification codes : D23; O32; O34"]},"trust":{"type":"FLOAT","value":0.21764731},"target_publication_title":{"type":"STRING","value":"Patents vs trade secrets: knowledge licensing and spillover"},"provenance_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ehl:lserod:444\",\"titles\":[\"Patents vs trade secrets: knowledge licensing and spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. We find that higher levels of interim knowledge are more likely to be licensed via closed sales. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[\"JEL classification codes : D23; O32; O34\"],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/444/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"license\":\"OPEN\",\"hostedby\":\"SPIRE - Sciences Po Institutional REpository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"license\":\"OPEN\",\"hostedby\":\"SPIRE - Sciences Po Institutional REpository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"SPIRE - Sciences Po Institutional REpository\",\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"id\":\"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt\"},\"trust\":0.95746183}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ehl:lserod:444"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"},"target_publication_subject_list":{"type":"LIST_STRING","value":["JEL classification codes : D23; O32; O34"]},"trust":{"type":"FLOAT","value":0.95746183},"target_publication_title":{"type":"STRING","value":"Patents vs trade secrets: knowledge licensing and spillover"},"provenance_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ehl:lserod:444\",\"titles\":[\"Patents vs trade secrets: knowledge licensing and spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. We find that higher levels of interim knowledge are more likely to be licensed via closed sales. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[\"JEL classification codes : D23; O32; O34\"],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/444/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"LSE Research Online\",\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"id\":\"oai:eprints.lse.ac.uk:444\"},\"trust\":0.46441358}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ehl:lserod:444"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.lse.ac.uk:444"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7eabe3a1649ffa2b3ff8c02ebfd5659f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["JEL classification codes : D23; O32; O34"]},"trust":{"type":"FLOAT","value":0.46441358},"target_publication_title":{"type":"STRING","value":"Patents vs trade secrets: knowledge licensing and spillover"},"provenance_datasource_name":{"type":"STRING","value":"LSE Research Online"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ehl:lserod:444\",\"titles\":[\"Patents vs trade secrets: knowledge licensing and spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. We find that higher levels of interim knowledge are more likely to be licensed via closed sales. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[\"JEL classification codes : D23; O32; O34\"],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/444/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"id\":\"oai:RePEc:cfr:cefirw:w0064\"},\"trust\":0.8590693}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ehl:lserod:444"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cfr:cefirw:w0064"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["JEL classification codes : D23; O32; O34"]},"trust":{"type":"FLOAT","value":0.8590693},"target_publication_title":{"type":"STRING","value":"Patents vs trade secrets: knowledge licensing and spillover"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ehl:lserod:444\",\"titles\":[\"Patents vs trade secrets: knowledge licensing and spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. We find that higher levels of interim knowledge are more likely to be licensed via closed sales. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[\"JEL classification codes : D23; O32; O34\"],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/444/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"id\":\"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt\"},\"trust\":0.90431553}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ehl:lserod:444"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["JEL classification codes : D23; O32; O34"]},"trust":{"type":"FLOAT","value":0.90431553},"target_publication_title":{"type":"STRING","value":"Patents vs trade secrets: knowledge licensing and spillover"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ehl:lserod:444\",\"titles\":[\"Patents vs trade secrets: knowledge licensing and spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one Research Unit (RU) with an innovative idea bargains to license her nonverifiable interim knowledge exclusively to one of two competing Development Units (DUs) via one of two alternative modes: an Open sale after patenting this knowledge, or a Closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU’s post-invention revenues. Both modes lead to partial leakage of RU’s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. We find that higher levels of interim knowledge are more likely to be licensed via closed sales. If the extent of leakage is lower, more RUs choose open sales, generating a non-monotonic relationship between the strength of Intellectual Property Rights (IPR) and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[\"JEL classification codes : D23; O32; O34\"],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/444/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://eprints.lse.ac.uk/444/1/bgsep2005.pdf\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/444/1/bgsep2005.pdf\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.lse.ac.uk/444/1/bgsep2005.pdf\",\"id\":\"oai:eprints.lse.ac.uk:444\"},\"trust\":0.38052815}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ehl:lserod:444"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.lse.ac.uk:444"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["JEL classification codes : D23; O32; O34"]},"trust":{"type":"FLOAT","value":0.38052815},"target_publication_title":{"type":"STRING","value":"Patents vs trade secrets: knowledge licensing and spillover"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt\",\"titles\":[\"Patents VS Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one research unit (RU) with an innovative idea bargains to license its nonverifiable interim knowledge exclusively to one of two competing development units (DUs) via one of two alternative modes: an open sale after patenting this knowledge, or a closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU\\u0027s postinvention revenues. Both modes lead to partial leakage of RU\\u0027s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a nonmonotonic relationship between the strength of intellectual property rights and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2006-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"SPIRE - Sciences Po Institutional REpository\",\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"id\":\"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt\"},\"trust\":0.4042762}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"},"trust":{"type":"FLOAT","value":0.4042762},"target_publication_title":{"type":"STRING","value":"Patents VS Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_dateofacceptance":{"type":"DATE","value":"2006-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt\",\"titles\":[\"Patents VS Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one research unit (RU) with an innovative idea bargains to license its nonverifiable interim knowledge exclusively to one of two competing development units (DUs) via one of two alternative modes: an open sale after patenting this knowledge, or a closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU\\u0027s postinvention revenues. Both modes lead to partial leakage of RU\\u0027s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a nonmonotonic relationship between the strength of intellectual property rights and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2006-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1162/JEEA.2006.4.6.1112\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"SPIRE - Sciences Po Institutional REpository\",\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"id\":\"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt\"},\"trust\":0.4042762}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"},"trust":{"type":"FLOAT","value":0.4042762},"target_publication_title":{"type":"STRING","value":"Patents VS Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_dateofacceptance":{"type":"DATE","value":"2006-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt\",\"titles\":[\"Patents VS Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one research unit (RU) with an innovative idea bargains to license its nonverifiable interim knowledge exclusively to one of two competing development units (DUs) via one of two alternative modes: an open sale after patenting this knowledge, or a closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU\\u0027s postinvention revenues. Both modes lead to partial leakage of RU\\u0027s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a nonmonotonic relationship between the strength of intellectual property rights and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2006-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"license\":\"OPEN\",\"hostedby\":\"SPIRE - Sciences Po Institutional REpository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"license\":\"OPEN\",\"hostedby\":\"SPIRE - Sciences Po Institutional REpository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"SPIRE - Sciences Po Institutional REpository\",\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt\",\"id\":\"oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt\"},\"trust\":0.49161935}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:spire.sciencespo.fr:2441/3jesolrqda8pl9qj4osla4hevt"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1bd4b29a8e0afccd9923fe29cecb4b29"},"trust":{"type":"FLOAT","value":0.49161935},"target_publication_title":{"type":"STRING","value":"Patents VS Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"SPIRE - Sciences Po Institutional REpository"},"target_dateofacceptance":{"type":"DATE","value":"2006-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt\",\"titles\":[\"Patents VS Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one research unit (RU) with an innovative idea bargains to license its nonverifiable interim knowledge exclusively to one of two competing development units (DUs) via one of two alternative modes: an open sale after patenting this knowledge, or a closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU\\u0027s postinvention revenues. Both modes lead to partial leakage of RU\\u0027s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a nonmonotonic relationship between the strength of intellectual property rights and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2006-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"LSE Research Online\",\"url\":\"http://www.lse.ac.uk/collections/accountingAndFinance/facultyAndStaff/profiles/bhattacharya.htm\",\"id\":\"oai:eprints.lse.ac.uk:444\"},\"trust\":0.36133254}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.lse.ac.uk:444"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7eabe3a1649ffa2b3ff8c02ebfd5659f"},"trust":{"type":"FLOAT","value":0.36133254},"target_publication_title":{"type":"STRING","value":"Patents VS Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"LSE Research Online"},"target_dateofacceptance":{"type":"DATE","value":"2006-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt\",\"titles\":[\"Patents VS Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one research unit (RU) with an innovative idea bargains to license its nonverifiable interim knowledge exclusively to one of two competing development units (DUs) via one of two alternative modes: an open sale after patenting this knowledge, or a closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU\\u0027s postinvention revenues. Both modes lead to partial leakage of RU\\u0027s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a nonmonotonic relationship between the strength of intellectual property rights and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2006-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cefir.ru/papers/WP64BhattachariaGurievMarch2006.pdf\",\"id\":\"oai:RePEc:cfr:cefirw:w0064\"},\"trust\":0.78448945}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cfr:cefirw:w0064"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.78448945},"target_publication_title":{"type":"STRING","value":"Patents VS Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2006-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt\",\"titles\":[\"Patents VS Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one research unit (RU) with an innovative idea bargains to license its nonverifiable interim knowledge exclusively to one of two competing development units (DUs) via one of two alternative modes: an open sale after patenting this knowledge, or a closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU\\u0027s postinvention revenues. Both modes lead to partial leakage of RU\\u0027s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a nonmonotonic relationship between the strength of intellectual property rights and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2006-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://eprints.lse.ac.uk/444/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/444/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://eprints.lse.ac.uk/444/\",\"id\":\"oai:RePEc:ehl:lserod:444\"},\"trust\":0.08559543}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ehl:lserod:444"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.08559543},"target_publication_title":{"type":"STRING","value":"Patents VS Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2006-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt\",\"titles\":[\"Patents VS Trade Secrets: Knowledge Licensing and Spillover\"],\"abstracts\":[\"We develop a model of two-stage cumulative research and development (R\\u0026D), in which one research unit (RU) with an innovative idea bargains to license its nonverifiable interim knowledge exclusively to one of two competing development units (DUs) via one of two alternative modes: an open sale after patenting this knowledge, or a closed sale in which precluding further disclosure to a competing DU requires the RU to hold a stake in the licensed DU\\u0027s postinvention revenues. Both modes lead to partial leakage of RU\\u0027s knowledge from its description, to the licensed DU alone in a closed sale, and to both DUs in an open sale. The open sale is socially optimal; yet the contracting parties choose the closed sale whenever the interim knowledge is more valuable and leakage is sufficiently high. If the extent of leakage is lower, more RUs choose open sales, generating a nonmonotonic relationship between the strength of intellectual property rights and aggregate R\\u0026D expenditures and the overall likelihood of development by either DU.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sudipto Bhattacharya\",\"Sergei Guriev\"],\"publicationdate\":\"2006-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://spire.sciencespo.fr/hdl:/2441/3jesolrqda8pl9qj4osla4hevt/resources/bhattacharya-et-al-2006-journal-of-the-european-economic-association.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://eprints.lse.ac.uk/444/1/bgsep2005.pdf\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/444/1/bgsep2005.pdf\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.lse.ac.uk/444/1/bgsep2005.pdf\",\"id\":\"oai:eprints.lse.ac.uk:444\"},\"trust\":0.54514027}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:spo:wpmain:info:hdl:2441/3jesolrqda8pl9qj4osla4hevt"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sudipto Bhattacharya","Sergei Guriev"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.lse.ac.uk:444"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"trust":{"type":"FLOAT","value":0.54514027},"target_publication_title":{"type":"STRING","value":"Patents VS Trade Secrets: Knowledge Licensing and Spillover"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2006-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace-unipr.cineca.it:1889/1214\",\"titles\":[\"Digital literacies for amateurs and professionals\"],\"abstracts\":[\"Information literacy education can benefit from a balanced view of different literacies and thoroughly scrutinized approaches to their relationship to amateurs and professionals. An analysis and synthesis of an interdisciplinary body of the literature shows that the most prevailing concepts are information literacy, digital literacy and media literacy. An overview of these literacies is provided.\\nThe discussion of literacies is unimaginable without taking the Web 2.0 and of the attention economy into consideration, determined to a high degree by social interaction with the participation of amateurs. There are not equally influential in different information\\ninstitutions. The vast majority of amateurs can make good use of public library services or uses other libraries for non-professional purposes. It is scholars, who continue to require ���traditional��� ���professionally-minded��� services, even though they heavily rely on informal information gathering. They require a different kind of literacy, similar to the traditional conception of information literacy.\"],\"language\":\"und\",\"subjects\":[\"Digital literacy\",\"Web 2.0 users\",\"information literacy\",\"M-STO/08\"],\"creators\":[\"Koltay, Tibor\",\"Tak��cs, Eszter\"],\"publicationdate\":\"2010-01-25\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace a Parma\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/1889/1214\",\"license\":\"OPEN\",\"hostedby\":\"DSpace a Parma\",\"instancetype\":\"Conference object\"},{\"url\":\"http://hdl.handle.net/1889/1214\",\"license\":\"OPEN\",\"hostedby\":\"DSpace a Parma\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1889/1214\",\"license\":\"OPEN\",\"hostedby\":\"DSpace a Parma\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"DSpace a Parma\",\"url\":\"http://hdl.handle.net/1889/1214\",\"id\":\"oai:dspace-unipr.cilea.it:1889/1214\"},\"trust\":0.027592838}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace a Parma"},"target_publication_id":{"type":"STRING","value":"oai:dspace-unipr.cineca.it:1889/1214"},"target_publication_author_list":{"type":"LIST_STRING","value":["Koltay, Tibor","Tak��cs, Eszter"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace-unipr.cilea.it:1889/1214"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::3dd48ab31d016ffcbf3314df2b3cb9ce"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Digital literacy","Web 2.0 users","information literacy","M-STO/08"]},"trust":{"type":"FLOAT","value":0.027592838},"target_publication_title":{"type":"STRING","value":"Digital literacies for amateurs and professionals"},"provenance_datasource_name":{"type":"STRING","value":"DSpace a Parma"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::3dd48ab31d016ffcbf3314df2b3cb9ce"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace-unipr.cilea.it:1889/1214\",\"titles\":[\"Digital literacies for amateurs and professionals\"],\"abstracts\":[\"Information literacy education can benefit from a balanced view of different literacies and thoroughly scrutinized approaches to their relationship to amateurs and professionals. An analysis and synthesis of an interdisciplinary body of the literature shows that the most prevailing concepts are information literacy, digital literacy and media literacy. An overview of these literacies is provided.\\nThe discussion of literacies is unimaginable without taking the Web 2.0 and of the attention economy into consideration, determined to a high degree by social interaction with the participation of amateurs. There are not equally influential in different information\\ninstitutions. The vast majority of amateurs can make good use of public library services or uses other libraries for non-professional purposes. It is scholars, who continue to require “traditional” “professionally-minded” services, even though they heavily rely on informal information gathering. They require a different kind of literacy, similar to the traditional conception of information literacy.\"],\"language\":\"und\",\"subjects\":[\"Digital literacy\",\"Web 2.0 users\",\"information literacy\",\"M-STO/08\"],\"creators\":[\"Koltay, Tibor\",\"Takács, Eszter\"],\"publicationdate\":\"2010-01-25\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace a Parma\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/1889/1214\",\"license\":\"OPEN\",\"hostedby\":\"DSpace a Parma\",\"instancetype\":\"Conference object\"},{\"url\":\"http://hdl.handle.net/1889/1214\",\"license\":\"OPEN\",\"hostedby\":\"DSpace a Parma\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1889/1214\",\"license\":\"OPEN\",\"hostedby\":\"DSpace a Parma\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"DSpace a Parma\",\"url\":\"http://hdl.handle.net/1889/1214\",\"id\":\"oai:dspace-unipr.cineca.it:1889/1214\"},\"trust\":0.9081235}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace a Parma"},"target_publication_id":{"type":"STRING","value":"oai:dspace-unipr.cilea.it:1889/1214"},"target_publication_author_list":{"type":"LIST_STRING","value":["Koltay, Tibor","Takács, Eszter"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace-unipr.cineca.it:1889/1214"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::3dd48ab31d016ffcbf3314df2b3cb9ce"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Digital literacy","Web 2.0 users","information literacy","M-STO/08"]},"trust":{"type":"FLOAT","value":0.9081235},"target_publication_title":{"type":"STRING","value":"Digital literacies for amateurs and professionals"},"provenance_datasource_name":{"type":"STRING","value":"DSpace a Parma"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::3dd48ab31d016ffcbf3314df2b3cb9ce"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.tara.tcd.ie:2262/49929\",\"titles\":[\"Dystrophin, its Interactions with other Proteins, and Implications for Muscular Dystrophy\"],\"abstracts\":[\"Dystrophin, its Interactions with other Proteins, and Implications for Muscular Dystrophy\"],\"language\":\"eng\",\"subjects\":[\"Life Sciences\"],\"creators\":[],\"publicationdate\":\"2007-01-23\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Trinity\\u0027s Access to Research Archive\"],\"pids\":[{\"value\":\"10.1016/j.bbadis.2006.05.010\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/2262/49929\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00562718\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00562718\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00562718\",\"id\":\"oai:HAL:hal-00562718v1\"},\"trust\":0.1992411}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:www.tara.tcd.ie:2262/49929"},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00562718v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Life Sciences"]},"trust":{"type":"FLOAT","value":0.1992411},"target_publication_title":{"type":"STRING","value":"Dystrophin, its Interactions with other Proteins, and Implications for Muscular Dystrophy"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-23"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00562718v1\",\"titles\":[\"Dystrophin, its Interactions with other Proteins, and Implications for Muscular Dystrophy\"],\"abstracts\":[\"International audience\"],\"language\":\"eng\",\"subjects\":[\"Life Sciences\"],\"creators\":[\"Ervasti, James M.\"],\"publicationdate\":\"2007-01-23\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Department of Physiology ; 1300 University Avenue\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1016/j.bbadis.2006.05.010\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00562718\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hdl.handle.net/2262/49929\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2262/49929\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"}]},\"provenance\":{\"repositoryName\":\"Trinity\\u0027s Access to Research Archive\",\"url\":\"http://hdl.handle.net/2262/49929\",\"id\":\"oai:www.tara.tcd.ie:2262/49929\"},\"trust\":0.5537012}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00562718v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ervasti, James M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.tara.tcd.ie:2262/49929"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Life Sciences"]},"trust":{"type":"FLOAT","value":0.5537012},"target_publication_title":{"type":"STRING","value":"Dystrophin, its Interactions with other Proteins, and Implications for Muscular Dystrophy"},"provenance_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-23"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00906412\",\"titles\":[\"3D-PSTD simulation and polarization analysis of a light pulse transmitted through a scattering medium\"],\"abstracts\":[\"A tridimensional pseudo-spectral time domain (3D-PSTD) algorithm, that solves the full-wave Maxwell\\u0027s equations by using Fourier transforms to calculate the spatial derivatives, has been applied to determine the time characteristics of the propagation of electromagnetic waves in inhomogeneous media. Since the 3D simulation gives access to the fullvector components of the electromagnetic fields, it allowed us to analyse the polarization state of the scattered light with respect to the characteristics of the scattering medium and the polarization state of the incident light. We show that, while the incident light is strongly depolarized on the whole, the light that reaches the output face of the scattering medium is much less depolarized. This fact is consistent with our recently reported experimental results, where a rotation of the polarization does not preclude the restoration of an image by phase conjugation.\"],\"language\":\"eng\",\"subjects\":[\"[SPI:OPTI] Engineering Sciences/Optics / Photonic\",\"[SPI:OPTI] Sciences de l\\u0027ingénieur/Optique / photonique\",\"[PHYS:PHYS:PHYS_OPTICS] Physics/Physics/Optics\",\"[PHYS:PHYS:PHYS_OPTICS] Physique/Physique/Optique\"],\"creators\":[\"Devaux, Fabrice\",\"Lantz, Éric\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1364/OE.21.024969\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00906412\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00906412\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00906412\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00906412\",\"id\":\"oai:HAL:hal-00906412v1\"},\"trust\":0.024220705}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00906412"},"target_publication_author_list":{"type":"LIST_STRING","value":["Devaux, Fabrice","Lantz, Éric"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00906412v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SPI:OPTI] Engineering Sciences/Optics / Photonic","[SPI:OPTI] Sciences de l\u0027ingénieur/Optique / photonique","[PHYS:PHYS:PHYS_OPTICS] Physics/Physics/Optics","[PHYS:PHYS:PHYS_OPTICS] Physique/Physique/Optique"]},"trust":{"type":"FLOAT","value":0.024220705},"target_publication_title":{"type":"STRING","value":"3D-PSTD simulation and polarization analysis of a light pulse transmitted through a scattering medium"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00906412v1\",\"titles\":[\"3D-PSTD simulation and polarization analysis of a light pulse transmitted through a scattering medium\"],\"abstracts\":[\"International audience\",\"A tridimensional pseudo-spectral time domain (3D-PSTD) algorithm, that solves the full-wave Maxwell\\u0027s equations by using Fourier transforms to calculate the spatial derivatives, has been applied to determine the time characteristics of the propagation of electromagnetic waves in inhomogeneous media. Since the 3D simulation gives access to the fullvector components of the electromagnetic fields, it allowed us to analyse the polarization state of the scattered light with respect to the characteristics of the scattering medium and the polarization state of the incident light. We show that, while the incident light is strongly depolarized on the whole, the light that reaches the output face of the scattering medium is much less depolarized. This fact is consistent with our recently reported experimental results, where a rotation of the polarization does not preclude the restoration of an image by phase conjugation.\"],\"language\":\"eng\",\"subjects\":[\"[SPI.OPTI] Engineering Sciences/Optics / Photonic\",\"[PHYS.PHYS.PHYS-OPTICS] Physics/Physics/Optics\"],\"creators\":[\"Devaux, Fabrice\",\"Lantz, Éric\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"Optical Society of America\",\"embargoenddate\":\"\",\"contributor\":[\"Franche-Comté Électronique Mécanique, Thermique et Optique - Sciences et Technologies (FEMTO-ST) ; Université de Franche-Comté - Université de Technologie de Belfort-Montbeliard - Ecole Nationale Supérieure de Mécanique et des Microtechniques - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1364/OE.21.024969\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00906412\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00906412\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00906412\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00906412\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00906412\"},\"trust\":0.6298657}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00906412v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Devaux, Fabrice","Lantz, Éric"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00906412"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SPI.OPTI] Engineering Sciences/Optics / Photonic","[PHYS.PHYS.PHYS-OPTICS] Physics/Physics/Optics"]},"trust":{"type":"FLOAT","value":0.6298657},"target_publication_title":{"type":"STRING","value":"3D-PSTD simulation and polarization analysis of a light pulse transmitted through a scattering medium"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3405642\",\"titles\":[\"Locking plate versus retrograde intramedullary nail fixation for tibiotalocalcaneal arthrodesis: A retrospective analysis\"],\"abstracts\":[\"Background: Tibiotalocalcaneal arthrodesis (TTCA) surgery is indicated for the end-stage disease of the tibiotalar and subtalar joints. Although different fixation technique of TTCA has been proposed to achieve high fusion rate and low complication rate, there is still no consensus upon this point. The purpose of this study is to compare the clinical efficacy of retrograde intramedullary nail fixation (RINF) and locking plate fixation (LPF) for TTCA. Materials and Methods: Fifty four patients who underwent TTCA through the lateral approach with lateral fibular osteotomy using RINF (32 patients, 18 male/14 female, mean age: 48) or LPF (22 patients, 12 male/10 female, mean age: 51) between January 2007 and January 2010 were retrospectively analyzed. Demographic and clinical characteristics, surgery (operation time, blood loss) outcomes (postoperative fusion rates, visual analog scale and foot and ankle surgery score and complications) were compared. Results: The LPF group had a shorter operation time (72.3 ± 9.2 vs. 102.8 ± 11.1 min, P \\u003c 0.001), less blood loss (75.9 ± 20.2 vs. 140.0 ± 23.8 ml, P \\u003c 0.001) and less intraoperative fluoroscopy sessions (3.6 ± 0.9 vs. 8.4 ± 1.3, P \\u003c 0.001) than the RINF group. Patients were followed up for 12–24 months (mean of 16.2 months). Both groups had similar postoperative fusion rates (90.6% and 95.4%) and the LPF group showed a nonsignificant lower complication rate (18.2% vs. 28.1% respectively). Patients at higher risk on nonunion due to rheumatoid diseases may have a lower nonunion rate with LPF than RINF (one out of eight vs. three out of nine, P \\u003c 0.001). Conclusions: The LPF for TTCA was simpler to perform compared with RINF, but with similar postoperative outcomes and complication rates.\"],\"language\":\"eng\",\"subjects\":[\"Original Article\",\"Locking plate fixation\",\"retrograde intramedullary nail\",\"subtalar arthritis\",\"tibiotalar arthrodesis\",\"tibiotalocalcaneal arthrodesis\",\"Ankle\",\"bone plates\",\"intramedullary\",\"arthrodesis\",\"nailing\"],\"creators\":[\"Zhang, Chi\",\"Shi, Zhongmin\",\"Mei, Guohua\"],\"publicationdate\":\"2015-01-01\",\"publisher\":\"Medknow Publications \\u0026 Media Pvt Ltd\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Indian Journal of Orthopaedics\",\"issn\":\"0019-5413\",\"eissn\":\"1998-3727\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4103/0019-5413.152492\",\"type\":\"doi\"},{\"value\":\"PMC4436491\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4436491\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.ijoonline.com/article.asp?issn\\u003d0019-5413;year\\u003d2015;volume\\u003d49;issue\\u003d2;spage\\u003d227;epage\\u003d232;aulast\\u003dZhang\",\"license\":\"OPEN\",\"hostedby\":\"Indian Journal of Orthopaedics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ijoonline.com/article.asp?issn\\u003d0019-5413;year\\u003d2015;volume\\u003d49;issue\\u003d2;spage\\u003d227;epage\\u003d232;aulast\\u003dZhang\",\"license\":\"OPEN\",\"hostedby\":\"Indian Journal of Orthopaedics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.ijoonline.com/article.asp?issn\\u003d0019-5413;year\\u003d2015;volume\\u003d49;issue\\u003d2;spage\\u003d227;epage\\u003d232;aulast\\u003dZhang\",\"id\":\"oai:doaj.org/article:26dceb01a7a74151ab047d5226c5011f\"},\"trust\":0.777718}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3405642"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zhang, Chi","Shi, Zhongmin","Mei, Guohua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:26dceb01a7a74151ab047d5226c5011f"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Article","Locking plate fixation","retrograde intramedullary nail","subtalar arthritis","tibiotalar arthrodesis","tibiotalocalcaneal arthrodesis","Ankle","bone plates","intramedullary","arthrodesis","nailing"]},"trust":{"type":"FLOAT","value":0.777718},"target_publication_title":{"type":"STRING","value":"Locking plate versus retrograde intramedullary nail fixation for tibiotalocalcaneal arthrodesis: A retrospective analysis"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2015-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ags:aaea07:438\",\"titles\":[\"A balance of questions: what can we ask of climate change economics?\"],\"abstracts\":[\"The standard approach to the economics of climate change, which has its best known implementation in Nordhaus\\u0027s DICE and RICE models (well described in Nordhaus\\u0027s 2008 book, A Question of Balance) is not well equipped to deal with the possibility of catastrophe, since we are unable to evaluate a risk averse representative agent\\u0027s expected utility when there is any signi cant probability of zero consumption. Whilst other authors attempt to develop new tools with which to address these problems, the simple solution proposed in this paper is to ask a question that the currently available tools of climate change economics are capable of answering. Rather than having agents optimally choosing a path (that differs from the recommendations of climate scientists) within models which cannot capture the essential features of the problem, I argue that economic models should be used to determine the savings and investment paths which implement climate targets that have been suggested in the physical science literature.\"],\"language\":\"und\",\"subjects\":[\"Climate Change, Catastrophe, Optimal Policy, Alternative Energy Investment,\"],\"creators\":[\"Comerford, David\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://repo.sire.ac.uk/handle/10943/438\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.econ.ed.ac.uk/papers/id216_esedps.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.econ.ed.ac.uk/papers/id216_esedps.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.econ.ed.ac.uk/papers/id216_esedps.pdf\",\"id\":\"oai:RePEc:edn:esedps:216\"},\"trust\":0.8589497}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ags:aaea07:438"},"target_publication_author_list":{"type":"LIST_STRING","value":["Comerford, David"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:edn:esedps:216"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Climate Change, Catastrophe, Optimal Policy, Alternative Energy Investment,"]},"trust":{"type":"FLOAT","value":0.8589497},"target_publication_title":{"type":"STRING","value":"A balance of questions: what can we ask of climate change economics?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ags:aaea07:438\",\"titles\":[\"A balance of questions: what can we ask of climate change economics?\"],\"abstracts\":[\"The standard approach to the economics of climate change, which has its best known implementation in Nordhaus\\u0027s DICE and RICE models (well described in Nordhaus\\u0027s 2008 book, A Question of Balance) is not well equipped to deal with the possibility of catastrophe, since we are unable to evaluate a risk averse representative agent\\u0027s expected utility when there is any signi cant probability of zero consumption. Whilst other authors attempt to develop new tools with which to address these problems, the simple solution proposed in this paper is to ask a question that the currently available tools of climate change economics are capable of answering. Rather than having agents optimally choosing a path (that differs from the recommendations of climate scientists) within models which cannot capture the essential features of the problem, I argue that economic models should be used to determine the savings and investment paths which implement climate targets that have been suggested in the physical science literature.\"],\"language\":\"und\",\"subjects\":[\"Climate Change, Catastrophe, Optimal Policy, Alternative Energy Investment,\"],\"creators\":[\"Comerford, David\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://repo.sire.ac.uk/handle/10943/438\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10943/438\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10943/438\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://hdl.handle.net/10943/438\",\"id\":\"oai:RePEc:edn:sirdps:438\"},\"trust\":0.15126294}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ags:aaea07:438"},"target_publication_author_list":{"type":"LIST_STRING","value":["Comerford, David"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:edn:sirdps:438"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Climate Change, Catastrophe, Optimal Policy, Alternative Energy Investment,"]},"trust":{"type":"FLOAT","value":0.15126294},"target_publication_title":{"type":"STRING","value":"A balance of questions: what can we ask of climate change economics?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:edn:esedps:216\",\"titles\":[\"A balance of questions: what can we ask of climate change economics?\"],\"abstracts\":[\"The standard approach to the economics of climate change, which has its best known implementation in Nordhaus\\u0027s DICE and RICE models (well described in Nordhaus\\u0027s 2008 book, A Question of Balance) is not well equipped to deal with the possibility of catastrophe, since we are unable to evaluate a risk averse representative agent\\u0027s expected utility when there is any significant probability of zero consumption. Whilst other authors attempt to develop new tools with which to address these problems, the simple solution proposed in this paper is to ask a question that the currently available tools of climate change economics are capable of answering. Rather than having agents optimally choosing a path (that divers from the recommendations of climate scientists) within models which cannot capture the essential features of the problem, I argue that economic models should be used to determine the savings and investment paths which implement climate targets that have been suggested in the physical science literature.\"],\"language\":\"und\",\"subjects\":[\"climate change, catastrophe, optimal policy, alternative energy investment\"],\"creators\":[\"David Comerford\"],\"publicationdate\":\"2013-01-06\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.econ.ed.ac.uk/papers/id216_esedps.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://repo.sire.ac.uk/handle/10943/438\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repo.sire.ac.uk/handle/10943/438\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://repo.sire.ac.uk/handle/10943/438\",\"id\":\"oai:RePEc:ags:aaea07:438\"},\"trust\":0.86340326}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:edn:esedps:216"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Comerford"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ags:aaea07:438"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["climate change, catastrophe, optimal policy, alternative energy investment"]},"trust":{"type":"FLOAT","value":0.86340326},"target_publication_title":{"type":"STRING","value":"A balance of questions: what can we ask of climate change economics?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:edn:esedps:216\",\"titles\":[\"A balance of questions: what can we ask of climate change economics?\"],\"abstracts\":[\"The standard approach to the economics of climate change, which has its best known implementation in Nordhaus\\u0027s DICE and RICE models (well described in Nordhaus\\u0027s 2008 book, A Question of Balance) is not well equipped to deal with the possibility of catastrophe, since we are unable to evaluate a risk averse representative agent\\u0027s expected utility when there is any significant probability of zero consumption. Whilst other authors attempt to develop new tools with which to address these problems, the simple solution proposed in this paper is to ask a question that the currently available tools of climate change economics are capable of answering. Rather than having agents optimally choosing a path (that divers from the recommendations of climate scientists) within models which cannot capture the essential features of the problem, I argue that economic models should be used to determine the savings and investment paths which implement climate targets that have been suggested in the physical science literature.\"],\"language\":\"und\",\"subjects\":[\"climate change, catastrophe, optimal policy, alternative energy investment\"],\"creators\":[\"David Comerford\"],\"publicationdate\":\"2013-01-06\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.econ.ed.ac.uk/papers/id216_esedps.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10943/438\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10943/438\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://hdl.handle.net/10943/438\",\"id\":\"oai:RePEc:edn:sirdps:438\"},\"trust\":0.42889982}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:edn:esedps:216"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Comerford"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:edn:sirdps:438"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["climate change, catastrophe, optimal policy, alternative energy investment"]},"trust":{"type":"FLOAT","value":0.42889982},"target_publication_title":{"type":"STRING","value":"A balance of questions: what can we ask of climate change economics?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:edn:sirdps:438\",\"titles\":[\"A balance of questions: what can we ask of climate change economics?\"],\"abstracts\":[\"The standard approach to the economics of climate change, which has its best known implementation in Nordhaus\\u0027s DICE and RICE models (well described in Nordhaus\\u0027s 2008 book, A Question of Balance) is not well equipped to deal with the possibility of catastrophe, since we are unable to evaluate a risk averse representative agent\\u0027s expected utility when there is any signi cant probability of zero consumption. Whilst other authors attempt to develop new tools with which to address these problems, the simple solution proposed in this paper is to ask a question that the currently available tools of climate change economics are capable of answering. Rather than having agents optimally choosing a path (that differs from the recommendations of climate scientists) within models which cannot capture the essential features of the problem, I argue that economic models should be used to determine the savings and investment paths which implement climate targets that have been suggested in the physical science literature.\"],\"language\":\"und\",\"subjects\":[\"Climate Change, Catastrophe, Optimal Policy, Alternative Energy Investment,\"],\"creators\":[\"Comerford, David\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10943/438\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://repo.sire.ac.uk/handle/10943/438\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repo.sire.ac.uk/handle/10943/438\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://repo.sire.ac.uk/handle/10943/438\",\"id\":\"oai:RePEc:ags:aaea07:438\"},\"trust\":0.25019693}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:edn:sirdps:438"},"target_publication_author_list":{"type":"LIST_STRING","value":["Comerford, David"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ags:aaea07:438"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Climate Change, Catastrophe, Optimal Policy, Alternative Energy Investment,"]},"trust":{"type":"FLOAT","value":0.25019693},"target_publication_title":{"type":"STRING","value":"A balance of questions: what can we ask of climate change economics?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:edn:sirdps:438\",\"titles\":[\"A balance of questions: what can we ask of climate change economics?\"],\"abstracts\":[\"The standard approach to the economics of climate change, which has its best known implementation in Nordhaus\\u0027s DICE and RICE models (well described in Nordhaus\\u0027s 2008 book, A Question of Balance) is not well equipped to deal with the possibility of catastrophe, since we are unable to evaluate a risk averse representative agent\\u0027s expected utility when there is any signi cant probability of zero consumption. Whilst other authors attempt to develop new tools with which to address these problems, the simple solution proposed in this paper is to ask a question that the currently available tools of climate change economics are capable of answering. Rather than having agents optimally choosing a path (that differs from the recommendations of climate scientists) within models which cannot capture the essential features of the problem, I argue that economic models should be used to determine the savings and investment paths which implement climate targets that have been suggested in the physical science literature.\"],\"language\":\"und\",\"subjects\":[\"Climate Change, Catastrophe, Optimal Policy, Alternative Energy Investment,\"],\"creators\":[\"Comerford, David\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10943/438\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.econ.ed.ac.uk/papers/id216_esedps.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.econ.ed.ac.uk/papers/id216_esedps.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.econ.ed.ac.uk/papers/id216_esedps.pdf\",\"id\":\"oai:RePEc:edn:esedps:216\"},\"trust\":0.09393537}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:edn:sirdps:438"},"target_publication_author_list":{"type":"LIST_STRING","value":["Comerford, David"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:edn:esedps:216"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Climate Change, Catastrophe, Optimal Policy, Alternative Energy Investment,"]},"trust":{"type":"FLOAT","value":0.09393537},"target_publication_title":{"type":"STRING","value":"A balance of questions: what can we ask of climate change economics?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:researchrepository.ucd.ie:10197/4528\",\"titles\":[\"Helpful and unhelpful aspects of eating disorders treatment involving psychological therapy : a meta-synthesis of qualitative research studies\"],\"abstracts\":[\"This meta-analysis, published in June 2013, sought to review and meta-analyse qualitative studies investigating helpful and unhelpful aspects of eating disorders treatment that involved psychological therapy. In total, 25 papers (24 studies) were systematically reviewed to discover what clients with an eating disorder diagnosis identified as helpful or unhelpful in their treatment. The studies involved 1,058 participants with an age range of 11 to 50, across a number of different counties.\",\"peer-reviewed\"],\"language\":\"eng\",\"subjects\":[\"Counselling\",\"Psychology\",\"Eating disorders\",\"Systematic review\",\"In progress\"],\"creators\":[\"Timulak, Ladislav\",\"Buckroyd, Julia\",\"Klimas, Jan\",\"Creaner, Mary\",\"Wellsted, David\",\"Bunn, Frances\",\"Bradshaw, Siobhan\",\"Green, George\"],\"publicationdate\":\"2013-06-01\",\"publisher\":\"British Association for Counselling and Psychotherapy\",\"embargoenddate\":\"\",\"contributor\":[\"funder:British Association for Counselling and Psychotherapy\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Repository UCD\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10197/4528\",\"license\":\"OPEN\",\"hostedby\":\"Research Repository UCD\",\"instancetype\":\"Book\"},{\"url\":\"http://hdl.handle.net/10344/3341\",\"license\":\"OPEN\",\"hostedby\":\"University of Limerick Institutional Repository\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10344/3341\",\"license\":\"OPEN\",\"hostedby\":\"University of Limerick Institutional Repository\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"University of Limerick Institutional Repository\",\"url\":\"http://hdl.handle.net/10344/3341\",\"id\":\"oai:ulir.ul.ie:10344/3341\"},\"trust\":0.4044425}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Repository UCD"},"target_publication_id":{"type":"STRING","value":"oai:researchrepository.ucd.ie:10197/4528"},"target_publication_author_list":{"type":"LIST_STRING","value":["Timulak, Ladislav","Buckroyd, Julia","Klimas, Jan","Creaner, Mary","Wellsted, David","Bunn, Frances","Bradshaw, Siobhan","Green, George"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ulir.ul.ie:10344/3341"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2ba8698b79439589fdd2b0f7218d8b07"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Counselling","Psychology","Eating disorders","Systematic review","In progress"]},"trust":{"type":"FLOAT","value":0.4044425},"target_publication_title":{"type":"STRING","value":"Helpful and unhelpful aspects of eating disorders treatment involving psychological therapy : a meta-synthesis of qualitative research studies"},"provenance_datasource_name":{"type":"STRING","value":"University of Limerick Institutional Repository"},"target_dateofacceptance":{"type":"DATE","value":"2013-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::a89cf525e1d9f04d16ce31165e139a4b"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ulir.ul.ie:10344/3341\",\"titles\":[\"Helpful and unhelpful aspects of eating disorders treatment involving psychological therapy: a meta-synthesis of qualitative research studies.\"],\"abstracts\":[\"This meta-analysis, published in June 2013, sought to review and meta-analyse qualitative studies investigating helpful and unhelpful aspects of eating disorders treatment that involved psychological therapy. In total, 25 papers (24 studies) were systematically reviewed to discover what clients with an eating disorder diagnosis identified as helpful or unhelpful in their treatment. The studies involved 1,058 participants with an age range of 11 to 50, across a number of different counties.\",\"peer-reviewed\"],\"language\":\"eng\",\"subjects\":[\"counselling\",\"eating disorders\"],\"creators\":[\"Timulak, Ladislav\",\"Buckroyd, Julia\",\"Klimas, Jan\",\"Creaner, Mary\",\"Wellsted, David\",\"Bunne, Frances\",\"Bradshaw, Siobhan\",\"Green, George\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"Lutterworth: British Association for Counselling and Psychotherapy.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"University of Limerick Institutional Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10344/3341\",\"license\":\"OPEN\",\"hostedby\":\"University of Limerick Institutional Repository\",\"instancetype\":\"Book\"},{\"url\":\"http://hdl.handle.net/10197/4528\",\"license\":\"OPEN\",\"hostedby\":\"Research Repository UCD\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10197/4528\",\"license\":\"OPEN\",\"hostedby\":\"Research Repository UCD\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Research Repository UCD\",\"url\":\"http://hdl.handle.net/10197/4528\",\"id\":\"oai:researchrepository.ucd.ie:10197/4528\"},\"trust\":0.424766}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"University of Limerick Institutional Repository"},"target_publication_id":{"type":"STRING","value":"oai:ulir.ul.ie:10344/3341"},"target_publication_author_list":{"type":"LIST_STRING","value":["Timulak, Ladislav","Buckroyd, Julia","Klimas, Jan","Creaner, Mary","Wellsted, David","Bunne, Frances","Bradshaw, Siobhan","Green, George"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:researchrepository.ucd.ie:10197/4528"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::a89cf525e1d9f04d16ce31165e139a4b"},"target_publication_subject_list":{"type":"LIST_STRING","value":["counselling","eating disorders"]},"trust":{"type":"FLOAT","value":0.424766},"target_publication_title":{"type":"STRING","value":"Helpful and unhelpful aspects of eating disorders treatment involving psychological therapy: a meta-synthesis of qualitative research studies."},"provenance_datasource_name":{"type":"STRING","value":"Research Repository UCD"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2ba8698b79439589fdd2b0f7218d8b07"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:wwu.de:6dba1dc3-95cf-4c7e-bffe-094de1efb9a2\",\"titles\":[\"Analysis of surgical and oncological Outcome in internal and external Hemipelvectomy in 34 Patients above the Age of 65 Years at a mean Follow-up of 56 Months\"],\"abstracts\":[\"Background: With an increasing life expectancy and improved treatment regimens for primary or secondary malignant diseases of soft tissue or bone, hemipelvectomy will have to be considered more often in elderly patients in the future. Scientific reviews concerned with the surgical and oncological outcome of elderly patients undergoing hemipelvectomy are scarce. Therefore, it is the purpose of this study to review the outcome of patients treated with that procedure at our hospital and investigate the feasibility of such extensive procedures at an increased age. Methods: A retrospective analysis of thirty-four patients who underwent hemipelvectomy at an age of 65 years or older was performed to determine their surgical and oncological outcome. The Kaplan-Meier method was used to calculate the cumulative probability of survival using the day of tumor resection as a starting point. Univariate analysis was carried out to investigate the influence of a particular single parameter. Results: The mean age at operation was 70.2 years. Thirty patients were treated for intermediate- to high-grade sarcoma and 81.8% of tumors were larger than or equal to 10 cm in the longest diameter. Thirteen patients underwent internal hemipelvectomy and nine patients external hemipelvectomy as a primary procedure. Twelve patients were treated with external hemipelvectomy after failed local tumor control at primary operation. Wound infection occurred in 61.7% of cases. Three patients underwent amputation for non-manageable infection after internal hemipelvectomy. Hospital mortality was 8.8%. Clear resection margins were obtained in 88% of patients; in another 6% of patients planned intralesional resections were performed. Local recurrence occurred in 8.8% of patients at a mean time of 26 months after operation. Eleven patients are alive with no evidence of disease and 23 patients died of disease or other causes. Patients with pulmonary metastases had a mean survival period after operation to DOD of 22 months compared to 37 months in the curative group. Conclusion: Despite an elevated rate in hospital mortality and wound infection, this study suggests that hemipelvectomy is feasible in elderly patients, although requiring long hospitalization periods and causing a limited functional outcome.\\u003cbr\\u003e\"],\"language\":\"eng\",\"subjects\":[\"Hemipelvectomy; Hindquarter amputation; Elderly patients\",\"ddc:610\",\"info:eu-repo/classification/ddc/610\",\"Medicine and health\"],\"creators\":[\"Guder, W. K.\",\"Hardes, J.\",\"Gosheger, G.\",\"Henrichs, M.\",\"Nottrott, M.\",\"Streitbürger, A.\"],\"publicationdate\":\"2015-02-27\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Universitäts- und Landesbibliothek Münster\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Münstersches Informations und Archivsystem für Multimediale Inhalte\"],\"pids\":[{\"value\":\"10.1186/s12891-015-0494-5\",\"type\":\"doi\"},{\"value\":\"PMC4342034\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"https://nbn-resolving.org/urn:nbn:de:hbz:6-00349719746\",\"license\":\"OPEN\",\"hostedby\":\"Münstersches Informations und Archivsystem für Multimediale Inhalte\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC4342034\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4342034\",\"id\":\"oai:europepmc.org:3305222\"},\"trust\":0.39041907}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Münstersches Informations und Archivsystem für Multimediale Inhalte"},"target_publication_id":{"type":"STRING","value":"oai:wwu.de:6dba1dc3-95cf-4c7e-bffe-094de1efb9a2"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guder, W. K.","Hardes, J.","Gosheger, G.","Henrichs, M.","Nottrott, M.","Streitbürger, A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3305222"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Hemipelvectomy; Hindquarter amputation; Elderly patients","ddc:610","info:eu-repo/classification/ddc/610","Medicine and health"]},"trust":{"type":"FLOAT","value":0.39041907},"target_publication_title":{"type":"STRING","value":"Analysis of surgical and oncological Outcome in internal and external Hemipelvectomy in 34 Patients above the Age of 65 Years at a mean Follow-up of 56 Months"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2015-02-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::38913e1d6a7b94cb0f55994f679f5956"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3305222\",\"titles\":[\"Analysis of surgical and oncological outcome in internal and external hemipelvectomy in 34 patients above the age of 65 years at a mean follow-up of 56 months\"],\"abstracts\":[\"Background With an increasing life expectancy and improved treatment regimens for primary or secondary malignant diseases of soft tissue or bone, hemipelvectomy will have to be considered more often in elderly patients in the future. Scientific reviews concerned with the surgical and oncological outcome of elderly patients undergoing hemipelvectomy are scarce. Therefore, it is the purpose of this study to review the outcome of patients treated with that procedure at our hospital and investigate the feasibility of such extensive procedures at an increased age. Methods A retrospective analysis of thirty-four patients who underwent hemipelvectomy at an age of 65 years or older was performed to determine their surgical and oncological outcome. The Kaplan-Meier method was used to calculate the cumulative probability of survival using the day of tumor resection as a starting point. Univariate analysis was carried out to investigate the influence of a particular single parameter. Results The mean age at operation was 70.2 years. Thirty patients were treated for intermediate- to high-grade sarcoma and 81.8% of tumors were larger than or equal to 10 cm in the longest diameter. Thirteen patients underwent internal hemipelvectomy and nine patients external hemipelvectomy as a primary procedure. Twelve patients were treated with external hemipelvectomy after failed local tumor control at primary operation. Wound infection occurred in 61.7% of cases. Three patients underwent amputation for non-manageable infection after internal hemipelvectomy. Hospital mortality was 8.8%. Clear resection margins were obtained in 88% of patients; in another 6% of patients planned intralesional resections were performed. Local recurrence occurred in 8.8% of patients at a mean time of 26 months after operation. Eleven patients are alive with no evidence of disease and 23 patients died of disease or other causes. Patients with pulmonary metastases had a mean survival period after operation to DOD of 22 months compared to 37 months in the curative group. Conclusion Despite an elevated rate in hospital mortality and wound infection, this study suggests that hemipelvectomy is feasible in elderly patients, although requiring long hospitalization periods and causing a limited functional outcome.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\",\"Hemipelvectomy\",\"Hindquarter amputation\",\"Elderly patients\"],\"creators\":[\"Guder, Wiebke K.\",\"Hardes, Jendrik\",\"Gosheger, Georg\",\"Henrichs, Marcel-Philipp\",\"Nottrott, Markus\",\"Streitbürger, Arne\"],\"publicationdate\":\"2015-02-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"BMC Musculoskeletal Disorders\",\"issn\":\"\",\"eissn\":\"1471-2474\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/s12891-015-0494-5\",\"type\":\"doi\"},{\"value\":\"PMC4342034\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4342034\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"https://nbn-resolving.org/urn:nbn:de:hbz:6-00349719746\",\"license\":\"OPEN\",\"hostedby\":\"Münstersches Informations und Archivsystem für Multimediale Inhalte\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://nbn-resolving.org/urn:nbn:de:hbz:6-00349719746\",\"license\":\"OPEN\",\"hostedby\":\"Münstersches Informations und Archivsystem für Multimediale Inhalte\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Münstersches Informations und Archivsystem für Multimediale Inhalte\",\"url\":\"https://nbn-resolving.org/urn:nbn:de:hbz:6-00349719746\",\"id\":\"oai:wwu.de:6dba1dc3-95cf-4c7e-bffe-094de1efb9a2\"},\"trust\":0.7837952}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3305222"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guder, Wiebke K.","Hardes, Jendrik","Gosheger, Georg","Henrichs, Marcel-Philipp","Nottrott, Markus","Streitbürger, Arne"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:wwu.de:6dba1dc3-95cf-4c7e-bffe-094de1efb9a2"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::38913e1d6a7b94cb0f55994f679f5956"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article","Hemipelvectomy","Hindquarter amputation","Elderly patients"]},"trust":{"type":"FLOAT","value":0.7837952},"target_publication_title":{"type":"STRING","value":"Analysis of surgical and oncological outcome in internal and external hemipelvectomy in 34 patients above the age of 65 years at a mean follow-up of 56 months"},"provenance_datasource_name":{"type":"STRING","value":"Münstersches Informations und Archivsystem für Multimediale Inhalte"},"target_dateofacceptance":{"type":"DATE","value":"2015-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2704952\",\"titles\":[\"Early Childhood Caries and Body Mass Index in Young Children from Low Income Families\"],\"abstracts\":[\"The relationship between early childhood caries (ECC) and obesity is controversial. This cross-sectional survey investigated this association in children from low-income families in Goiania, Goias, Brazil and considered the role of several social determinants. A questionnaire examining the characteristics of the children and their families was administered to the primary caregiver during home visits. In addition, children (approximately 6 years of age) had their height, weight, and tooth condition assessed. The primary ECC outcome was categorized as one of the following: caries experience (decayed, missing, filled tooth: “dmft” index \\u003e 0), active ECC (decayed teeth \\u003e 0), or active severe ECC (decayed teeth ≥ 6). Descriptive, bivariate and logistic regression analyses were conducted. The participants in the current study consisted of 269 caregiver-child dyads, 88.5% of whom were included in the Family Health Program. Caregivers were mostly mothers (67.7%), were 35.3 ± 10.0 years old on average and had 9.8 ± 3.1 years of formal education. The mean family income was 2.3 ± 1.5 times greater than the Brazilian minimum wage. On average, the children in the current study were 68.7 ± 3.8 months old. Of these, 51.7% were boys, 23.4% were overweight or obese, 45.0% had active ECC, and 17.1% had severe ECC. The average body mass index (BMI) of the children was 15.9 ± 2.2, and their dmft index was 2.5 ± 3.2. BMI was not associated with any of the three categories of dental caries (p \\u003e 0.05). In contrast, higher family incomes were significantly associated with the lack of caries experience in children (OR 1.22, 95%CI 1.01–1.50), but the mother’s level of education was not significantly associated with ECC.\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"oral health\",\"preschool children\",\"body mass index\",\"dental caries\",\"socioeconomic status\"],\"creators\":[\"Costa, Luciane Rezende\",\"Daher, Anelise\",\"Queiroz, Maria Goretti\"],\"publicationdate\":\"2013-03-01\",\"publisher\":\"MDPI\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"International Journal of Environmental Research and Public Health\",\"issn\":\"1661-7827\",\"eissn\":\"1660-4601\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3390/ijerph10030867\",\"type\":\"doi\"},{\"value\":\"PMC3709291\",\"type\":\"pmc\"},{\"value\":\"23462435\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3709291\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.mdpi.com/1660-4601/10/3/867\",\"license\":\"OPEN\",\"hostedby\":\"International Journal of Environmental Research and Public Health\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.mdpi.com/1660-4601/10/3/867\",\"license\":\"OPEN\",\"hostedby\":\"International Journal of Environmental Research and Public Health\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.mdpi.com/1660-4601/10/3/867\",\"id\":\"oai:doaj.org/article:1430e1ccadb046f0aaf78b0411f7e110\"},\"trust\":0.5401267}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2704952"},"target_publication_author_list":{"type":"LIST_STRING","value":["Costa, Luciane Rezende","Daher, Anelise","Queiroz, Maria Goretti"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:1430e1ccadb046f0aaf78b0411f7e110"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","oral health","preschool children","body mass index","dental caries","socioeconomic status"]},"trust":{"type":"FLOAT","value":0.5401267},"target_publication_title":{"type":"STRING","value":"Early Childhood Caries and Body Mass Index in Young Children from Low Income Families"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oceanrep.geomar.de:29192\",\"titles\":[\"NIR optical carbon dioxide sensors based on highly photostable dihydroxy-aza-BODIPY dyes\"],\"abstracts\":[\"A new class of pH-sensitive indicator dyes for optical carbon dioxide sensors based on di-OH-aza-BODIPYs is presented. These colorimetric indicators show absorption maxima in the near infrared range (λmax 670–700 nm for the neutral form, λmax 725–760 nm for the mono-anionic form, λmax 785–830 nm for the di-anionic form), high molar absorption coefficients of up to 77 000 M−1 cm−1 and unmatched photostability. Depending on the electron-withdrawing or electron-donating effect of the substituents the pKa values are tunable (8.7–10.7). Therefore, optical carbon dioxide sensors based on the presented dyes cover diverse dynamic ranges (0.007–2 kPa; 0.18–20 kPa and 0.2–100 kPa), which enables different applications varying from marine science and environmental monitoring to food packaging. The sensors are outstandingly photostable in the absence and presence of carbon dioxide and can be read out via absorption or via the luminescence-based ratiometric scheme using the absorption-modulated inner-filter effect. Monitoring of the carbon dioxide production/consumption of a Hebe plant is demonstrated.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Schutting, Susanne\",\"Jokic, Tijana\",\"Strobl, Martin\",\"Borisov, Sergey M.\",\"Beer, Dirk\",\"Klimant, Ingo\"],\"publicationdate\":\"2015-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"OceanRep\"],\"pids\":[{\"value\":\"10.1039/C5TC00346F\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://oceanrep.geomar.de/29192/\",\"license\":\"RESTRICTED\",\"hostedby\":\"OceanRep\",\"instancetype\":\"Article\"},{\"url\":\"http://oceanrep.geomar.de/32234/\",\"license\":\"OPEN\",\"hostedby\":\"OceanRep\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://oceanrep.geomar.de/32234/\",\"license\":\"OPEN\",\"hostedby\":\"OceanRep\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"OceanRep\",\"url\":\"http://oceanrep.geomar.de/32234/\",\"id\":\"oai:oceanrep.geomar.de:32234\"},\"trust\":0.08531338}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"OceanRep"},"target_publication_id":{"type":"STRING","value":"oai:oceanrep.geomar.de:29192"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schutting, Susanne","Jokic, Tijana","Strobl, Martin","Borisov, Sergey M.","Beer, Dirk","Klimant, Ingo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oceanrep.geomar.de:32234"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::99f59c0842e83c808dd1813b48a37c6a"},"trust":{"type":"FLOAT","value":0.08531338},"target_publication_title":{"type":"STRING","value":"NIR optical carbon dioxide sensors based on highly photostable dihydroxy-aza-BODIPY dyes"},"provenance_datasource_name":{"type":"STRING","value":"OceanRep"},"target_dateofacceptance":{"type":"DATE","value":"2015-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::99f59c0842e83c808dd1813b48a37c6a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oceanrep.geomar.de:29192\",\"titles\":[\"NIR optical carbon dioxide sensors based on highly photostable dihydroxy-aza-BODIPY dyes\"],\"abstracts\":[\"A new class of pH-sensitive indicator dyes for optical carbon dioxide sensors based on di-OH-aza-BODIPYs is presented. These colorimetric indicators show absorption maxima in the near infrared range (λmax 670–700 nm for the neutral form, λmax 725–760 nm for the mono-anionic form, λmax 785–830 nm for the di-anionic form), high molar absorption coefficients of up to 77 000 M−1 cm−1 and unmatched photostability. Depending on the electron-withdrawing or electron-donating effect of the substituents the pKa values are tunable (8.7–10.7). Therefore, optical carbon dioxide sensors based on the presented dyes cover diverse dynamic ranges (0.007–2 kPa; 0.18–20 kPa and 0.2–100 kPa), which enables different applications varying from marine science and environmental monitoring to food packaging. The sensors are outstandingly photostable in the absence and presence of carbon dioxide and can be read out via absorption or via the luminescence-based ratiometric scheme using the absorption-modulated inner-filter effect. Monitoring of the carbon dioxide production/consumption of a Hebe plant is demonstrated.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Schutting, Susanne\",\"Jokic, Tijana\",\"Strobl, Martin\",\"Borisov, Sergey M.\",\"Beer, Dirk\",\"Klimant, Ingo\"],\"publicationdate\":\"2015-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"OceanRep\"],\"pids\":[{\"value\":\"10.1039/C5TC00346F\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://oceanrep.geomar.de/29192/\",\"license\":\"RESTRICTED\",\"hostedby\":\"OceanRep\",\"instancetype\":\"Article\"},{\"url\":\"http://oceanrep.geomar.de/32234/\",\"license\":\"OPEN\",\"hostedby\":\"OceanRep\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://oceanrep.geomar.de/32234/\",\"license\":\"OPEN\",\"hostedby\":\"OceanRep\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"OceanRep\",\"url\":\"http://oceanrep.geomar.de/32234/\",\"id\":\"oai:oceanrep.geomar.de:32234\"},\"trust\":0.08531338}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"OceanRep"},"target_publication_id":{"type":"STRING","value":"oai:oceanrep.geomar.de:29192"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schutting, Susanne","Jokic, Tijana","Strobl, Martin","Borisov, Sergey M.","Beer, Dirk","Klimant, Ingo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oceanrep.geomar.de:32234"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::99f59c0842e83c808dd1813b48a37c6a"},"trust":{"type":"FLOAT","value":0.08531338},"target_publication_title":{"type":"STRING","value":"NIR optical carbon dioxide sensors based on highly photostable dihydroxy-aza-BODIPY dyes"},"provenance_datasource_name":{"type":"STRING","value":"OceanRep"},"target_dateofacceptance":{"type":"DATE","value":"2015-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::99f59c0842e83c808dd1813b48a37c6a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3369437\",\"titles\":[\"Competency-based veterinary education: an integrative approach to learning and assessment in the clinical workplace\"],\"abstracts\":[\"When graduating from veterinary school, veterinary professionals must be ready to enter the complex veterinary profession. Therefore, one of the major responsibilities of any veterinary school is to develop training programmes that support students’ competency development on the trajectory from novice student to veterinary professional. The integration of learning and assessment in the clinical workplace to foster this competency development in undergraduate veterinary education was the central topic of this thesis.\"],\"language\":\"eng\",\"subjects\":[\"PhD Report\",\"Workplace-based assessment\",\"Programmatic assessment\",\"Feedback\",\"Competency-based learning\"],\"creators\":[\"Bok, Harold G. J.\"],\"publicationdate\":\"2015-03-01\",\"publisher\":\"Bohn Stafleu van Loghum\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Perspectives on Medical Education\",\"issn\":\"2212-2761\",\"eissn\":\"2212-277X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1007/s40037-015-0172-1\",\"type\":\"doi\"},{\"value\":\"PMC4404455\",\"type\":\"pmc\"},{\"value\":\"25814329\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4404455\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dspace.library.uu.nl/handle/1874/294505\",\"license\":\"OPEN\",\"hostedby\":\"Utrecht University Repository\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dspace.library.uu.nl/handle/1874/294505\",\"license\":\"OPEN\",\"hostedby\":\"Utrecht University Repository\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://dspace.library.uu.nl/handle/1874/294505\",\"id\":\"uu:oai:dspace.library.uu.nl:1874/294505\"},\"trust\":0.045375407}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3369437"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bok, Harold G. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uu:oai:dspace.library.uu.nl:1874/294505"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["PhD Report","Workplace-based assessment","Programmatic assessment","Feedback","Competency-based learning"]},"trust":{"type":"FLOAT","value":0.045375407},"target_publication_title":{"type":"STRING","value":"Competency-based veterinary education: an integrative approach to learning and assessment in the clinical workplace"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2015-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2970875\",\"titles\":[\"Interleukin-7 and Toll-Like Receptor 7 Induce Synergistic B Cell and T Cell Activation\"],\"abstracts\":[\"Objectives To investigate the potential synergy of IL-7-driven T cell-dependent and TLR7-mediated B cell activation and to assess the additive effects of monocyte/macrophages in this respect. Methods Isolated CD19 B cells and CD4 T cells from healthy donors were co-cultured with TLR7 agonist (TLR7A, Gardiquimod), IL-7, or their combination with or without CD14 monocytes/macrophages (T/B/mono; 1 : 1 : 0,1). Proliferation was measured using 3H-thymidine incorporation and Ki67 expression. Activation marker (CD19, HLA-DR, CD25) expression was measured by FACS analysis. Immunoglobulins were measured by ELISA and release of cytokines was measured by Luminex assay. Results TLR7-induced B cell activation was not associated with T cell activation. IL-7-induced T cell activation alone and together with TLR7A synergistically increased numbers of both proliferating (Ki67+) B cells and T cells, which was further increased in the presence of monocytes/macrophages. This was associated by up regulation of activation markers on B cells and T cells. Additive or synergistic induction of production of immunoglobulins by TLR7 and IL-7 was associated by synergistic induction of T cell cytokines (IFNγ, IL-17A, IL-22), which was only evident in the presence of monocytes/macrophages. Conclusions IL-7-induced CD4 T cell activation and TLR7-induced B cell activation synergistically induce T helper cell cytokine and B cell immunoglobulin production, which is critically dependent on monocytes/macrophages. Our results indicate that previously described increased expression of IL-7 and TLR7 together with increased numbers of macrophages at sites of inflammation in autoimmune diseases like RA and pSS significantly contributes to enhanced lymphocyte activation.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\",\"Biology and Life Sciences\",\"Biochemistry\",\"Proteins\",\"Immune System Proteins\",\"Antibodies\",\"Cell Biology\",\"Cellular Types\",\"Animal Cells\",\"Blood Cells\",\"White Blood Cells\",\"B Cells\",\"Monocytes\",\"T Cells\",\"Immune Cells\",\"Cytometry\",\"Molecular Cell Biology\",\"Developmental Biology\",\"Molecular Development\",\"Cytokines\",\"Immunology\",\"Autoimmunity\",\"Immune System\",\"Research and Analysis Methods\",\"Spectrum Analysis Techniques\",\"Spectrophotometry\",\"Cytophotometry\",\"Flow Cytometry\"],\"creators\":[\"Bikker, Angela\",\"Kruize, Aike A.\",\"Wurff-Jacobs, Kim M. G.\",\"Peters, Rogier P.\",\"Kleinjan, Marije\",\"Redegeld, Frank\",\"Jager, Wilco\",\"Lafeber, Floris P. J. G.\",\"Roon, Joël A. G.\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"Public Library of Science\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"PLoS ONE\",\"issn\":\"\",\"eissn\":\"1932-6203\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1371/journal.pone.0094756\",\"type\":\"doi\"},{\"value\":\"PMC3989236\",\"type\":\"pmc\"},{\"value\":\"24740301\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3989236\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dspace.library.uu.nl/handle/1874/307645\",\"license\":\"OPEN\",\"hostedby\":\"Utrecht University Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dspace.library.uu.nl/handle/1874/307645\",\"license\":\"OPEN\",\"hostedby\":\"Utrecht University Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://dspace.library.uu.nl/handle/1874/307645\",\"id\":\"uu:oai:dspace.library.uu.nl:1874/307645\"},\"trust\":0.93317336}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2970875"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bikker, Angela","Kruize, Aike A.","Wurff-Jacobs, Kim M. G.","Peters, Rogier P.","Kleinjan, Marije","Redegeld, Frank","Jager, Wilco","Lafeber, Floris P. J. G.","Roon, Joël A. G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uu:oai:dspace.library.uu.nl:1874/307645"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article","Biology and Life Sciences","Biochemistry","Proteins","Immune System Proteins","Antibodies","Cell Biology","Cellular Types","Animal Cells","Blood Cells","White Blood Cells","B Cells","Monocytes","T Cells","Immune Cells","Cytometry","Molecular Cell Biology","Developmental Biology","Molecular Development","Cytokines","Immunology","Autoimmunity","Immune System","Research and Analysis Methods","Spectrum Analysis Techniques","Spectrophotometry","Cytophotometry","Flow Cytometry"]},"trust":{"type":"FLOAT","value":0.93317336},"target_publication_title":{"type":"STRING","value":"Interleukin-7 and Toll-Like Receptor 7 Induce Synergistic B Cell and T Cell Activation"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:unu:wpaper:dp2001-113\",\"titles\":[\"Debt Relief for Low-Income Countries: Arbitration as the Alternative to Present, Unsuccessful Debt Strategies\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Debt reduction, International insolvency, International financial architecture, HIPC initiative\"],\"creators\":[\"Raffer, Kunibert\"],\"publicationdate\":\"2001-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.wider.unu.edu/stc/repec/pdfs/dp2001/dp2001-113.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/52903\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/52903\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/52903\",\"id\":\"oai:econstor.eu:10419/52903\"},\"trust\":0.6239341}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:unu:wpaper:dp2001-113"},"target_publication_author_list":{"type":"LIST_STRING","value":["Raffer, Kunibert"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/52903"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Debt reduction, International insolvency, International financial architecture, HIPC initiative"]},"trust":{"type":"FLOAT","value":0.6239341},"target_publication_title":{"type":"STRING","value":"Debt Relief for Low-Income Countries: Arbitration as the Alternative to Present, Unsuccessful Debt Strategies"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2001-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/52903\",\"titles\":[\"Debt relief for low-income countries: Arbitration as the alternative to present, unsuccessful debt strategies\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"F34\",\"O16\",\"K33\",\"F35\",\"ddc:330\",\"Debt reduction\",\"International insolvency\",\"International financial architecture\",\"HIPC initiative\",\"Schuldenerlass\",\"Anpassungsprogramm des IWF\",\"Internationale Kreditvergabe\",\"Low-Income Countries\"],\"creators\":[\"Raffer, Kunibert\"],\"publicationdate\":\"2001-01-01\",\"publisher\":\"UNU-WIDER Helsinki\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/52903\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.wider.unu.edu/stc/repec/pdfs/dp2001/dp2001-113.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.wider.unu.edu/stc/repec/pdfs/dp2001/dp2001-113.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.wider.unu.edu/stc/repec/pdfs/dp2001/dp2001-113.pdf\",\"id\":\"oai:RePEc:unu:wpaper:dp2001-113\"},\"trust\":0.7431476}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/52903"},"target_publication_author_list":{"type":"LIST_STRING","value":["Raffer, Kunibert"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:unu:wpaper:dp2001-113"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["F34","O16","K33","F35","ddc:330","Debt reduction","International insolvency","International financial architecture","HIPC initiative","Schuldenerlass","Anpassungsprogramm des IWF","Internationale Kreditvergabe","Low-Income Countries"]},"trust":{"type":"FLOAT","value":0.7431476},"target_publication_title":{"type":"STRING","value":"Debt relief for low-income countries: Arbitration as the alternative to present, unsuccessful debt strategies"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2001-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00640900v1\",\"titles\":[\"Towards Scalable Array-Oriented Active Storage: the Pyramid Approach\"],\"abstracts\":[\"International audience\",\"The recent explosion in data sizes manipulated by distributed scientific applications has prompted the need to develop specialized storage systems capable to deal with specific access patterns in a scalable fashion. In this context, a large class of applications focuses on parallel array processing: small parts of huge multi-dimensional arrays are concurrently accessed by a large number of clients, both for reading and writing. A specialized storage system that deals with such an access pattern faces several challenges at the level of data/metadata management. We introduce Pyramid, an active array-oriented storage system that addresses these challenges. Experimental evaluation demonstrates substantial scalability improvements brought by Pyramid with respect to state-of-art approaches both in weak and strong scaling scenarios, with gains of 100% to 150%.\"],\"language\":\"eng\",\"subjects\":[\"[INFO.INFO-DC] Computer Science/Distributed, Parallel, and Cluster Computing\"],\"creators\":[\"Tran, Viet-Trung\",\"Nicolae, Bogdan\",\"Antoniu, Gabriel\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"KERDATA (INRIA - IRISA) ; INRIA - École normale supérieure (ENS) - Cachan - Université de Rennes 1 - Institut National des Sciences Appliquées (INSA) - Rennes - CNRS\",\"GRAND-LARGE (INRIA Saclay - Ile de France) ; INRIA - Université Paris XI - Paris Sud - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1145/2146382.2146387\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.inria.fr/hal-00640900\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.inria.fr/hal-00640900\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/hal-00640900\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/hal-00640900\",\"id\":\"oai:hal.inria.fr:hal-00640900\"},\"trust\":0.9540613}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00640900v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tran, Viet-Trung","Nicolae, Bogdan","Antoniu, Gabriel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:hal-00640900"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO.INFO-DC] Computer Science/Distributed, Parallel, and Cluster Computing"]},"trust":{"type":"FLOAT","value":0.9540613},"target_publication_title":{"type":"STRING","value":"Towards Scalable Array-Oriented Active Storage: the Pyramid Approach"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:hal-00640900\",\"titles\":[\"Towards Scalable Array-Oriented Active Storage: the Pyramid Approach\"],\"abstracts\":[\"The recent explosion in data sizes manipulated by distributed scientific applications has prompted the need to develop specialized storage systems capable to deal with specific access patterns in a scalable fashion. In this context, a large class of applications focuses on parallel array processing: small parts of huge multi-dimensional arrays are concurrently accessed by a large number of clients, both for reading and writing. A specialized storage system that deals with such an access pattern faces several challenges at the level of data/metadata management. We introduce Pyramid, an active array-oriented storage system that addresses these challenges. Experimental evaluation demonstrates substantial scalability improvements brought by Pyramid with respect to state-of-art approaches both in weak and strong scaling scenarios, with gains of 100% to 150%.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_DC] Computer Science/Distributed, Parallel, and Cluster Computing\",\"[INFO:INFO_DC] Informatique/Calcul parallèle, distribué et partagé\"],\"creators\":[\"Tran, Viet-Trung\",\"Nicolae, Bogdan\",\"Antoniu, Gabriel\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1145/2146382.2146387\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.inria.fr/hal-00640900\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.inria.fr/hal-00640900\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/hal-00640900\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/hal-00640900\",\"id\":\"oai:HAL:hal-00640900v1\"},\"trust\":0.019011796}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:hal-00640900"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tran, Viet-Trung","Nicolae, Bogdan","Antoniu, Gabriel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00640900v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_DC] Computer Science/Distributed, Parallel, and Cluster Computing","[INFO:INFO_DC] Informatique/Calcul parallèle, distribué et partagé"]},"trust":{"type":"FLOAT","value":0.019011796},"target_publication_title":{"type":"STRING","value":"Towards Scalable Array-Oriented Active Storage: the Pyramid Approach"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2004913\",\"titles\":[\"Regulation of early signaling and gene expression in the α-particle and bystander response of IMR-90 human fibroblasts\"],\"abstracts\":[\"Background The existence of a radiation bystander effect, in which non-irradiated cells respond to signals from irradiated cells, is well established. To understand early signaling and gene regulation in bystander cells, we used a bio-informatics approach, measuring global gene expression at 30 minutes and signaling pathways between 30 minutes and 4 hours after exposure to α-particles in IMR-90 fibroblasts. Methods We used whole human genome microarrays and real time quantitative PCR to measure and validate gene expression. Microarray analysis was done using BRB-Array Tools; pathway and ontology analyses were done using Ingenuity Pathway Analysis and PANTHER, respectively. We studied signaling in irradiated and bystander cells using immunoblotting and semi-quantitative image analysis. Results Gene ontology suggested signal transduction and transcriptional regulation responding 30 minutes after treatment affected cell structure, motility and adhesion, and interleukin synthesis. We measured time-dependent expression of genes controlled by the NF-κB pathway; matrix metalloproteinases 1 and 3; chemokine ligands 2, 3 and 5 and interleukins 1β, 6 and 33. There was an increased response of this set of genes 30 minutes after treatment and another wave of induction at 4 hours. We investigated AKT-GSK3β signaling and found both AKT and GSK3β are hyper-phosphorylated 30 minutes after irradiation and this effect is maintained through 4 hours. In bystander cells, a similar response was seen with a delay of 30 minutes. We proposed a network model where the observed decrease in phosphorylation of β-catenin protein after GSK3β dependent inactivation can trigger target gene expression at later times after radiation exposure Conclusions These results are the first to show that the radiation induced bystander signal induces a widespread gene expression response at 30 minutes after treatment and these changes are accompanied by modification of signaling proteins in the PI3K-AKT-GSK3β pathway.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Ghandhi, Shanaz A.\",\"Ming, Lihua\",\"Ivanov, Vladimir N.\",\"Hei, Tom K.\",\"Amundson, Sally A.\"],\"publicationdate\":\"2010-07-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"BMC Medical Genomics\",\"issn\":\"\",\"eissn\":\"1755-8794\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1755-8794-3-31\",\"type\":\"doi\"},{\"value\":\"PMC2919438\",\"type\":\"pmc\"},{\"value\":\"20670442\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2919438\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.biomedcentral.com/1755-8794/3/31\",\"license\":\"OPEN\",\"hostedby\":\"BMC Medical Genomics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.biomedcentral.com/1755-8794/3/31\",\"license\":\"OPEN\",\"hostedby\":\"BMC Medical Genomics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.biomedcentral.com/1755-8794/3/31\",\"id\":\"oai:doaj.org/article:48e46ad4f5dc4af3a06777e318b92c6b\"},\"trust\":0.3372665}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2004913"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ghandhi, Shanaz A.","Ming, Lihua","Ivanov, Vladimir N.","Hei, Tom K.","Amundson, Sally A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:48e46ad4f5dc4af3a06777e318b92c6b"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.3372665},"target_publication_title":{"type":"STRING","value":"Regulation of early signaling and gene expression in the α-particle and bystander response of IMR-90 human fibroblasts"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2010-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00883147v1\",\"titles\":[\"Aboveground biomass in a beech forest and a Scots pine plantation in the Sierra de la Demanda area of northern Spain\"],\"abstracts\":[\"International audience\"],\"language\":\"eng\",\"subjects\":[\"[SDV.SA.SF] Life Sciences/Agricultural sciences/Silviculture, forestry\"],\"creators\":[\"Santa Regina, I.\",\"Tarazona, T.\",\"Calvo, R.\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00883147\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00883147\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00883147\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00883147\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00883147\"},\"trust\":0.33125633}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00883147v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Santa Regina, I.","Tarazona, T.","Calvo, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00883147"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.SA.SF] Life Sciences/Agricultural sciences/Silviculture, forestry"]},"trust":{"type":"FLOAT","value":0.33125633},"target_publication_title":{"type":"STRING","value":"Aboveground biomass in a beech forest and a Scots pine plantation in the Sierra de la Demanda area of northern Spain"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00883147\",\"titles\":[\"Aboveground biomass in a beech forest and a Scots pine plantation in the Sierra de la Demanda area of northern Spain\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"[SDV:SA:SF] Life Sciences/Agricultural sciences/Silviculture, forestry\",\"[SDV:SA:SF] Sciences du Vivant/Sciences agricoles/Sylviculture, foresterie\"],\"creators\":[\"Santa Regina, I.\",\"Tarazona, T.\",\"Calvo, R.\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00883147\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00883147\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00883147\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00883147\",\"id\":\"oai:HAL:hal-00883147v1\"},\"trust\":0.5809915}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00883147"},"target_publication_author_list":{"type":"LIST_STRING","value":["Santa Regina, I.","Tarazona, T.","Calvo, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00883147v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:SA:SF] Life Sciences/Agricultural sciences/Silviculture, forestry","[SDV:SA:SF] Sciences du Vivant/Sciences agricoles/Sylviculture, foresterie"]},"trust":{"type":"FLOAT","value":0.5809915},"target_publication_title":{"type":"STRING","value":"Aboveground biomass in a beech forest and a Scots pine plantation in the Sierra de la Demanda area of northern Spain"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00883147\",\"titles\":[\"Aboveground biomass in a beech forest and a Scots pine plantation in the Sierra de la Demanda area of northern Spain\"],\"abstracts\":[\"International audience\"],\"language\":\"eng\",\"subjects\":[\"[SDV:SA:SF] Life Sciences/Agricultural sciences/Silviculture, forestry\",\"[SDV:SA:SF] Sciences du Vivant/Sciences agricoles/Sylviculture, foresterie\"],\"creators\":[\"Santa Regina, I.\",\"Tarazona, T.\",\"Calvo, R.\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00883147\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"International audience\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00883147\",\"id\":\"oai:HAL:hal-00883147v1\"},\"trust\":0.11467451}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00883147"},"target_publication_author_list":{"type":"LIST_STRING","value":["Santa Regina, I.","Tarazona, T.","Calvo, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00883147v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:SA:SF] Life Sciences/Agricultural sciences/Silviculture, forestry","[SDV:SA:SF] Sciences du Vivant/Sciences agricoles/Sylviculture, foresterie"]},"trust":{"type":"FLOAT","value":0.11467451},"target_publication_title":{"type":"STRING","value":"Aboveground biomass in a beech forest and a Scots pine plantation in the Sierra de la Demanda area of northern Spain"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1311.3802\",\"titles\":[\"Enhancing optomechanical coupling via the Josephson effect\"],\"abstracts\":[\" Cavity optomechanics is showing promise for studying quantum mechanics in\\nlarge systems. However, smallness of the radiation-pressure coupling is a\\nserious hindrance. Here we show how the charge tuning of the Josephson\\ninductance in a single-Cooper-pair transistor (SCPT) can be exploited to\\narrange a strong radiation pressure -type coupling $g_0$ between mechanical and\\nmicrowave resonators. In a certain limit of parameters, such a coupling can\\nalso be seen as a qubit-mediated coupling of two resonators. We show that this\\nscheme allows reaching extremely high $g_0$. Contrary to the recent proposals\\nfor exploiting the non-linearity of a large radiation pressure coupling, the\\nmain non-linearity in this setup originates from a cross-Kerr type of coupling\\nbetween the resonators, where the cavity refractive index depends on the phonon\\nnumber. The presence of this coupling will allow accessing the individual\\nphonon numbers via the measurement of the cavity.\\n\",\"Comment: 5+ pages and 3 figures in the main text + 7 single-column pages and 1\\n figure for the Appendix\"],\"language\":\"eng\",\"subjects\":[\"Condensed Matter - Mesoscale and Nanoscale Physics\",\"Condensed Matter - Superconductivity\",\"Quantum Physics\"],\"creators\":[\"Heikkilä, Tero T.\",\"Massel, Francesco\",\"Tuorila, Jani\",\"Khan, Raphaël\",\"Sillanpää, Mika A.\"],\"publicationdate\":\"2013-11-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1103/PhysRevLett.112.203603\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1311.3802\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1103/PhysRevLett.112.203603\",\"license\":\"OPEN\",\"hostedby\":\"Unknown Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1103/PhysRevLett.112.203603\",\"license\":\"OPEN\",\"hostedby\":\"Unknown Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"European Research Council (ERC)\",\"url\":\"http://dx.doi.org/10.1103/PhysRevLett.112.203603\",\"id\":\"161848\"},\"trust\":0.49989253}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1311.3802"},"target_publication_author_list":{"type":"LIST_STRING","value":["Heikkilä, Tero T.","Massel, Francesco","Tuorila, Jani","Khan, Raphaël","Sillanpää, Mika A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["161848"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::5ecaf0d3af3004219bc6b5907d19b6d9"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Condensed Matter - Mesoscale and Nanoscale Physics","Condensed Matter - Superconductivity","Quantum Physics"]},"trust":{"type":"FLOAT","value":0.49989253},"target_publication_title":{"type":"STRING","value":"Enhancing optomechanical coupling via the Josephson effect"},"provenance_datasource_name":{"type":"STRING","value":"European Research Council (ERC)"},"target_dateofacceptance":{"type":"DATE","value":"2013-11-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.zora.uzh.ch:75158\",\"titles\":[\"An endohedral single-molecule magnet with long relaxation times: DySc2N@C80\"],\"abstracts\":[\"The magnetism of DySc2N@C80 endofullerene was studied with X-ray magnetic circular dichroism (XMCD) and a magnetometer with a superconducting quantum interference device (SQUID) down to temperatures of 2 K and in fields up to 7 T. XMCD shows hysteresis of the 4f spin and orbital moment in DyIII ions. SQUID magnetometry indicates hysteresis below 6 K, while thermal and nonthermal relaxation is observed. Dilution of DySc2N@C80 samples with C60 increases the zero-field 4f electron relaxation time at 2 K to several hours.\"],\"language\":\"eng\",\"subjects\":[\"Physics Institute\",\"530 Physics\"],\"creators\":[\"Westerström, Rasmus\",\"Dreiser, Jan\",\"Piamonteze, Cinthia\",\"Muntwiler, Matthias\",\"Weyeneth, Stephen\",\"Brune, Harald\",\"Rusponi, Stefano\",\"Nolting, Frithjof\",\"Popov, Alexey\",\"Yang, Shangfeng\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"American Chemical Society\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Zurich Open Repository and Archive\"],\"pids\":[{\"value\":\"10.1021/ja301044p\",\"type\":\"doi\"},{\"value\":\"10.5167/uzh-75158\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.zora.uzh.ch/75158/1/manuscript_DySc2N_resub_3_RasmusThomas.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Zurich Open Repository and Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://infoscience.epfl.ch/record/178329\",\"license\":\"OPEN\",\"hostedby\":\"Infoscience - École polytechnique fédérale de Lausanne\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://infoscience.epfl.ch/record/178329\",\"license\":\"OPEN\",\"hostedby\":\"Infoscience - École polytechnique fédérale de Lausanne\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Infoscience - École polytechnique fédérale de Lausanne\",\"url\":\"http://infoscience.epfl.ch/record/178329\",\"id\":\"oai:infoscience.epfl.ch:178329\"},\"trust\":0.05076331}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Zurich Open Repository and Archive"},"target_publication_id":{"type":"STRING","value":"oai:www.zora.uzh.ch:75158"},"target_publication_author_list":{"type":"LIST_STRING","value":["Westerström, Rasmus","Dreiser, Jan","Piamonteze, Cinthia","Muntwiler, Matthias","Weyeneth, Stephen","Brune, Harald","Rusponi, Stefano","Nolting, Frithjof","Popov, Alexey","Yang, Shangfeng"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:infoscience.epfl.ch:178329"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::eecca5b6365d9607ee5a9d336962c534"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics Institute","530 Physics"]},"trust":{"type":"FLOAT","value":0.05076331},"target_publication_title":{"type":"STRING","value":"An endohedral single-molecule magnet with long relaxation times: DySc2N@C80"},"provenance_datasource_name":{"type":"STRING","value":"Infoscience - École polytechnique fédérale de Lausanne"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0efe32849d230d7f53049ddc4a4b0c60"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:infoscience.epfl.ch:178329\",\"titles\":[\"An Endohedral Single-Molecule Magnet with Long Relaxation Times: DySc_{2}N@C_{80}\"],\"abstracts\":[\"The magnetism of DySc2N@C80 endofullerene was studied with X-ray magnetic circular dichroism (XMCD) and a magnetometer with a superconducting quantum interference device (SQUID) down to temperatures of 2 K and in fields up to 7 T. XMCD shows hysteresis of the 4f spin and orbital moment in DyIII ions. SQUID magnetometry indicates hysteresis below 6 K, while thermal and nonthermal relaxation is observed. Dilution of DySc2N@C80 samples with C60 increases the zero-field 4f electron relaxation time at 2 K to several hours.\"],\"language\":\"eng\",\"subjects\":[\"Metal Nitride Clusterfullerenes\",\"Ray Circular-Dichroism\",\"High-Spin Molecules\",\"Cluster Fullerenes\",\"Electronic-Properties\",\"Uranium(Iii) Complex\",\"Zero-Field\",\"Ion Magnet\",\"Magnetization\",\"Cage\"],\"creators\":[\"Westerström, Rasmus\",\"Dreiser, Jan\",\"Piamonteze, Cinthia\",\"Muntwiler, Matthias\",\"Weyeneth, Stephen\",\"Brune, Harald\",\"Rusponi, Stefano\",\"Nolting, Frithjof\",\"Popov, Alexey\",\"Yang, Shangfeng\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Infoscience - École polytechnique fédérale de Lausanne\"],\"pids\":[{\"value\":\"10.1021/ja301044p\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://infoscience.epfl.ch/record/178329\",\"license\":\"OPEN\",\"hostedby\":\"Infoscience - École polytechnique fédérale de Lausanne\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1021/ja301044p\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Zurich Open Repository and Archive\",\"url\":\"http://www.zora.uzh.ch/75158/1/manuscript_DySc2N_resub_3_RasmusThomas.pdf\",\"id\":\"oai:www.zora.uzh.ch:75158\"},\"trust\":0.5603442}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Infoscience - École polytechnique fédérale de Lausanne"},"target_publication_id":{"type":"STRING","value":"oai:infoscience.epfl.ch:178329"},"target_publication_author_list":{"type":"LIST_STRING","value":["Westerström, Rasmus","Dreiser, Jan","Piamonteze, Cinthia","Muntwiler, Matthias","Weyeneth, Stephen","Brune, Harald","Rusponi, Stefano","Nolting, Frithjof","Popov, Alexey","Yang, Shangfeng"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.zora.uzh.ch:75158"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::0efe32849d230d7f53049ddc4a4b0c60"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Metal Nitride Clusterfullerenes","Ray Circular-Dichroism","High-Spin Molecules","Cluster Fullerenes","Electronic-Properties","Uranium(Iii) Complex","Zero-Field","Ion Magnet","Magnetization","Cage"]},"trust":{"type":"FLOAT","value":0.5603442},"target_publication_title":{"type":"STRING","value":"An Endohedral Single-Molecule Magnet with Long Relaxation Times: DySc_{2}N@C_{80}"},"provenance_datasource_name":{"type":"STRING","value":"Zurich Open Repository and Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::eecca5b6365d9607ee5a9d336962c534"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:infoscience.epfl.ch:178329\",\"titles\":[\"An Endohedral Single-Molecule Magnet with Long Relaxation Times: DySc_{2}N@C_{80}\"],\"abstracts\":[\"The magnetism of DySc2N@C80 endofullerene was studied with X-ray magnetic circular dichroism (XMCD) and a magnetometer with a superconducting quantum interference device (SQUID) down to temperatures of 2 K and in fields up to 7 T. XMCD shows hysteresis of the 4f spin and orbital moment in DyIII ions. SQUID magnetometry indicates hysteresis below 6 K, while thermal and nonthermal relaxation is observed. Dilution of DySc2N@C80 samples with C60 increases the zero-field 4f electron relaxation time at 2 K to several hours.\"],\"language\":\"eng\",\"subjects\":[\"Metal Nitride Clusterfullerenes\",\"Ray Circular-Dichroism\",\"High-Spin Molecules\",\"Cluster Fullerenes\",\"Electronic-Properties\",\"Uranium(Iii) Complex\",\"Zero-Field\",\"Ion Magnet\",\"Magnetization\",\"Cage\"],\"creators\":[\"Westerström, Rasmus\",\"Dreiser, Jan\",\"Piamonteze, Cinthia\",\"Muntwiler, Matthias\",\"Weyeneth, Stephen\",\"Brune, Harald\",\"Rusponi, Stefano\",\"Nolting, Frithjof\",\"Popov, Alexey\",\"Yang, Shangfeng\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Infoscience - École polytechnique fédérale de Lausanne\"],\"pids\":[{\"value\":\"10.5167/uzh-75158\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://infoscience.epfl.ch/record/178329\",\"license\":\"OPEN\",\"hostedby\":\"Infoscience - École polytechnique fédérale de Lausanne\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.5167/uzh-75158\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Zurich Open Repository and Archive\",\"url\":\"http://www.zora.uzh.ch/75158/1/manuscript_DySc2N_resub_3_RasmusThomas.pdf\",\"id\":\"oai:www.zora.uzh.ch:75158\"},\"trust\":0.5603442}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Infoscience - École polytechnique fédérale de Lausanne"},"target_publication_id":{"type":"STRING","value":"oai:infoscience.epfl.ch:178329"},"target_publication_author_list":{"type":"LIST_STRING","value":["Westerström, Rasmus","Dreiser, Jan","Piamonteze, Cinthia","Muntwiler, Matthias","Weyeneth, Stephen","Brune, Harald","Rusponi, Stefano","Nolting, Frithjof","Popov, Alexey","Yang, Shangfeng"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.zora.uzh.ch:75158"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::0efe32849d230d7f53049ddc4a4b0c60"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Metal Nitride Clusterfullerenes","Ray Circular-Dichroism","High-Spin Molecules","Cluster Fullerenes","Electronic-Properties","Uranium(Iii) Complex","Zero-Field","Ion Magnet","Magnetization","Cage"]},"trust":{"type":"FLOAT","value":0.5603442},"target_publication_title":{"type":"STRING","value":"An Endohedral Single-Molecule Magnet with Long Relaxation Times: DySc_{2}N@C_{80}"},"provenance_datasource_name":{"type":"STRING","value":"Zurich Open Repository and Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::eecca5b6365d9607ee5a9d336962c534"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:infoscience.epfl.ch:178329\",\"titles\":[\"An Endohedral Single-Molecule Magnet with Long Relaxation Times: DySc_{2}N@C_{80}\"],\"abstracts\":[\"The magnetism of DySc2N@C80 endofullerene was studied with X-ray magnetic circular dichroism (XMCD) and a magnetometer with a superconducting quantum interference device (SQUID) down to temperatures of 2 K and in fields up to 7 T. XMCD shows hysteresis of the 4f spin and orbital moment in DyIII ions. SQUID magnetometry indicates hysteresis below 6 K, while thermal and nonthermal relaxation is observed. Dilution of DySc2N@C80 samples with C60 increases the zero-field 4f electron relaxation time at 2 K to several hours.\"],\"language\":\"eng\",\"subjects\":[\"Metal Nitride Clusterfullerenes\",\"Ray Circular-Dichroism\",\"High-Spin Molecules\",\"Cluster Fullerenes\",\"Electronic-Properties\",\"Uranium(Iii) Complex\",\"Zero-Field\",\"Ion Magnet\",\"Magnetization\",\"Cage\"],\"creators\":[\"Westerström, Rasmus\",\"Dreiser, Jan\",\"Piamonteze, Cinthia\",\"Muntwiler, Matthias\",\"Weyeneth, Stephen\",\"Brune, Harald\",\"Rusponi, Stefano\",\"Nolting, Frithjof\",\"Popov, Alexey\",\"Yang, Shangfeng\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Infoscience - École polytechnique fédérale de Lausanne\"],\"pids\":[{\"value\":\"10.1021/ja301044p\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://infoscience.epfl.ch/record/178329\",\"license\":\"OPEN\",\"hostedby\":\"Infoscience - École polytechnique fédérale de Lausanne\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1021/ja301044p\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Zurich Open Repository and Archive\",\"url\":\"http://www.zora.uzh.ch/75158/1/manuscript_DySc2N_resub_3_RasmusThomas.pdf\",\"id\":\"oai:www.zora.uzh.ch:75158\"},\"trust\":0.5603442}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Infoscience - École polytechnique fédérale de Lausanne"},"target_publication_id":{"type":"STRING","value":"oai:infoscience.epfl.ch:178329"},"target_publication_author_list":{"type":"LIST_STRING","value":["Westerström, Rasmus","Dreiser, Jan","Piamonteze, Cinthia","Muntwiler, Matthias","Weyeneth, Stephen","Brune, Harald","Rusponi, Stefano","Nolting, Frithjof","Popov, Alexey","Yang, Shangfeng"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.zora.uzh.ch:75158"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::0efe32849d230d7f53049ddc4a4b0c60"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Metal Nitride Clusterfullerenes","Ray Circular-Dichroism","High-Spin Molecules","Cluster Fullerenes","Electronic-Properties","Uranium(Iii) Complex","Zero-Field","Ion Magnet","Magnetization","Cage"]},"trust":{"type":"FLOAT","value":0.5603442},"target_publication_title":{"type":"STRING","value":"An Endohedral Single-Molecule Magnet with Long Relaxation Times: DySc_{2}N@C_{80}"},"provenance_datasource_name":{"type":"STRING","value":"Zurich Open Repository and Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::eecca5b6365d9607ee5a9d336962c534"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:infoscience.epfl.ch:178329\",\"titles\":[\"An Endohedral Single-Molecule Magnet with Long Relaxation Times: DySc_{2}N@C_{80}\"],\"abstracts\":[\"The magnetism of DySc2N@C80 endofullerene was studied with X-ray magnetic circular dichroism (XMCD) and a magnetometer with a superconducting quantum interference device (SQUID) down to temperatures of 2 K and in fields up to 7 T. XMCD shows hysteresis of the 4f spin and orbital moment in DyIII ions. SQUID magnetometry indicates hysteresis below 6 K, while thermal and nonthermal relaxation is observed. Dilution of DySc2N@C80 samples with C60 increases the zero-field 4f electron relaxation time at 2 K to several hours.\"],\"language\":\"eng\",\"subjects\":[\"Metal Nitride Clusterfullerenes\",\"Ray Circular-Dichroism\",\"High-Spin Molecules\",\"Cluster Fullerenes\",\"Electronic-Properties\",\"Uranium(Iii) Complex\",\"Zero-Field\",\"Ion Magnet\",\"Magnetization\",\"Cage\"],\"creators\":[\"Westerström, Rasmus\",\"Dreiser, Jan\",\"Piamonteze, Cinthia\",\"Muntwiler, Matthias\",\"Weyeneth, Stephen\",\"Brune, Harald\",\"Rusponi, Stefano\",\"Nolting, Frithjof\",\"Popov, Alexey\",\"Yang, Shangfeng\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Infoscience - École polytechnique fédérale de Lausanne\"],\"pids\":[{\"value\":\"10.5167/uzh-75158\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://infoscience.epfl.ch/record/178329\",\"license\":\"OPEN\",\"hostedby\":\"Infoscience - École polytechnique fédérale de Lausanne\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.5167/uzh-75158\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Zurich Open Repository and Archive\",\"url\":\"http://www.zora.uzh.ch/75158/1/manuscript_DySc2N_resub_3_RasmusThomas.pdf\",\"id\":\"oai:www.zora.uzh.ch:75158\"},\"trust\":0.5603442}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Infoscience - École polytechnique fédérale de Lausanne"},"target_publication_id":{"type":"STRING","value":"oai:infoscience.epfl.ch:178329"},"target_publication_author_list":{"type":"LIST_STRING","value":["Westerström, Rasmus","Dreiser, Jan","Piamonteze, Cinthia","Muntwiler, Matthias","Weyeneth, Stephen","Brune, Harald","Rusponi, Stefano","Nolting, Frithjof","Popov, Alexey","Yang, Shangfeng"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.zora.uzh.ch:75158"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::0efe32849d230d7f53049ddc4a4b0c60"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Metal Nitride Clusterfullerenes","Ray Circular-Dichroism","High-Spin Molecules","Cluster Fullerenes","Electronic-Properties","Uranium(Iii) Complex","Zero-Field","Ion Magnet","Magnetization","Cage"]},"trust":{"type":"FLOAT","value":0.5603442},"target_publication_title":{"type":"STRING","value":"An Endohedral Single-Molecule Magnet with Long Relaxation Times: DySc_{2}N@C_{80}"},"provenance_datasource_name":{"type":"STRING","value":"Zurich Open Repository and Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::eecca5b6365d9607ee5a9d336962c534"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:infoscience.epfl.ch:178329\",\"titles\":[\"An Endohedral Single-Molecule Magnet with Long Relaxation Times: DySc_{2}N@C_{80}\"],\"abstracts\":[\"The magnetism of DySc2N@C80 endofullerene was studied with X-ray magnetic circular dichroism (XMCD) and a magnetometer with a superconducting quantum interference device (SQUID) down to temperatures of 2 K and in fields up to 7 T. XMCD shows hysteresis of the 4f spin and orbital moment in DyIII ions. SQUID magnetometry indicates hysteresis below 6 K, while thermal and nonthermal relaxation is observed. Dilution of DySc2N@C80 samples with C60 increases the zero-field 4f electron relaxation time at 2 K to several hours.\"],\"language\":\"eng\",\"subjects\":[\"Metal Nitride Clusterfullerenes\",\"Ray Circular-Dichroism\",\"High-Spin Molecules\",\"Cluster Fullerenes\",\"Electronic-Properties\",\"Uranium(Iii) Complex\",\"Zero-Field\",\"Ion Magnet\",\"Magnetization\",\"Cage\"],\"creators\":[\"Westerström, Rasmus\",\"Dreiser, Jan\",\"Piamonteze, Cinthia\",\"Muntwiler, Matthias\",\"Weyeneth, Stephen\",\"Brune, Harald\",\"Rusponi, Stefano\",\"Nolting, Frithjof\",\"Popov, Alexey\",\"Yang, Shangfeng\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Infoscience - École polytechnique fédérale de Lausanne\"],\"pids\":[],\"instances\":[{\"url\":\"http://infoscience.epfl.ch/record/178329\",\"license\":\"OPEN\",\"hostedby\":\"Infoscience - École polytechnique fédérale de Lausanne\",\"instancetype\":\"Article\"},{\"url\":\"http://www.zora.uzh.ch/75158/1/manuscript_DySc2N_resub_3_RasmusThomas.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Zurich Open Repository and Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.zora.uzh.ch/75158/1/manuscript_DySc2N_resub_3_RasmusThomas.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Zurich Open Repository and Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Zurich Open Repository and Archive\",\"url\":\"http://www.zora.uzh.ch/75158/1/manuscript_DySc2N_resub_3_RasmusThomas.pdf\",\"id\":\"oai:www.zora.uzh.ch:75158\"},\"trust\":0.0044199824}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Infoscience - École polytechnique fédérale de Lausanne"},"target_publication_id":{"type":"STRING","value":"oai:infoscience.epfl.ch:178329"},"target_publication_author_list":{"type":"LIST_STRING","value":["Westerström, Rasmus","Dreiser, Jan","Piamonteze, Cinthia","Muntwiler, Matthias","Weyeneth, Stephen","Brune, Harald","Rusponi, Stefano","Nolting, Frithjof","Popov, Alexey","Yang, Shangfeng"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.zora.uzh.ch:75158"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::0efe32849d230d7f53049ddc4a4b0c60"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Metal Nitride Clusterfullerenes","Ray Circular-Dichroism","High-Spin Molecules","Cluster Fullerenes","Electronic-Properties","Uranium(Iii) Complex","Zero-Field","Ion Magnet","Magnetization","Cage"]},"trust":{"type":"FLOAT","value":0.0044199824},"target_publication_title":{"type":"STRING","value":"An Endohedral Single-Molecule Magnet with Long Relaxation Times: DySc_{2}N@C_{80}"},"provenance_datasource_name":{"type":"STRING","value":"Zurich Open Repository and Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::eecca5b6365d9607ee5a9d336962c534"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00894139\",\"titles\":[\"A Monte-Carlo algorithm for maximum likelihood estimation of variance components\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics\",\"[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale\"],\"creators\":[\"Xu, S.\",\"Atchley, Wr\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://www.gsejournal.org/content/28/4/329\",\"license\":\"OPEN\",\"hostedby\":\"Genetics Selection Evolution\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.gsejournal.org/content/28/4/329\",\"license\":\"OPEN\",\"hostedby\":\"Genetics Selection Evolution\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.gsejournal.org/content/28/4/329\",\"id\":\"oai:doaj.org/article:16de85fa75db4e588a13477c02ee62d5\"},\"trust\":0.7752616}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00894139"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xu, S.","Atchley, Wr"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:16de85fa75db4e588a13477c02ee62d5"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics","[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale"]},"trust":{"type":"FLOAT","value":0.7752616},"target_publication_title":{"type":"STRING","value":"A Monte-Carlo algorithm for maximum likelihood estimation of variance components"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00894139\",\"titles\":[\"A Monte-Carlo algorithm for maximum likelihood estimation of variance components\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics\",\"[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale\"],\"creators\":[\"Xu, S.\",\"Atchley, Wr\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00894139\",\"id\":\"oai:HAL:hal-00894139v1\"},\"trust\":0.5022599}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00894139"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xu, S.","Atchley, Wr"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00894139v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics","[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale"]},"trust":{"type":"FLOAT","value":0.5022599},"target_publication_title":{"type":"STRING","value":"A Monte-Carlo algorithm for maximum likelihood estimation of variance components"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00894139\",\"titles\":[\"A Monte-Carlo algorithm for maximum likelihood estimation of variance components\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics\",\"[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale\"],\"creators\":[\"Xu, S.\",\"Atchley, Wr\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"International audience\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00894139\",\"id\":\"oai:HAL:hal-00894139v1\"},\"trust\":0.25125688}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00894139"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xu, S.","Atchley, Wr"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00894139v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics","[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale"]},"trust":{"type":"FLOAT","value":0.25125688},"target_publication_title":{"type":"STRING","value":"A Monte-Carlo algorithm for maximum likelihood estimation of variance components"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00894139\",\"titles\":[\"A Monte-Carlo algorithm for maximum likelihood estimation of variance components\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics\",\"[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale\"],\"creators\":[\"Xu, S.\",\"Atchley, Wr\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1186/1297-9686-28-4-329\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1186/1297-9686-28-4-329\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2708272\",\"id\":\"oai:europepmc.org:1484869\"},\"trust\":0.4632969}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00894139"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xu, S.","Atchley, Wr"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1484869"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics","[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale"]},"trust":{"type":"FLOAT","value":0.4632969},"target_publication_title":{"type":"STRING","value":"A Monte-Carlo algorithm for maximum likelihood estimation of variance components"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00894139\",\"titles\":[\"A Monte-Carlo algorithm for maximum likelihood estimation of variance components\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics\",\"[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale\"],\"creators\":[\"Xu, S.\",\"Atchley, Wr\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"PMC2708272\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2708272\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2708272\",\"id\":\"oai:europepmc.org:1484869\"},\"trust\":0.4632969}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00894139"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xu, S.","Atchley, Wr"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1484869"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics","[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale"]},"trust":{"type":"FLOAT","value":0.4632969},"target_publication_title":{"type":"STRING","value":"A Monte-Carlo algorithm for maximum likelihood estimation of variance components"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00894139\",\"titles\":[\"A Monte-Carlo algorithm for maximum likelihood estimation of variance components\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics\",\"[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale\"],\"creators\":[\"Xu, S.\",\"Atchley, Wr\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1186/1297-9686-28-4-329\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1186/1297-9686-28-4-329\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2708272\",\"id\":\"oai:europepmc.org:1484869\"},\"trust\":0.4632969}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00894139"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xu, S.","Atchley, Wr"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1484869"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics","[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale"]},"trust":{"type":"FLOAT","value":0.4632969},"target_publication_title":{"type":"STRING","value":"A Monte-Carlo algorithm for maximum likelihood estimation of variance components"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00894139\",\"titles\":[\"A Monte-Carlo algorithm for maximum likelihood estimation of variance components\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics\",\"[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale\"],\"creators\":[\"Xu, S.\",\"Atchley, Wr\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"PMC2708272\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2708272\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2708272\",\"id\":\"oai:europepmc.org:1484869\"},\"trust\":0.4632969}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00894139"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xu, S.","Atchley, Wr"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1484869"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics","[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale"]},"trust":{"type":"FLOAT","value":0.4632969},"target_publication_title":{"type":"STRING","value":"A Monte-Carlo algorithm for maximum likelihood estimation of variance components"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00894139v1\",\"titles\":[\"A Monte-Carlo algorithm for maximum likelihood estimation of variance components\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics\"],\"creators\":[\"Xu, S.\",\"Atchley, Wr\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00894139\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00894139\"},\"trust\":0.91027814}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00894139v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xu, S.","Atchley, Wr"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00894139"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics"]},"trust":{"type":"FLOAT","value":0.91027814},"target_publication_title":{"type":"STRING","value":"A Monte-Carlo algorithm for maximum likelihood estimation of variance components"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00894139v1\",\"titles\":[\"A Monte-Carlo algorithm for maximum likelihood estimation of variance components\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics\"],\"creators\":[\"Xu, S.\",\"Atchley, Wr\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.gsejournal.org/content/28/4/329\",\"license\":\"OPEN\",\"hostedby\":\"Genetics Selection Evolution\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.gsejournal.org/content/28/4/329\",\"license\":\"OPEN\",\"hostedby\":\"Genetics Selection Evolution\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.gsejournal.org/content/28/4/329\",\"id\":\"oai:doaj.org/article:16de85fa75db4e588a13477c02ee62d5\"},\"trust\":0.49072772}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00894139v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xu, S.","Atchley, Wr"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:16de85fa75db4e588a13477c02ee62d5"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics"]},"trust":{"type":"FLOAT","value":0.49072772},"target_publication_title":{"type":"STRING","value":"A Monte-Carlo algorithm for maximum likelihood estimation of variance components"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00894139v1\",\"titles\":[\"A Monte-Carlo algorithm for maximum likelihood estimation of variance components\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics\"],\"creators\":[\"Xu, S.\",\"Atchley, Wr\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1186/1297-9686-28-4-329\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1186/1297-9686-28-4-329\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2708272\",\"id\":\"oai:europepmc.org:1484869\"},\"trust\":0.26417667}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00894139v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xu, S.","Atchley, Wr"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1484869"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics"]},"trust":{"type":"FLOAT","value":0.26417667},"target_publication_title":{"type":"STRING","value":"A Monte-Carlo algorithm for maximum likelihood estimation of variance components"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00894139v1\",\"titles\":[\"A Monte-Carlo algorithm for maximum likelihood estimation of variance components\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics\"],\"creators\":[\"Xu, S.\",\"Atchley, Wr\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"PMC2708272\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2708272\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2708272\",\"id\":\"oai:europepmc.org:1484869\"},\"trust\":0.26417667}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00894139v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xu, S.","Atchley, Wr"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1484869"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics"]},"trust":{"type":"FLOAT","value":0.26417667},"target_publication_title":{"type":"STRING","value":"A Monte-Carlo algorithm for maximum likelihood estimation of variance components"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00894139v1\",\"titles\":[\"A Monte-Carlo algorithm for maximum likelihood estimation of variance components\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics\"],\"creators\":[\"Xu, S.\",\"Atchley, Wr\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1186/1297-9686-28-4-329\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1186/1297-9686-28-4-329\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2708272\",\"id\":\"oai:europepmc.org:1484869\"},\"trust\":0.26417667}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00894139v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xu, S.","Atchley, Wr"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1484869"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics"]},"trust":{"type":"FLOAT","value":0.26417667},"target_publication_title":{"type":"STRING","value":"A Monte-Carlo algorithm for maximum likelihood estimation of variance components"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00894139v1\",\"titles\":[\"A Monte-Carlo algorithm for maximum likelihood estimation of variance components\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics\"],\"creators\":[\"Xu, S.\",\"Atchley, Wr\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"PMC2708272\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2708272\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2708272\",\"id\":\"oai:europepmc.org:1484869\"},\"trust\":0.26417667}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00894139v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xu, S.","Atchley, Wr"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1484869"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics"]},"trust":{"type":"FLOAT","value":0.26417667},"target_publication_title":{"type":"STRING","value":"A Monte-Carlo algorithm for maximum likelihood estimation of variance components"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1484869\",\"titles\":[\"A Monte-Carlo algorithm for maximum likelihood estimation of variance components\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Research\"],\"creators\":[\"Xu, S.\",\"Atchley, Wr\"],\"publicationdate\":\"1996-10-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Genetics, Selection, Evolution : GSE\",\"issn\":\"0999-193X\",\"eissn\":\"1297-9686\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1297-9686-28-4-329\",\"type\":\"doi\"},{\"value\":\"PMC2708272\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2708272\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00894139\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00894139\"},\"trust\":0.47663838}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1484869"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xu, S.","Atchley, Wr"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00894139"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research"]},"trust":{"type":"FLOAT","value":0.47663838},"target_publication_title":{"type":"STRING","value":"A Monte-Carlo algorithm for maximum likelihood estimation of variance components"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1996-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1484869\",\"titles\":[\"A Monte-Carlo algorithm for maximum likelihood estimation of variance components\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Research\"],\"creators\":[\"Xu, S.\",\"Atchley, Wr\"],\"publicationdate\":\"1996-10-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Genetics, Selection, Evolution : GSE\",\"issn\":\"0999-193X\",\"eissn\":\"1297-9686\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1297-9686-28-4-329\",\"type\":\"doi\"},{\"value\":\"PMC2708272\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2708272\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.gsejournal.org/content/28/4/329\",\"license\":\"OPEN\",\"hostedby\":\"Genetics Selection Evolution\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.gsejournal.org/content/28/4/329\",\"license\":\"OPEN\",\"hostedby\":\"Genetics Selection Evolution\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.gsejournal.org/content/28/4/329\",\"id\":\"oai:doaj.org/article:16de85fa75db4e588a13477c02ee62d5\"},\"trust\":0.2192837}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1484869"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xu, S.","Atchley, Wr"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:16de85fa75db4e588a13477c02ee62d5"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research"]},"trust":{"type":"FLOAT","value":0.2192837},"target_publication_title":{"type":"STRING","value":"A Monte-Carlo algorithm for maximum likelihood estimation of variance components"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"1996-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1484869\",\"titles\":[\"A Monte-Carlo algorithm for maximum likelihood estimation of variance components\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Research\"],\"creators\":[\"Xu, S.\",\"Atchley, Wr\"],\"publicationdate\":\"1996-10-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Genetics, Selection, Evolution : GSE\",\"issn\":\"0999-193X\",\"eissn\":\"1297-9686\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1297-9686-28-4-329\",\"type\":\"doi\"},{\"value\":\"PMC2708272\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2708272\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00894139\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00894139\",\"id\":\"oai:HAL:hal-00894139v1\"},\"trust\":0.47267187}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1484869"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xu, S.","Atchley, Wr"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00894139v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research"]},"trust":{"type":"FLOAT","value":0.47267187},"target_publication_title":{"type":"STRING","value":"A Monte-Carlo algorithm for maximum likelihood estimation of variance components"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1996-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1484869\",\"titles\":[\"A Monte-Carlo algorithm for maximum likelihood estimation of variance components\"],\"abstracts\":[\"International audience\"],\"language\":\"eng\",\"subjects\":[\"Research\"],\"creators\":[\"Xu, S.\",\"Atchley, Wr\"],\"publicationdate\":\"1996-10-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Genetics, Selection, Evolution : GSE\",\"issn\":\"0999-193X\",\"eissn\":\"1297-9686\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1297-9686-28-4-329\",\"type\":\"doi\"},{\"value\":\"PMC2708272\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2708272\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"International audience\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00894139\",\"id\":\"oai:HAL:hal-00894139v1\"},\"trust\":0.59508693}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1484869"},"target_publication_author_list":{"type":"LIST_STRING","value":["Xu, S.","Atchley, Wr"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00894139v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research"]},"trust":{"type":"FLOAT","value":0.59508693},"target_publication_title":{"type":"STRING","value":"A Monte-Carlo algorithm for maximum likelihood estimation of variance components"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1996-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:900625\",\"titles\":[\"Wind Energy Systems and Technologies, Aalborg University\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Wind Energy Systems\",\"Technologies\"],\"creators\":[\"Frigaard, Peter\"],\"publicationdate\":\"2008-01-23\",\"publisher\":\"Aalborg University. Department of Civil Engineering\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[],\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/13712531/Wind_Energy_Systems_and_Technologies\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Research\"},{\"url\":\"http://vbn.aau.dk/ws/files/13712531/Wind_Energy_Systems_and_Technologies\",\"license\":\"OPEN\",\"hostedby\":\"VBN\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/13712531/Wind_Energy_Systems_and_Technologies\",\"license\":\"OPEN\",\"hostedby\":\"VBN\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"VBN\",\"url\":\"http://vbn.aau.dk/ws/files/13712531/Wind_Energy_Systems_and_Technologies\",\"id\":\"oai:oai.forksningsdatabasen.dk:900625\"},\"trust\":0.53564775}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:900625"},"target_publication_author_list":{"type":"LIST_STRING","value":["Frigaard, Peter"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:900625"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8e2cfdc275761edc592f73a076197c33"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Wind Energy Systems","Technologies"]},"trust":{"type":"FLOAT","value":0.53564775},"target_publication_title":{"type":"STRING","value":"Wind Energy Systems and Technologies, Aalborg University"},"provenance_datasource_name":{"type":"STRING","value":"VBN"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-23"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:900625\",\"titles\":[\"Wind Energy Systems and Technologies, Aalborg University\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Wind Energy Systems\",\"Technologies\"],\"creators\":[\"Frigaard, Peter\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Aalborg University. Department of Civil Engineering\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"VBN\"],\"pids\":[],\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/13712531/Wind_Energy_Systems_and_Technologies\",\"license\":\"OPEN\",\"hostedby\":\"VBN\",\"instancetype\":\"Research\"},{\"url\":\"http://vbn.aau.dk/ws/files/13712531/Wind_Energy_Systems_and_Technologies\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/13712531/Wind_Energy_Systems_and_Technologies\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://vbn.aau.dk/ws/files/13712531/Wind_Energy_Systems_and_Technologies\",\"id\":\"oai:oai.forksningsdatabasen.dk:900625\"},\"trust\":0.113482}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"VBN"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:900625"},"target_publication_author_list":{"type":"LIST_STRING","value":["Frigaard, Peter"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:900625"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Wind Energy Systems","Technologies"]},"trust":{"type":"FLOAT","value":0.113482},"target_publication_title":{"type":"STRING","value":"Wind Energy Systems and Technologies, Aalborg University"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8e2cfdc275761edc592f73a076197c33"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:881242\",\"titles\":[\"Self Antigens Expressed by Solid Tumors Do Not Efficiently Stimulate Naive or Activated T Cells: Implications for Immunotherapy\"],\"abstracts\":[\"Induction and maintenance of cytotoxic T lymphocyte (CTL) activity specific for a primary endogenous tumor was investigated in vivo. The simian virus 40 T antigen (Tag) expressed under the control of the rat insulin promoter (RIP) induced pancreatic β-cell tumors producing insulin, causing progressive hypoglycemia. As an endogenous tumor antigen, the lymphocytic choriomeningitis virus (LCMV) glycoprotein (GP) was introduced also under the control of the RIP. No significant spontaneous CTL activation against GP was observed. However, LCMV infection induced an antitumor CTL response which efficiently reduced the tumor mass, resulting in temporarily normalized blood glucose levels and prolonged survival of double transgenic RIP(GP × Tag2) mice (137 ± 18 d) as opposed to control RIP-Tag2 mice (88 ± 8 d). Surprisingly, the tumor-specific CTL response was not sustained despite the facts that the tumor cells continued to express MHC class I and LCMV-GP–specific CTLs were present and not tolerized. Subsequent adoptive transfer of virus activated spleen cells into RIP(GP × Tag2) mice further prolonged survival (168 ± 11 d), demonstrating continued expression of the LCMV-GP tumor antigen and MHC class I. The data show that the tumor did not spontaneously induce or maintain an activated CTL response, revealing a profound lack of immunogenicity in vivo. Therefore, repetitive immunizations are necessary for prolonged antitumor immunotherapy. In addition, the data suggest that the risk for induction of chronic autoimmune diseases is limited, which may encourage immunotherapy against antigens selectively but not exclusively expressed by the tumor.\"],\"language\":\"eng\",\"subjects\":[\"Article\"],\"creators\":[\"Speiser, Daniel E.\",\"Miranda, Renata\",\"Zakarian, Arsen\",\"Bachmann, Martin F.\",\"Mckall-Faienza, Kim\",\"Odermatt, Bernhard\",\"Hanahan, Douglas\",\"Zinkernagel, Rolf M.\",\"Ohashi, Pamela S.\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"The Rockefeller University Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"The Journal of Experimental Medicine\",\"issn\":\"0022-1007\",\"eissn\":\"1540-9538\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC2199023\",\"type\":\"pmc\"},{\"value\":\"9271580\",\"type\":\"pmid\"},{\"value\":\"10.1084/jem.186.5.645\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2199023\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1084/jem.186.5.645\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:80e2bdd3-1cd9-4d2c-8ca8-f63de2573d50\",\"id\":\"oai:ora.ox.ac.uk:uuid:80e2bdd3-1cd9-4d2c-8ca8-f63de2573d50\"},\"trust\":0.42090452}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:881242"},"target_publication_author_list":{"type":"LIST_STRING","value":["Speiser, Daniel E.","Miranda, Renata","Zakarian, Arsen","Bachmann, Martin F.","Mckall-Faienza, Kim","Odermatt, Bernhard","Hanahan, Douglas","Zinkernagel, Rolf M.","Ohashi, Pamela S."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:80e2bdd3-1cd9-4d2c-8ca8-f63de2573d50"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article"]},"trust":{"type":"FLOAT","value":0.42090452},"target_publication_title":{"type":"STRING","value":"Self Antigens Expressed by Solid Tumors Do Not Efficiently Stimulate Naive or Activated T Cells: Implications for Immunotherapy"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:80e2bdd3-1cd9-4d2c-8ca8-f63de2573d50\",\"titles\":[\"Self antigens expressed by solid tumors Do not efficiently stimulate naive or activated T cells: implications for immunotherapy.\"],\"abstracts\":[\"Induction and maintenance of cytotoxic T lymphocyte (CTL) activity specific for a primary endogenous tumor was investigated in vivo. The simian virus 40 T antigen (Tag) expressed under the control of the rat insulin promoter (RIP) induced pancreatic beta-cell tumors producing insulin, causing progressive hypoglycemia. As an endogenous tumor antigen, the lymphocytic choriomeningitis virus (LCMV) glycoprotein (GP) was introduced also under the control of the RIP. No significant spontaneous CTL activation against GP was observed. However, LCMV infection induced an antitumor CTL response which efficiently reduced the tumor mass, resulting in temporarily normalized blood glucose levels and prolonged survival of double transgenic RIP(GP x Tag2) mice (137 +/- 18 d) as opposed to control RIP-Tag2 mice (88 +/- 8 d). Surprisingly, the tumor-specific CTL response was not sustained despite the facts that the tumor cells continued to express MHC class I and LCMV-GP-specific CTLs were present and not tolerized. Subsequent adoptive transfer of virus activated spleen cells into RIP(GP x Tag2) mice further prolonged survival (168 +/- 11 d), demonstrating continued expression of the LCMV-GP tumor antigen and MHC class I. The data show that the tumor did not spontaneously induce or maintain an activated CTL response, revealing a profound lack of immunogenicity in vivo. Therefore, repetitive immunizations are necessary for prolonged antitumor immunotherapy. In addition, the data suggest that the risk for induction of chronic autoimmune diseases is limited, which may encourage immunotherapy against antigens selectively but not exclusively expressed by the tumor.\"],\"language\":\"eng\",\"subjects\":[\"Animals\",\"Mice, Inbred C57BL\",\"Mice\",\"Rats\",\"Spleen\",\"Lymphocytic choriomeningitis virus\",\"T-Lymphocytes, Cytotoxic\",\"Lymphocytic Choriomeningitis\",\"Insulinoma\",\"Pancreatic Neoplasms\",\"Autoimmune Diseases\",\"Hypoglycemia\",\"Viral Proteins\",\"Glycoproteins\",\"Blood Glucose\",\"Antigens, Polyomavirus Transforming\",\"Immunotherapy\",\"Adoptive Transfer\",\"Antigens, Neoplasm\",\"Crosses, Genetic\",\"Lymphocyte Activation\",\"Genes, MHC Class I\",\"Mice, Transgenic\",\"Promoter Regions, Genetic\",\"Female\",\"Male\"],\"creators\":[\"Speiser, DE\",\"Miranda, R.\",\"Zakarian, A.\",\"Bachmann, Mf\",\"Mckall-Faienza, K.\",\"Odermatt, B.\",\"Hanahan, D.\",\"Zinkernagel, Rm\",\"Ohashi, Ps\"],\"publicationdate\":\"1997-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1084/jem.186.5.645\",\"type\":\"doi\"},{\"value\":\"PMC2199023\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:80e2bdd3-1cd9-4d2c-8ca8-f63de2573d50\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2199023\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2199023\",\"id\":\"oai:europepmc.org:881242\"},\"trust\":0.66574216}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:80e2bdd3-1cd9-4d2c-8ca8-f63de2573d50"},"target_publication_author_list":{"type":"LIST_STRING","value":["Speiser, DE","Miranda, R.","Zakarian, A.","Bachmann, Mf","Mckall-Faienza, K.","Odermatt, B.","Hanahan, D.","Zinkernagel, Rm","Ohashi, Ps"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:881242"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Animals","Mice, Inbred C57BL","Mice","Rats","Spleen","Lymphocytic choriomeningitis virus","T-Lymphocytes, Cytotoxic","Lymphocytic Choriomeningitis","Insulinoma","Pancreatic Neoplasms","Autoimmune Diseases","Hypoglycemia","Viral Proteins","Glycoproteins","Blood Glucose","Antigens, Polyomavirus Transforming","Immunotherapy","Adoptive Transfer","Antigens, Neoplasm","Crosses, Genetic","Lymphocyte Activation","Genes, MHC Class I","Mice, Transgenic","Promoter Regions, Genetic","Female","Male"]},"trust":{"type":"FLOAT","value":0.66574216},"target_publication_title":{"type":"STRING","value":"Self antigens expressed by solid tumors Do not efficiently stimulate naive or activated T cells: implications for immunotherapy."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"1997-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:80e2bdd3-1cd9-4d2c-8ca8-f63de2573d50\",\"titles\":[\"Self antigens expressed by solid tumors Do not efficiently stimulate naive or activated T cells: implications for immunotherapy.\"],\"abstracts\":[\"Induction and maintenance of cytotoxic T lymphocyte (CTL) activity specific for a primary endogenous tumor was investigated in vivo. The simian virus 40 T antigen (Tag) expressed under the control of the rat insulin promoter (RIP) induced pancreatic beta-cell tumors producing insulin, causing progressive hypoglycemia. As an endogenous tumor antigen, the lymphocytic choriomeningitis virus (LCMV) glycoprotein (GP) was introduced also under the control of the RIP. No significant spontaneous CTL activation against GP was observed. However, LCMV infection induced an antitumor CTL response which efficiently reduced the tumor mass, resulting in temporarily normalized blood glucose levels and prolonged survival of double transgenic RIP(GP x Tag2) mice (137 +/- 18 d) as opposed to control RIP-Tag2 mice (88 +/- 8 d). Surprisingly, the tumor-specific CTL response was not sustained despite the facts that the tumor cells continued to express MHC class I and LCMV-GP-specific CTLs were present and not tolerized. Subsequent adoptive transfer of virus activated spleen cells into RIP(GP x Tag2) mice further prolonged survival (168 +/- 11 d), demonstrating continued expression of the LCMV-GP tumor antigen and MHC class I. The data show that the tumor did not spontaneously induce or maintain an activated CTL response, revealing a profound lack of immunogenicity in vivo. Therefore, repetitive immunizations are necessary for prolonged antitumor immunotherapy. In addition, the data suggest that the risk for induction of chronic autoimmune diseases is limited, which may encourage immunotherapy against antigens selectively but not exclusively expressed by the tumor.\"],\"language\":\"eng\",\"subjects\":[\"Animals\",\"Mice, Inbred C57BL\",\"Mice\",\"Rats\",\"Spleen\",\"Lymphocytic choriomeningitis virus\",\"T-Lymphocytes, Cytotoxic\",\"Lymphocytic Choriomeningitis\",\"Insulinoma\",\"Pancreatic Neoplasms\",\"Autoimmune Diseases\",\"Hypoglycemia\",\"Viral Proteins\",\"Glycoproteins\",\"Blood Glucose\",\"Antigens, Polyomavirus Transforming\",\"Immunotherapy\",\"Adoptive Transfer\",\"Antigens, Neoplasm\",\"Crosses, Genetic\",\"Lymphocyte Activation\",\"Genes, MHC Class I\",\"Mice, Transgenic\",\"Promoter Regions, Genetic\",\"Female\",\"Male\"],\"creators\":[\"Speiser, DE\",\"Miranda, R.\",\"Zakarian, A.\",\"Bachmann, Mf\",\"Mckall-Faienza, K.\",\"Odermatt, B.\",\"Hanahan, D.\",\"Zinkernagel, Rm\",\"Ohashi, Ps\"],\"publicationdate\":\"1997-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1084/jem.186.5.645\",\"type\":\"doi\"},{\"value\":\"9271580\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:80e2bdd3-1cd9-4d2c-8ca8-f63de2573d50\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"9271580\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2199023\",\"id\":\"oai:europepmc.org:881242\"},\"trust\":0.66574216}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:80e2bdd3-1cd9-4d2c-8ca8-f63de2573d50"},"target_publication_author_list":{"type":"LIST_STRING","value":["Speiser, DE","Miranda, R.","Zakarian, A.","Bachmann, Mf","Mckall-Faienza, K.","Odermatt, B.","Hanahan, D.","Zinkernagel, Rm","Ohashi, Ps"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:881242"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Animals","Mice, Inbred C57BL","Mice","Rats","Spleen","Lymphocytic choriomeningitis virus","T-Lymphocytes, Cytotoxic","Lymphocytic Choriomeningitis","Insulinoma","Pancreatic Neoplasms","Autoimmune Diseases","Hypoglycemia","Viral Proteins","Glycoproteins","Blood Glucose","Antigens, Polyomavirus Transforming","Immunotherapy","Adoptive Transfer","Antigens, Neoplasm","Crosses, Genetic","Lymphocyte Activation","Genes, MHC Class I","Mice, Transgenic","Promoter Regions, Genetic","Female","Male"]},"trust":{"type":"FLOAT","value":0.66574216},"target_publication_title":{"type":"STRING","value":"Self antigens expressed by solid tumors Do not efficiently stimulate naive or activated T cells: implications for immunotherapy."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"1997-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cdl:itsrrp:102760\",\"titles\":[\"Traveler Response to Innovative Personalized Demand-Responsive Transit in the San Francisco Bay Area\"],\"abstracts\":[\"Urban sprawl makes conventional transit less competitive and points to the need for more innovative and flexible demand-responsive transit systems in the future. To increase their efficiency, such systems can take advantage of the emerging advanced public transportation systems technologies, e.g., vehicle location and information systems. However, little is known about how consumers might respond to such systems and what they desire. This paper explores the demand for a consumer-oriented Personalized Demand Responsive Transit (PDRT) service in the San Francisco Bay Area. Such a system could provide services to the traveling public for journeys to work and to non-work destinations. Results from six focus group meetings and a computer-assisted telephone survey of commuters and non-commuters are reported. While about 60% of those surveyed were willing to consider PDRT as an option, about 12% reported that they were \\\"very likely\\\" to use PDRT (N\\u003d1000). Many were willing to pay for the service and valued highly the flexibility in scheduling the service. Spatial analysis of the survey responses suggests localities where a PDRT may be field-tested.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Khattak, Asad J.\",\"Yim, Youngbin\"],\"publicationdate\":\"2003-03-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/5j3845mz.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.escholarship.org/uc/item/5j3845mz.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/5j3845mz.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.escholarship.org/uc/item/5j3845mz.pdf;origin\\u003drepeccitec\",\"id\":\"oai:RePEc:cdl:itsrrp:qt5j3845mz\"},\"trust\":0.6400034}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cdl:itsrrp:102760"},"target_publication_author_list":{"type":"LIST_STRING","value":["Khattak, Asad J.","Yim, Youngbin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cdl:itsrrp:qt5j3845mz"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.6400034},"target_publication_title":{"type":"STRING","value":"Traveler Response to Innovative Personalized Demand-Responsive Transit in the San Francisco Bay Area"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2003-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cdl:itsrrp:qt5j3845mz\",\"titles\":[\"Traveler Response to Innovative Personalized Demand-Responsive Transit in the San Francisco Bay Area\"],\"abstracts\":[\"Urban sprawl makes conventional transit less competitive and points to the need for more innovative and flexible demand-responsive transit systems in the future. To increase their efficiency, such systems can take advantage of the emerging advanced public transportation systems technologies, e.g., vehicle location and information systems. However, little is known about how consumers might respond to such systems and what they desire. This paper explores the demand for a consumer-oriented Personalized Demand Responsive Transit (PDRT) service in the San Francisco Bay Area. Such a system could provide services to the traveling public for journeys to work and to non-work destinations. Results from six focus group meetings and a computer-assisted telephone survey of commuters and non-commuters are reported. While about 60% of those surveyed were willing to consider PDRT as an option, about 12% reported that they were \\\"very likely\\\" to use PDRT (N\\u003d1000). Many were willing to pay for the service and valued highly the flexibility in scheduling the service. Spatial analysis of the survey responses suggests localities where a PDRT may be field-tested.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Khattak, Asad J.\",\"Yim, Youngbin\"],\"publicationdate\":\"2003-03-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/5j3845mz.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.escholarship.org/uc/item/5j3845mz.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/5j3845mz.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.escholarship.org/uc/item/5j3845mz.pdf;origin\\u003drepeccitec\",\"id\":\"oai:RePEc:cdl:itsrrp:102760\"},\"trust\":0.572196}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cdl:itsrrp:qt5j3845mz"},"target_publication_author_list":{"type":"LIST_STRING","value":["Khattak, Asad J.","Yim, Youngbin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cdl:itsrrp:102760"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.572196},"target_publication_title":{"type":"STRING","value":"Traveler Response to Innovative Personalized Demand-Responsive Transit in the San Francisco Bay Area"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2003-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:UP:etd-11302009-172621\",\"titles\":[\"A memorable landscape : creating a landscape using ecological design and landscape narrative principles in the Faerie Glen Nature Reserve\"],\"abstracts\":[\"\\u003cp\\u003eThis thesis explores ways in which open space can be made memorable through the application of ecological design and landscape narrative principles.\\u003c/p\\u003e\\n\\u003cp\\u003eThe Faerie Glen Nature Reserve is located in the predominantly residential eastern suburbs of Pretoria and has been identified as an important open space due to its unique ecological sensitivity.\\u003c/p\\u003e\\n\\u003cp\\u003eThe hypothesis argues that through an understanding of the landscape narrative, interventions can be made in the reserve that will not negatively affect the ecological importance or the visual aesthetic of the reserve. These interventions will contribute to making a memorable landscape by reinforcing its beauty and genius loci.\\u003c/p\\u003e\\n\\u003cp\\u003eThe interventions in the reserve should increase the daily use of the Faerie Glen Nature Reserve and thus promote the reserve as a sustainable open space while preserving its ecological importance.\\u003c/p\\u003e\\n\\u003cp\\u003eCopyright © 2009, University of Pretoria. All rights reserved. The copyright in this work vests in the University of Pretoria. No part of this work may be reproduced or transmitted in any form or by any means, without the prior written permission of the University of Pretoria\\u003c/p\\u003e\\n\\u003cp\\u003e\\u003cu\\u003ePlease cite as follows:\\u003c/u\\u003e\\u003c/p\\u003e\\n\\u003cp\\u003eFrench, JA 2009, \\u003ci\\u003eA memorable landscape : creating a landscape using ecological design and landscape narrative principles in the Faerie Glen Nature Reserve\\u003c/i\\u003e, ML(Prof) dissertation, University of Pretoria, Pretoria, viewed \\u003ci\\u003eyymmdd\\u003c/i\\u003e \\u003c http://upetd.up.ac.za/thesis/available/etd-11302009-172621/ \\u003e\\u003c/p\\u003e\\nC10/44/gm\"],\"language\":\"und\",\"subjects\":[\"Architecture\"],\"creators\":[\"French, James Aubrey\"],\"publicationdate\":\"2010-02-03\",\"publisher\":\"University of Pretoria\",\"embargoenddate\":\"\",\"contributor\":[\"Mr G Young\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"University of Pretoria Electronic Theses and Dissertations\"],\"pids\":[],\"instances\":[{\"url\":\"http://upetd.up.ac.za/thesis/available/etd-11302009-172621/\",\"license\":\"OPEN\",\"hostedby\":\"University of Pretoria Electronic Theses and Dissertations\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/2263/29959\",\"license\":\"OPEN\",\"hostedby\":\"UPSpace at the University of Pretoria\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2263/29959\",\"license\":\"OPEN\",\"hostedby\":\"UPSpace at the University of Pretoria\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"UPSpace at the University of Pretoria\",\"url\":\"http://hdl.handle.net/2263/29959\",\"id\":\"oai:repository.up.ac.za:2263/29959\"},\"trust\":0.3820657}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"University of Pretoria Electronic Theses and Dissertations"},"target_publication_id":{"type":"STRING","value":"oai:UP:etd-11302009-172621"},"target_publication_author_list":{"type":"LIST_STRING","value":["French, James Aubrey"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repository.up.ac.za:2263/29959"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::291597a100aadd814d197af4f4bab3a7"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Architecture"]},"trust":{"type":"FLOAT","value":0.3820657},"target_publication_title":{"type":"STRING","value":"A memorable landscape : creating a landscape using ecological design and landscape narrative principles in the Faerie Glen Nature Reserve"},"provenance_datasource_name":{"type":"STRING","value":"UPSpace at the University of Pretoria"},"target_dateofacceptance":{"type":"DATE","value":"2010-02-03"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b3967a0e938dc2a6340e258630febd5a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.up.ac.za:2263/29959\",\"titles\":[\"A memorable landscape : creating a landscape using ecological design and landscape narrative principles in the Faerie Glen Nature Reserve\"],\"abstracts\":[\"This thesis explores ways in which open space can be made memorable through the application of ecological design and landscape narrative principles. The Faerie Glen Nature Reserve is located in the predominantly residential eastern suburbs of Pretoria and has been identified as an important open space due to its unique ecological sensitivity. The hypothesis argues that through an understanding of the landscape narrative, interventions can be made in the reserve that will not negatively affect the ecological importance or the visual aesthetic of the reserve. These interventions will contribute to making a memorable landscape by reinforcing its beauty and genius loci. The interventions in the reserve should increase the daily use of the Faerie Glen Nature Reserve and thus promote the reserve as a sustainable open space while preserving its ecological importance. Copyright\"],\"language\":\"und\",\"subjects\":[\"Memorable landscape\",\"Faerie glen nature reserve\",\"Landscape narrative\",\"Ecological design\"],\"creators\":[\"French, James Aubrey\"],\"publicationdate\":\"2009-11-30\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Mr G Young\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UPSpace at the University of Pretoria\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2263/29959\",\"license\":\"OPEN\",\"hostedby\":\"UPSpace at the University of Pretoria\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"http://upetd.up.ac.za/thesis/available/etd-11302009-172621/\",\"license\":\"OPEN\",\"hostedby\":\"University of Pretoria Electronic Theses and Dissertations\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://upetd.up.ac.za/thesis/available/etd-11302009-172621/\",\"license\":\"OPEN\",\"hostedby\":\"University of Pretoria Electronic Theses and Dissertations\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"University of Pretoria Electronic Theses and Dissertations\",\"url\":\"http://upetd.up.ac.za/thesis/available/etd-11302009-172621/\",\"id\":\"oai:UP:etd-11302009-172621\"},\"trust\":0.39301574}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UPSpace at the University of Pretoria"},"target_publication_id":{"type":"STRING","value":"oai:repository.up.ac.za:2263/29959"},"target_publication_author_list":{"type":"LIST_STRING","value":["French, James Aubrey"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:UP:etd-11302009-172621"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b3967a0e938dc2a6340e258630febd5a"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Memorable landscape","Faerie glen nature reserve","Landscape narrative","Ecological design"]},"trust":{"type":"FLOAT","value":0.39301574},"target_publication_title":{"type":"STRING","value":"A memorable landscape : creating a landscape using ecological design and landscape narrative principles in the Faerie Glen Nature Reserve"},"provenance_datasource_name":{"type":"STRING","value":"University of Pretoria Electronic Theses and Dissertations"},"target_dateofacceptance":{"type":"DATE","value":"2009-11-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::291597a100aadd814d197af4f4bab3a7"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:aea:aecrev:v:66:y:1976:i:4:p:688-91\",\"titles\":[\"The Dynamics of Inflation in Latin America: Comment.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Betancourt, Roger R.\"],\"publicationdate\":\"1976-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"American Economic Review\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://links.jstor.org/sici?sici\\u003d0002-8282%28197609%2966%3A4%3C688%3ATDOIIL%3E2.0.CO%3B2-5\\u0026origin\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://links.jstor.org/sici?sici\\u003d0002-8282%28197609%2966%3A4%3C692%3ATDOIIL%3E2.0.CO%3B2-8\\u0026origin\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://links.jstor.org/sici?sici\\u003d0002-8282%28197609%2966%3A4%3C692%3ATDOIIL%3E2.0.CO%3B2-8\\u0026origin\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://links.jstor.org/sici?sici\\u003d0002-8282%28197609%2966%3A4%3C692%3ATDOIIL%3E2.0.CO%3B2-8\\u0026origin\\u003drepec\",\"id\":\"oai:RePEc:aea:aecrev:v:66:y:1976:i:4:p:692-94\"},\"trust\":0.1799246}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:aea:aecrev:v:66:y:1976:i:4:p:688-91"},"target_publication_author_list":{"type":"LIST_STRING","value":["Betancourt, Roger R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:aea:aecrev:v:66:y:1976:i:4:p:692-94"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.1799246},"target_publication_title":{"type":"STRING","value":"The Dynamics of Inflation in Latin America: Comment."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1976-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:aea:aecrev:v:66:y:1976:i:4:p:692-94\",\"titles\":[\"The Dynamics of Inflation in Latin America: Comment.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sheehey, Edmund J.\"],\"publicationdate\":\"1976-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"American Economic Review\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://links.jstor.org/sici?sici\\u003d0002-8282%28197609%2966%3A4%3C692%3ATDOIIL%3E2.0.CO%3B2-8\\u0026origin\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://links.jstor.org/sici?sici\\u003d0002-8282%28197609%2966%3A4%3C688%3ATDOIIL%3E2.0.CO%3B2-5\\u0026origin\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://links.jstor.org/sici?sici\\u003d0002-8282%28197609%2966%3A4%3C688%3ATDOIIL%3E2.0.CO%3B2-5\\u0026origin\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://links.jstor.org/sici?sici\\u003d0002-8282%28197609%2966%3A4%3C688%3ATDOIIL%3E2.0.CO%3B2-5\\u0026origin\\u003drepec\",\"id\":\"oai:RePEc:aea:aecrev:v:66:y:1976:i:4:p:688-91\"},\"trust\":0.36312968}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:aea:aecrev:v:66:y:1976:i:4:p:692-94"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sheehey, Edmund J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:aea:aecrev:v:66:y:1976:i:4:p:688-91"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.36312968},"target_publication_title":{"type":"STRING","value":"The Dynamics of Inflation in Latin America: Comment."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1976-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:open.ac.uk.OAI2:8724\",\"titles\":[\"Trace element signatures of trapped KREEP in Olivine-rich clasts within lunar meteorite NWA773\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bridges, John\",\"Jeffries, T. E.\",\"Grady, Monica\"],\"publicationdate\":\"2002-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Open Research Online\"],\"pids\":[],\"instances\":[{\"url\":\"http://oro.open.ac.uk/8724/\",\"license\":\"OPEN\",\"hostedby\":\"Open Research Online\",\"instancetype\":\"Conference object\"},{\"url\":\"http://oro.open.ac.uk/8724/1/Trace_element_signatures_of_trapped_KREEP_in_Olivine-rich_clasts.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Open Research Online\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://oro.open.ac.uk/8724/1/Trace_element_signatures_of_trapped_KREEP_in_Olivine-rich_clasts.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Open Research Online\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://oro.open.ac.uk/8724/1/Trace_element_signatures_of_trapped_KREEP_in_Olivine-rich_clasts.pdf\",\"id\":\"oai:open.ac.uk.OAI2:8724\"},\"trust\":0.9942674}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Open Research Online"},"target_publication_id":{"type":"STRING","value":"oai:open.ac.uk.OAI2:8724"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bridges, John","Jeffries, T. E.","Grady, Monica"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:open.ac.uk.OAI2:8724"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"trust":{"type":"FLOAT","value":0.9942674},"target_publication_title":{"type":"STRING","value":"Trace element signatures of trapped KREEP in Olivine-rich clasts within lunar meteorite NWA773"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2002-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::94f6d7e04a4d452035300f18b984988c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3546837\",\"titles\":[\"Esophageal Cancer: Insights From Mouse Models\"],\"abstracts\":[\"Esophageal cancer is the eighth leading cause of cancer and the sixth most common cause of cancer-related death worldwide. Despite recent advances in the development of surgical techniques in combination with the use of radiotherapy and chemotherapy, the prognosis for esophageal cancer remains poor. The cellular and molecular mechanisms that drive the pathogenesis of esophageal cancer are still poorly understood. Hence, understanding these mechanisms is crucial to improving outcomes for patients with esophageal cancer. Mouse models constitute valuable tools for modeling human cancers and for the preclinical testing of therapeutic strategies in a manner not possible in human subjects. Mice are excellent models for studying human cancers because they are similar to humans at the physiological and molecular levels and because they have a shorter gestation time and life cycle. Moreover, a wide range of well-developed technologies for introducing genetic modifications into mice are currently available. In this review, we describe how different mouse models are used to study esophageal cancer.\"],\"language\":\"eng\",\"subjects\":[\"Review\",\"esophagus\",\"squamous cell cancer\",\"adenocarcinoma\",\"xenograft\",\"tumor formation\",\"mouse models\"],\"creators\":[\"Tétreault, Marie-Pier\"],\"publicationdate\":\"2015-08-01\",\"publisher\":\"Libertas Academica\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Cancer Growth and Metastasis\",\"issn\":\"\",\"eissn\":\"1179-0644\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4137/CGM.S21218\",\"type\":\"doi\"},{\"value\":\"PMC4558891\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4558891\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.la-press.com/esophageal-cancer-insights-from-mouse-models-article-a5006\",\"license\":\"OPEN\",\"hostedby\":\"Cancer Growth and Metastasis\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.la-press.com/esophageal-cancer-insights-from-mouse-models-article-a5006\",\"license\":\"OPEN\",\"hostedby\":\"Cancer Growth and Metastasis\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.la-press.com/esophageal-cancer-insights-from-mouse-models-article-a5006\",\"id\":\"oai:doaj.org/article:76b6b452d668460fbf92ab49dd3a63ff\"},\"trust\":0.79491585}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3546837"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tétreault, Marie-Pier"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:76b6b452d668460fbf92ab49dd3a63ff"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Review","esophagus","squamous cell cancer","adenocarcinoma","xenograft","tumor formation","mouse models"]},"trust":{"type":"FLOAT","value":0.79491585},"target_publication_title":{"type":"STRING","value":"Esophageal Cancer: Insights From Mouse Models"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2015-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3582223\",\"titles\":[\"A rare combination between familial multiple lipomatosis and extragastrointestinal stromal tumor\"],\"abstracts\":[\"Highlights • Familial multiple lipomatosis (FML) is a rare hereditary benign disease. • The origin of extra-gastrointestinal stromal tumors (EGISTs) remains controversial. • EGISTs and cells of Cajal have similar features—the expression of CD117 and CD34. • Surgical resection is the standard treatment of EGISTs. • Targeted medical therapy of EGISTs by tyrosine kinase inhibitors can be useful.\",\"Introduction Gastrointestinal stromal tumors (GISTs) are the most common mesenchymal tumors of the gastrointestinal tract. Rarely, GISTs can be located in mesentery, retroperitoneal space, omentum or pancreas. In these cases, the neoplasm is defined as “extra-gastrointestinal stromal tumors” (EGISTs). Presentation of case We reported a case of a 63-year-old male patient diagnosed by computer tomography with large intraabdominal tumor with vague origin, postoperatively determined as an EGIST. The diagnosis was confirmed by immunohistochemical study. The patient had multiple, subcutaneous, painless lipomas localized in the arms, forearms, thighs, abdomen and thorax. Because of the family history and the clinical presentation the disease was determined as familial multiple lipomatosis (FML). We performed radical tumor resection with distal pancreatectomy and splenectomy, and abdominoplasty, removing redundant skin and underlying subcutaneous fat tissue with multiple lipomas. Discussion FML is a rare hereditary benign disease. On the other hand, only few cases with familial GIST have been reported. In cases with extensive abdominal involvement, the primary origin of EGIST may be impossible to determine so the differential diagnosis is very difficult. Conclusion Although we could not prove correlation between the observed diseases, they are extremely rare and their combination is unusual which makes the presented case valuable and interesting.\"],\"language\":\"eng\",\"subjects\":[\"Case Report\",\"GISTs, gastrointestinal stromal tumors\",\"EGIST, extragastrointestinal stromal tumor\",\"FML, familial multiple lipomatosis\",\"CT, computer tomography\",\"H\\u0026E, hematoxylin and eosin\",\"NCCN, National Comprehensive Cancer Network\",\"Extragastrointestinal stromal tumor\",\"Familial multiple lipomatosis\",\"Radical resection\",\"CD117\",\"CD34\"],\"creators\":[\"Arabadzhieva, Elena\",\"Yonkov, Atanas\",\"Bonev, Sasho\",\"Bulanov, Dimitar\",\"Taneva, Ivanka\",\"Ivanova, Vesela\",\"Dimitrova, Violeta\"],\"publicationdate\":\"2015-07-01\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"International Journal of Surgery Case Reports\",\"issn\":\"\",\"eissn\":\"2210-2612\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1016/j.ijscr.2015.07.027\",\"type\":\"doi\"},{\"value\":\"PMC4573610\",\"type\":\"pmc\"},{\"value\":\"26263450\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4573610\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.sciencedirect.com/science/article/pii/S221026121500334X\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.sciencedirect.com/science/article/pii/S221026121500334X\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.sciencedirect.com/science/article/pii/S221026121500334X\",\"id\":\"oai:doaj.org/article:83d5fb4062294d36ba8af15c033b239e\"},\"trust\":0.31759733}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3582223"},"target_publication_author_list":{"type":"LIST_STRING","value":["Arabadzhieva, Elena","Yonkov, Atanas","Bonev, Sasho","Bulanov, Dimitar","Taneva, Ivanka","Ivanova, Vesela","Dimitrova, Violeta"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:83d5fb4062294d36ba8af15c033b239e"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Case Report","GISTs, gastrointestinal stromal tumors","EGIST, extragastrointestinal stromal tumor","FML, familial multiple lipomatosis","CT, computer tomography","H\u0026E, hematoxylin and eosin","NCCN, National Comprehensive Cancer Network","Extragastrointestinal stromal tumor","Familial multiple lipomatosis","Radical resection","CD117","CD34"]},"trust":{"type":"FLOAT","value":0.31759733},"target_publication_title":{"type":"STRING","value":"A rare combination between familial multiple lipomatosis and extragastrointestinal stromal tumor"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2015-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:zbw:sfb475:200468\",\"titles\":[\"Determination of Relevant Frequencies and Modeling Varying Amplitudes of Harmonic Processes\"],\"abstracts\":[\"When a process is dominated by few important frequencies the observations of this process can be modelled by a harmonic process (Bloomfield (2000)). If the amplitudes of these dominating frequencies vary over time their dominance may not be apparent during the whole process. To discriminate between frequencies relevant for such a process we determine the distribution of the periodogram ordinates, and use this distribution to derive a procedure to assess the relevance of the frequencies. This procedure uses the standardized median (Gather and Schultze (1999)) to determine the variance of the error process. In a simulation study we show that this procedure is very efficient even under difficult conditions such as a low signal-to-noise ratio or AR(1) disturbances. Furthermore, we show that the necessary transformation to estimate the amplitudes from periodogram ordinates leads to a good normality approximation which makes it especially easy to model the development of the amplitudes from these estimates.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Theis, Winfried\",\"Weihs, Claus\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/22581/1/tr68-04.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/22581\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/22581\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/22581\",\"id\":\"oai:econstor.eu:10419/22581\"},\"trust\":0.30898535}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:zbw:sfb475:200468"},"target_publication_author_list":{"type":"LIST_STRING","value":["Theis, Winfried","Weihs, Claus"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/22581"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"trust":{"type":"FLOAT","value":0.30898535},"target_publication_title":{"type":"STRING","value":"Determination of Relevant Frequencies and Modeling Varying Amplitudes of Harmonic Processes"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/22581\",\"titles\":[\"Determination of Relevant Frequencies and Modeling Varying Amplitudes of Harmonic Processes\"],\"abstracts\":[\"When a process is dominated by few important frequencies the observations of this process can be modelled by a harmonic process (Bloomfield (2000)). If the amplitudes of these dominating frequencies vary over time their dominance may not be apparent during the whole process. To discriminate between frequencies relevant for such a process we determine the distribution of the periodogram ordinates, and use this distribution to derive a procedure to assess the relevance of the frequencies. This procedure uses the standardized median (Gather and Schultze (1999)) to determine the variance of the error process. In a simulation study we show that this procedure is very efficient even under difficult conditions such as a low signal-to-noise ratio or AR(1) disturbances. Furthermore, we show that the necessary transformation to estimate the amplitudes from periodogram ordinates leads to a good normality approximation which makes it especially easy to model the development of the amplitudes from these estimates.\"],\"language\":\"eng\",\"subjects\":[\"ddc:310\"],\"creators\":[\"Theis, Winfried\",\"Weihs, Claus\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/22581\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://econstor.eu/bitstream/10419/22581/1/tr68-04.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/22581/1/tr68-04.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econstor.eu/bitstream/10419/22581/1/tr68-04.pdf\",\"id\":\"oai:RePEc:zbw:sfb475:200468\"},\"trust\":0.2657497}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/22581"},"target_publication_author_list":{"type":"LIST_STRING","value":["Theis, Winfried","Weihs, Claus"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:zbw:sfb475:200468"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:310"]},"trust":{"type":"FLOAT","value":0.2657497},"target_publication_title":{"type":"STRING","value":"Determination of Relevant Frequencies and Modeling Varying Amplitudes of Harmonic Processes"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00896822v1\",\"titles\":[\"VARIATIONS DE LA TENEUR EN ACIDES GRAS VOLATILS (AGV) DU SANG PÉRIPHÉRIQUE, CHEZ LE CHEVAL, EN FONCTION DU RÉGIME ALIMENTAIRE ET DE L\\u0027ACTIVITÉ MUSCULAIRE\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.BA] Life Sciences/Animal biology\",\"[SDV.BBM.BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules\",\"[SDV.BBM.BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics\"],\"creators\":[\"Jean-Blain, C.\"],\"publicationdate\":\"1973-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00896822\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00896822\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00896822\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00896822\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00896822\"},\"trust\":0.8111264}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00896822v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jean-Blain, C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00896822"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.BA] Life Sciences/Animal biology","[SDV.BBM.BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules","[SDV.BBM.BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics"]},"trust":{"type":"FLOAT","value":0.8111264},"target_publication_title":{"type":"STRING","value":"VARIATIONS DE LA TENEUR EN ACIDES GRAS VOLATILS (AGV) DU SANG PÉRIPHÉRIQUE, CHEZ LE CHEVAL, EN FONCTION DU RÉGIME ALIMENTAIRE ET DE L\u0027ACTIVITÉ MUSCULAIRE"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1973-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00896822\",\"titles\":[\"VARIATIONS DE LA TENEUR EN ACIDES GRAS VOLATILS (AGV) DU SANG PÉRIPHÉRIQUE, CHEZ LE CHEVAL, EN FONCTION DU RÉGIME ALIMENTAIRE ET DE L\\u0027ACTIVITÉ MUSCULAIRE\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:BA] Life Sciences/Animal biology\",\"[SDV:BA] Sciences du Vivant/Biologie animale\",\"[SDV:BBM:BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules\",\"[SDV:BBM:BC] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biochimie\",\"[SDV:BBM:BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics\",\"[SDV:BBM:BP] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biophysique\"],\"creators\":[\"Jean-Blain, C.\"],\"publicationdate\":\"1973-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00896822\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00896822\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00896822\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00896822\",\"id\":\"oai:HAL:hal-00896822v1\"},\"trust\":0.0898999}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00896822"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jean-Blain, C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00896822v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BA] Life Sciences/Animal biology","[SDV:BA] Sciences du Vivant/Biologie animale","[SDV:BBM:BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules","[SDV:BBM:BC] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biochimie","[SDV:BBM:BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics","[SDV:BBM:BP] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biophysique"]},"trust":{"type":"FLOAT","value":0.0898999},"target_publication_title":{"type":"STRING","value":"VARIATIONS DE LA TENEUR EN ACIDES GRAS VOLATILS (AGV) DU SANG PÉRIPHÉRIQUE, CHEZ LE CHEVAL, EN FONCTION DU RÉGIME ALIMENTAIRE ET DE L\u0027ACTIVITÉ MUSCULAIRE"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1973-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00896822\",\"titles\":[\"VARIATIONS DE LA TENEUR EN ACIDES GRAS VOLATILS (AGV) DU SANG PÉRIPHÉRIQUE, CHEZ LE CHEVAL, EN FONCTION DU RÉGIME ALIMENTAIRE ET DE L\\u0027ACTIVITÉ MUSCULAIRE\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:BA] Life Sciences/Animal biology\",\"[SDV:BA] Sciences du Vivant/Biologie animale\",\"[SDV:BBM:BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules\",\"[SDV:BBM:BC] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biochimie\",\"[SDV:BBM:BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics\",\"[SDV:BBM:BP] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biophysique\"],\"creators\":[\"Jean-Blain, C.\"],\"publicationdate\":\"1973-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00896822\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"International audience\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00896822\",\"id\":\"oai:HAL:hal-00896822v1\"},\"trust\":0.09623349}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00896822"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jean-Blain, C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00896822v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BA] Life Sciences/Animal biology","[SDV:BA] Sciences du Vivant/Biologie animale","[SDV:BBM:BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules","[SDV:BBM:BC] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biochimie","[SDV:BBM:BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics","[SDV:BBM:BP] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biophysique"]},"trust":{"type":"FLOAT","value":0.09623349},"target_publication_title":{"type":"STRING","value":"VARIATIONS DE LA TENEUR EN ACIDES GRAS VOLATILS (AGV) DU SANG PÉRIPHÉRIQUE, CHEZ LE CHEVAL, EN FONCTION DU RÉGIME ALIMENTAIRE ET DE L\u0027ACTIVITÉ MUSCULAIRE"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1973-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00850575\",\"titles\":[\"Amplification of seismic ground motion in the Tunis basin: Numerical BEM simulations vs experimental evidences\"],\"abstracts\":[\"This paper aims at the analysis of seismic wave amplification in a deep alluvial basin in the city of Tunis in Tunisia. This sedimentary basin is 3000m wide and 350m deep. Since the seismic hazard is significant in this area, the depth of the basin and the strong impedance ratio raise the need for an accurate estimation of seismic motion amplification. Various experimental investigations were performed in previous studies to characterize site effects. The Boundary Element Method is considered herein to assess the parameter sensitivity of the amplification process and analyse the prevailing phenomena. The various frequencies of maximum amplification are correctly estimated by the BEM simulations. The maximum amplification level observed in the field is also well retrieved by the numerical simulations but, due to the sensitivity of the location of maximum amplification in space, the overall maximum amplification has to be considered. The influence of the wave-field incidence and material damping is also discussed.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:MECA:STRU] Physics/Mechanics/Mechanics of the structures\",\"[PHYS:MECA:STRU] Physique/Mécanique/Mécanique des structures\",\"[SPI:MECA:STRU] Engineering Sciences/Mechanics/Mechanics of the structures\",\"[SPI:MECA:STRU] Sciences de l\\u0027ingénieur/Mécanique/Mécanique des structures\",\"[SDU:STU:GP] Sciences of the Universe/Earth Sciences/Geophysics\",\"[SDU:STU:GP] Planète et Univers/Sciences de la Terre/Géophysique\",\"[PHYS:PHYS:PHYS_GEO-PH] Physics/Physics/Geophysics\",\"[PHYS:PHYS:PHYS_GEO-PH] Physique/Physique/Géophysique\",\"[SDE:MCG] Environmental Sciences/Global Changes\",\"[SDE:MCG] Sciences de l\\u0027environnement/Milieux et Changements globaux\",\"Wave amplification\",\"Site effects\",\"Seismic wave\",\"Seismic hazard\",\"Numerical modelling\",\"Boundary Element Method\"],\"creators\":[\"Kham, Marc\",\"Semblat, Jean-François\",\"Bouden-Romdhane, Nejla\"],\"publicationdate\":\"2013-02-28\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1016/j.enggeo.2012.12.016\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00850575\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00850575\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00850575\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00850575\",\"id\":\"oai:HAL:hal-00850575v1\"},\"trust\":0.7140354}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00850575"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kham, Marc","Semblat, Jean-François","Bouden-Romdhane, Nejla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00850575v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:MECA:STRU] Physics/Mechanics/Mechanics of the structures","[PHYS:MECA:STRU] Physique/Mécanique/Mécanique des structures","[SPI:MECA:STRU] Engineering Sciences/Mechanics/Mechanics of the structures","[SPI:MECA:STRU] Sciences de l\u0027ingénieur/Mécanique/Mécanique des structures","[SDU:STU:GP] Sciences of the Universe/Earth Sciences/Geophysics","[SDU:STU:GP] Planète et Univers/Sciences de la Terre/Géophysique","[PHYS:PHYS:PHYS_GEO-PH] Physics/Physics/Geophysics","[PHYS:PHYS:PHYS_GEO-PH] Physique/Physique/Géophysique","[SDE:MCG] Environmental Sciences/Global Changes","[SDE:MCG] Sciences de l\u0027environnement/Milieux et Changements globaux","Wave amplification","Site effects","Seismic wave","Seismic hazard","Numerical modelling","Boundary Element Method"]},"trust":{"type":"FLOAT","value":0.7140354},"target_publication_title":{"type":"STRING","value":"Amplification of seismic ground motion in the Tunis basin: Numerical BEM simulations vs experimental evidences"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-02-28"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00850575\",\"titles\":[\"Amplification of seismic ground motion in the Tunis basin: Numerical BEM simulations vs experimental evidences\"],\"abstracts\":[\"This paper aims at the analysis of seismic wave amplification in a deep alluvial basin in the city of Tunis in Tunisia. This sedimentary basin is 3000m wide and 350m deep. Since the seismic hazard is significant in this area, the depth of the basin and the strong impedance ratio raise the need for an accurate estimation of seismic motion amplification. Various experimental investigations were performed in previous studies to characterize site effects. The Boundary Element Method is considered herein to assess the parameter sensitivity of the amplification process and analyse the prevailing phenomena. The various frequencies of maximum amplification are correctly estimated by the BEM simulations. The maximum amplification level observed in the field is also well retrieved by the numerical simulations but, due to the sensitivity of the location of maximum amplification in space, the overall maximum amplification has to be considered. The influence of the wave-field incidence and material damping is also discussed.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:MECA:STRU] Physics/Mechanics/Mechanics of the structures\",\"[PHYS:MECA:STRU] Physique/Mécanique/Mécanique des structures\",\"[SPI:MECA:STRU] Engineering Sciences/Mechanics/Mechanics of the structures\",\"[SPI:MECA:STRU] Sciences de l\\u0027ingénieur/Mécanique/Mécanique des structures\",\"[SDU:STU:GP] Sciences of the Universe/Earth Sciences/Geophysics\",\"[SDU:STU:GP] Planète et Univers/Sciences de la Terre/Géophysique\",\"[PHYS:PHYS:PHYS_GEO-PH] Physics/Physics/Geophysics\",\"[PHYS:PHYS:PHYS_GEO-PH] Physique/Physique/Géophysique\",\"[SDE:MCG] Environmental Sciences/Global Changes\",\"[SDE:MCG] Sciences de l\\u0027environnement/Milieux et Changements globaux\",\"Wave amplification\",\"Site effects\",\"Seismic wave\",\"Seismic hazard\",\"Numerical modelling\",\"Boundary Element Method\"],\"creators\":[\"Kham, Marc\",\"Semblat, Jean-François\",\"Bouden-Romdhane, Nejla\"],\"publicationdate\":\"2013-02-28\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1016/j.enggeo.2012.12.016\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00850575\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/1308.1573\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1308.1573\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1308.1573\",\"id\":\"oai:arXiv.org:1308.1573\"},\"trust\":0.8018415}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00850575"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kham, Marc","Semblat, Jean-François","Bouden-Romdhane, Nejla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1308.1573"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:MECA:STRU] Physics/Mechanics/Mechanics of the structures","[PHYS:MECA:STRU] Physique/Mécanique/Mécanique des structures","[SPI:MECA:STRU] Engineering Sciences/Mechanics/Mechanics of the structures","[SPI:MECA:STRU] Sciences de l\u0027ingénieur/Mécanique/Mécanique des structures","[SDU:STU:GP] Sciences of the Universe/Earth Sciences/Geophysics","[SDU:STU:GP] Planète et Univers/Sciences de la Terre/Géophysique","[PHYS:PHYS:PHYS_GEO-PH] Physics/Physics/Geophysics","[PHYS:PHYS:PHYS_GEO-PH] Physique/Physique/Géophysique","[SDE:MCG] Environmental Sciences/Global Changes","[SDE:MCG] Sciences de l\u0027environnement/Milieux et Changements globaux","Wave amplification","Site effects","Seismic wave","Seismic hazard","Numerical modelling","Boundary Element Method"]},"trust":{"type":"FLOAT","value":0.8018415},"target_publication_title":{"type":"STRING","value":"Amplification of seismic ground motion in the Tunis basin: Numerical BEM simulations vs experimental evidences"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-02-28"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00850575v1\",\"titles\":[\"Amplification of seismic ground motion in the Tunis basin: Numerical BEM simulations vs experimental evidences\"],\"abstracts\":[\"International audience\",\"This paper aims at the analysis of seismic wave amplification in a deep alluvial basin in the city of Tunis in Tunisia. This sedimentary basin is 3000m wide and 350m deep. Since the seismic hazard is significant in this area, the depth of the basin and the strong impedance ratio raise the need for an accurate estimation of seismic motion amplification. Various experimental investigations were performed in previous studies to characterize site effects. The Boundary Element Method is considered herein to assess the parameter sensitivity of the amplification process and analyse the prevailing phenomena. The various frequencies of maximum amplification are correctly estimated by the BEM simulations. The maximum amplification level observed in the field is also well retrieved by the numerical simulations but, due to the sensitivity of the location of maximum amplification in space, the overall maximum amplification has to be considered. The influence of the wave-field incidence and material damping is also discussed.\"],\"language\":\"eng\",\"subjects\":[\"Wave amplification\",\"Site effects\",\"Seismic wave\",\"Seismic hazard\",\"Numerical modelling\",\"Boundary Element Method\",\"[PHYS.MECA.STRU] Physics/Mechanics/Mechanics of the structures\",\"[SPI.MECA.STRU] Engineering Sciences/Mechanics/Mechanics of the structures\",\"[SDU.STU.GP] Sciences of the Universe/Earth Sciences/Geophysics\",\"[PHYS.PHYS.PHYS-GEO-PH] Physics/Physics/Geophysics\",\"[SDE.MCG] Environmental Sciences/Global Changes\"],\"creators\":[\"Kham, Marc\",\"Semblat, Jean-François\",\"Bouden-Romdhane, Nejla\"],\"publicationdate\":\"2013-02-28\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire de Mécanique des Structures Industrielles Durables (LAMSID) ; EDF - CNRS\",\"Laboratoire Central des Ponts et Chaussées (LCPC) ; LCPC\",\"Institut Français des Sciences et Technologies des Transports de l\\u0027Aménagement et des Réseaux (IFSTTAR/GERS/SV) ; Laboratoire Séismes et Vibrations\",\"Ecole Nationale d\\u0027Ingénieurs de Tunis (ENIT) ; Ecole Nationale d\\u0027Ingénieurs de Tunis\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1016/j.enggeo.2012.12.016\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00850575\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00850575\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00850575\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00850575\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00850575\"},\"trust\":0.579523}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00850575v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kham, Marc","Semblat, Jean-François","Bouden-Romdhane, Nejla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00850575"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Wave amplification","Site effects","Seismic wave","Seismic hazard","Numerical modelling","Boundary Element Method","[PHYS.MECA.STRU] Physics/Mechanics/Mechanics of the structures","[SPI.MECA.STRU] Engineering Sciences/Mechanics/Mechanics of the structures","[SDU.STU.GP] Sciences of the Universe/Earth Sciences/Geophysics","[PHYS.PHYS.PHYS-GEO-PH] Physics/Physics/Geophysics","[SDE.MCG] Environmental Sciences/Global Changes"]},"trust":{"type":"FLOAT","value":0.579523},"target_publication_title":{"type":"STRING","value":"Amplification of seismic ground motion in the Tunis basin: Numerical BEM simulations vs experimental evidences"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-02-28"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00850575v1\",\"titles\":[\"Amplification of seismic ground motion in the Tunis basin: Numerical BEM simulations vs experimental evidences\"],\"abstracts\":[\"International audience\",\"This paper aims at the analysis of seismic wave amplification in a deep alluvial basin in the city of Tunis in Tunisia. This sedimentary basin is 3000m wide and 350m deep. Since the seismic hazard is significant in this area, the depth of the basin and the strong impedance ratio raise the need for an accurate estimation of seismic motion amplification. Various experimental investigations were performed in previous studies to characterize site effects. The Boundary Element Method is considered herein to assess the parameter sensitivity of the amplification process and analyse the prevailing phenomena. The various frequencies of maximum amplification are correctly estimated by the BEM simulations. The maximum amplification level observed in the field is also well retrieved by the numerical simulations but, due to the sensitivity of the location of maximum amplification in space, the overall maximum amplification has to be considered. The influence of the wave-field incidence and material damping is also discussed.\"],\"language\":\"eng\",\"subjects\":[\"Wave amplification\",\"Site effects\",\"Seismic wave\",\"Seismic hazard\",\"Numerical modelling\",\"Boundary Element Method\",\"[PHYS.MECA.STRU] Physics/Mechanics/Mechanics of the structures\",\"[SPI.MECA.STRU] Engineering Sciences/Mechanics/Mechanics of the structures\",\"[SDU.STU.GP] Sciences of the Universe/Earth Sciences/Geophysics\",\"[PHYS.PHYS.PHYS-GEO-PH] Physics/Physics/Geophysics\",\"[SDE.MCG] Environmental Sciences/Global Changes\"],\"creators\":[\"Kham, Marc\",\"Semblat, Jean-François\",\"Bouden-Romdhane, Nejla\"],\"publicationdate\":\"2013-02-28\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire de Mécanique des Structures Industrielles Durables (LAMSID) ; EDF - CNRS\",\"Laboratoire Central des Ponts et Chaussées (LCPC) ; LCPC\",\"Institut Français des Sciences et Technologies des Transports de l\\u0027Aménagement et des Réseaux (IFSTTAR/GERS/SV) ; Laboratoire Séismes et Vibrations\",\"Ecole Nationale d\\u0027Ingénieurs de Tunis (ENIT) ; Ecole Nationale d\\u0027Ingénieurs de Tunis\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1016/j.enggeo.2012.12.016\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00850575\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/1308.1573\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1308.1573\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1308.1573\",\"id\":\"oai:arXiv.org:1308.1573\"},\"trust\":0.67269784}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00850575v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kham, Marc","Semblat, Jean-François","Bouden-Romdhane, Nejla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1308.1573"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Wave amplification","Site effects","Seismic wave","Seismic hazard","Numerical modelling","Boundary Element Method","[PHYS.MECA.STRU] Physics/Mechanics/Mechanics of the structures","[SPI.MECA.STRU] Engineering Sciences/Mechanics/Mechanics of the structures","[SDU.STU.GP] Sciences of the Universe/Earth Sciences/Geophysics","[PHYS.PHYS.PHYS-GEO-PH] Physics/Physics/Geophysics","[SDE.MCG] Environmental Sciences/Global Changes"]},"trust":{"type":"FLOAT","value":0.67269784},"target_publication_title":{"type":"STRING","value":"Amplification of seismic ground motion in the Tunis basin: Numerical BEM simulations vs experimental evidences"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-02-28"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1308.1573\",\"titles\":[\"Amplification of seismic ground motion in the Tunis basin: Numerical BEM simulations vs experimental evidences\"],\"abstracts\":[\" This paper aims at the analysis of seismic wave amplification in a deep\\nalluvial basin in the city of Tunis in Tunisia. This sedimentary basin is 3000m\\nwide and 350m deep. Since the seismic hazard is significant in this area, the\\ndepth of the basin and the strong impedance ratio raise the need for an\\naccurate estimation of seismic motion amplification. Various experimental\\ninvestigations were performed in previous studies to characterize site effects.\\nThe Boundary Element Method is considered herein to assess the parameter\\nsensitivity of the amplification process and analyse the prevailing phenomena.\\nThe various frequencies of maximum amplification are correctly estimated by the\\nBEM simulations. The maximum amplification level observed in the field is also\\nwell retrieved by the numerical simulations but, due to the sensitivity of the\\nlocation of maximum amplification in space, the overall maximum amplification\\nhas to be considered. The influence of the wave-field incidence and material\\ndamping is also discussed.\\n\"],\"language\":\"eng\",\"subjects\":[\"Physics - Geophysics\"],\"creators\":[\"Kham, Marc\",\"Semblat, Jean-François\",\"Bouden-Romdhane, Nejla\"],\"publicationdate\":\"2013-08-07\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1016/j.enggeo.2012.12.016\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1308.1573\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00850575\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00850575\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00850575\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00850575\"},\"trust\":0.25239462}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1308.1573"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kham, Marc","Semblat, Jean-François","Bouden-Romdhane, Nejla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00850575"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics - Geophysics"]},"trust":{"type":"FLOAT","value":0.25239462},"target_publication_title":{"type":"STRING","value":"Amplification of seismic ground motion in the Tunis basin: Numerical BEM simulations vs experimental evidences"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-08-07"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1308.1573\",\"titles\":[\"Amplification of seismic ground motion in the Tunis basin: Numerical BEM simulations vs experimental evidences\"],\"abstracts\":[\" This paper aims at the analysis of seismic wave amplification in a deep\\nalluvial basin in the city of Tunis in Tunisia. This sedimentary basin is 3000m\\nwide and 350m deep. Since the seismic hazard is significant in this area, the\\ndepth of the basin and the strong impedance ratio raise the need for an\\naccurate estimation of seismic motion amplification. Various experimental\\ninvestigations were performed in previous studies to characterize site effects.\\nThe Boundary Element Method is considered herein to assess the parameter\\nsensitivity of the amplification process and analyse the prevailing phenomena.\\nThe various frequencies of maximum amplification are correctly estimated by the\\nBEM simulations. The maximum amplification level observed in the field is also\\nwell retrieved by the numerical simulations but, due to the sensitivity of the\\nlocation of maximum amplification in space, the overall maximum amplification\\nhas to be considered. The influence of the wave-field incidence and material\\ndamping is also discussed.\\n\"],\"language\":\"eng\",\"subjects\":[\"Physics - Geophysics\"],\"creators\":[\"Kham, Marc\",\"Semblat, Jean-François\",\"Bouden-Romdhane, Nejla\"],\"publicationdate\":\"2013-08-07\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1016/j.enggeo.2012.12.016\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1308.1573\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00850575\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00850575\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00850575\",\"id\":\"oai:HAL:hal-00850575v1\"},\"trust\":0.33886194}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1308.1573"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kham, Marc","Semblat, Jean-François","Bouden-Romdhane, Nejla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00850575v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics - Geophysics"]},"trust":{"type":"FLOAT","value":0.33886194},"target_publication_title":{"type":"STRING","value":"Amplification of seismic ground motion in the Tunis basin: Numerical BEM simulations vs experimental evidences"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-08-07"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2710001\",\"titles\":[\"Automated conserved non-coding sequence (CNS) discovery reveals differences in gene content and promoter evolution among grasses\"],\"abstracts\":[\"Conserved non-coding sequences (CNS) are islands of non-coding sequence that, like protein coding exons, show less divergence in sequence between related species than functionless DNA. Several CNSs have been demonstrated experimentally to function as cis-regulatory regions. However, the specific functions of most CNSs remain unknown. Previous searches for CNS in plants have either anchored on exons and only identified nearby sequences or required years of painstaking manual annotation. Here we present an open source tool that can accurately identify CNSs between any two related species with sequenced genomes, including both those immediately adjacent to exons and distal sequences separated by \\u003e12 kb of non-coding sequence. We have used this tool to characterize new motifs, associate CNSs with additional functions, and identify previously undetected genes encoding RNA and protein in the genomes of five grass species. We provide a list of 15,363 orthologous CNSs conserved across all grasses tested. We were also able to identify regulatory sequences present in the common ancestor of grasses that have been lost in one or more extant grass lineages. Lists of orthologous gene pairs and associated CNSs are provided for reference inbred lines of arabidopsis, Japonica rice, foxtail millet, sorghum, brachypodium, and maize.\"],\"language\":\"eng\",\"subjects\":[\"Plant Science\",\"Methods Article\",\"conserved non-coding sequences\",\"comparative genomics\",\"sorghum\",\"rice\",\"maize\",\"gene regulation\",\"genome evolution\"],\"creators\":[\"Turco, Gina\",\"Schnable, James C.\",\"Pedersen, Brent\",\"Freeling, Michael\"],\"publicationdate\":\"2013-07-01\",\"publisher\":\"Frontiers Media S.A.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Frontiers in Plant Science\",\"issn\":\"\",\"eissn\":\"1664-462X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3389/fpls.2013.00170\",\"type\":\"doi\"},{\"value\":\"PMC3708275\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3708275\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.3389/fpls.2013.00170\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Plant Science\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.3389/fpls.2013.00170\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Plant Science\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Frontiers\",\"url\":\"http://dx.doi.org/10.3389/fpls.2013.00170\",\"id\":\"10.3389/fpls.2013.00170\"},\"trust\":0.8589589}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2710001"},"target_publication_author_list":{"type":"LIST_STRING","value":["Turco, Gina","Schnable, James C.","Pedersen, Brent","Freeling, Michael"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.3389/fpls.2013.00170"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::3db634fc5446f389d0b826ea400a5da6"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Plant Science","Methods Article","conserved non-coding sequences","comparative genomics","sorghum","rice","maize","gene regulation","genome evolution"]},"trust":{"type":"FLOAT","value":0.8589589},"target_publication_title":{"type":"STRING","value":"Automated conserved non-coding sequence (CNS) discovery reveals differences in gene content and promoter evolution among grasses"},"provenance_datasource_name":{"type":"STRING","value":"Frontiers"},"target_dateofacceptance":{"type":"DATE","value":"2013-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00003653v1\",\"titles\":[\"Étude du rôle différentié de l\\u0027amygdale et du cortex ventro-médian dans le traitement des émotions chez l\\u0027homme Analyse neuropsychologique, métabolique et électrophysiologique\"],\"abstracts\":[\"Ce texte est un rapport de fin de recherche issu de l\\u0027ACI cognitique.\",\"L\\u0027étude des relations entre les mécanismes émotionnels et le fonctionnement cérébral a acquis un intérêt majeur au sein des sciences cognitives au cours de ces dernières années. Cette étude s\\u0027insère dans le cadre d\\u0027une problématique plus générale concernant l\\u0027interaction entre le système motivationnel et les processus cognitifs dans l\\u0027adaptation du comportement finalisé. L\\u0027anticipation des conséquences positives ou négatives de l\\u0027action, ainsi que les composantes émotionnelles associées, jouent un rôle crucial dans l\\u0027organisation et le contrôle des comportements finalisés. L\\u0027objectif de notre étude est d\\u0027étudier comment le système préfrontal et le système limbique interagissent dans des situations requérant des capacités d\\u0027évaluer la valeur positive et négative d\\u0027un événement par rapport à un but donné. Plus précisément, l\\u0027étude vise à déterminer la contribution spécifique des régions préfrontales (dorso-laterales et orbitaires) et limbiques (en particulier, l\\u0027amygdale) lorsqu\\u0027un sujet est confronté à une forte probabilité de succès ou d\\u0027échec dans des contextes motivationnels et cognitifs différents. Ce programme de recherche associe deux approches distinctes dans un contexte d\\u0027interaction pluridisciplinaire : (1) étude psychophysiologique chez des sujets ayant subi une amygdalectomie, (2) analyse électro-physiologique par électrodes implantées intracérébrales ; (3) imagerie par résonance magnétique fonctionnelle (IRMf ) chez les sujets normaux. L\\u0027étude psychophysiologique (par l\\u0027enregistrement de la électrodermale en conductance, REDc), du rythme cardiaque, de la température et de la fréquence respiratoire chez les patients a démontré qu\\u0027un circuit cérébral distinct et les structures limbiques des deux hémisphères sont impliqués de façon différenciée dans le traitement de la valeur positive et négative des émotions. Plus précisément, il existerait une dominance de l\\u0027hémisphère gauche pour les stimulus positifs et une dominance de l\\u0027hémisphère droit pour le traitement des stimuli à valence négative. Dans l\\u0027étude électrophysiologique, qui confirme les résultats de l\\u0027étude psychophysiologique, nous avons retrouvé une activité latéralisée selon la valence émotionnelle du stimulus, à savoir à droite pour les stimuli négatifs signalant un échec (feedback perdant) et à gauche pour les stimuli positifs signalant un succès (feedback gagnant). Ce profil de réponse serait indépendant de la nature lexicale des stimuli utilisés. Toutefois, l\\u0027activité neuronale serait plus importante si l\\u0027information est véhiculée par des stimuli lexicaux que par des symboles.\"],\"language\":\"eng\",\"subjects\":[\"Perturbations et récupération des fonctions cognitives (1999/2000)\",\"[SCCO.NEUR] Cognitive science/Neuroscience\"],\"creators\":[\"Sirigu, Angela\",\"Zalla, Tiziana\"],\"publicationdate\":\"2005-01-20\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Institut des Sciences Cognitives (ISC) ; Université Claude Bernard - Lyon I (UCBL) - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00003653\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00003653\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00003653\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00003653\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00003653\"},\"trust\":0.12884218}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00003653v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sirigu, Angela","Zalla, Tiziana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00003653"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Perturbations et récupération des fonctions cognitives (1999/2000)","[SCCO.NEUR] Cognitive science/Neuroscience"]},"trust":{"type":"FLOAT","value":0.12884218},"target_publication_title":{"type":"STRING","value":"Étude du rôle différentié de l\u0027amygdale et du cortex ventro-médian dans le traitement des émotions chez l\u0027homme Analyse neuropsychologique, métabolique et électrophysiologique"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-20"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00003653\",\"titles\":[\"Étude du rôle différentié de l\\u0027amygdale et du cortex ventro-médian dans le traitement des émotions chez l\\u0027homme Analyse neuropsychologique, métabolique et électrophysiologique\"],\"abstracts\":[\"L\\u0027étude des relations entre les mécanismes émotionnels et le fonctionnement cérébral a acquis un intérêt majeur au sein des sciences cognitives au cours de ces dernières années. Cette étude s\\u0027insère dans le cadre d\\u0027une problématique plus générale concernant l\\u0027interaction entre le système motivationnel et les processus cognitifs dans l\\u0027adaptation du comportement finalisé. L\\u0027anticipation des conséquences positives ou négatives de l\\u0027action, ainsi que les composantes émotionnelles associées, jouent un rôle crucial dans l\\u0027organisation et le contrôle des comportements finalisés. L\\u0027objectif de notre étude est d\\u0027étudier comment le système préfrontal et le système limbique interagissent dans des situations requérant des capacités d\\u0027évaluer la valeur positive et négative d\\u0027un événement par rapport à un but donné. Plus précisément, l\\u0027étude vise à déterminer la contribution spécifique des régions préfrontales (dorso-laterales et orbitaires) et limbiques (en particulier, l\\u0027amygdale) lorsqu\\u0027un sujet est confronté à une forte probabilité de succès ou d\\u0027échec dans des contextes motivationnels et cognitifs différents. Ce programme de recherche associe deux approches distinctes dans un contexte d\\u0027interaction pluridisciplinaire : (1) étude psychophysiologique chez des sujets ayant subi une amygdalectomie, (2) analyse électro-physiologique par électrodes implantées intracérébrales ; (3) imagerie par résonance magnétique fonctionnelle (IRMf ) chez les sujets normaux. L\\u0027étude psychophysiologique (par l\\u0027enregistrement de la électrodermale en conductance, REDc), du rythme cardiaque, de la température et de la fréquence respiratoire chez les patients a démontré qu\\u0027un circuit cérébral distinct et les structures limbiques des deux hémisphères sont impliqués de façon différenciée dans le traitement de la valeur positive et négative des émotions. Plus précisément, il existerait une dominance de l\\u0027hémisphère gauche pour les stimulus positifs et une dominance de l\\u0027hémisphère droit pour le traitement des stimuli à valence négative. Dans l\\u0027étude électrophysiologique, qui confirme les résultats de l\\u0027étude psychophysiologique, nous avons retrouvé une activité latéralisée selon la valence émotionnelle du stimulus, à savoir à droite pour les stimuli négatifs signalant un échec (feedback perdant) et à gauche pour les stimuli positifs signalant un succès (feedback gagnant). Ce profil de réponse serait indépendant de la nature lexicale des stimuli utilisés. Toutefois, l\\u0027activité neuronale serait plus importante si l\\u0027information est véhiculée par des stimuli lexicaux que par des symboles.\"],\"language\":\"eng\",\"subjects\":[\"[SCCO:NEUR] Cognitive science/Neuroscience\",\"[SCCO:NEUR] Sciences cognitives/Neurosciences\"],\"creators\":[\"Sirigu, Angela\",\"Zalla, Tiziana\"],\"publicationdate\":\"2004-12-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00003653\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00003653\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00003653\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00003653\",\"id\":\"oai:HAL:hal-00003653v1\"},\"trust\":0.7511288}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00003653"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sirigu, Angela","Zalla, Tiziana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00003653v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SCCO:NEUR] Cognitive science/Neuroscience","[SCCO:NEUR] Sciences cognitives/Neurosciences"]},"trust":{"type":"FLOAT","value":0.7511288},"target_publication_title":{"type":"STRING","value":"Étude du rôle différentié de l\u0027amygdale et du cortex ventro-médian dans le traitement des émotions chez l\u0027homme Analyse neuropsychologique, métabolique et électrophysiologique"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-12-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:qucosa.de:bsz:ch1-200901837\",\"titles\":[\"Novel Model Reduction Techniques for Control of Machine Tools\"],\"abstracts\":[\"Computational methods for reducing the complexity of Finite Element (FE)\\nmodels in structural dynamics are usually based on modal analysis.\\nClassical approaches such as modal truncation, static condensation\\n(Craig-Bampton, Guyan), and component mode synthesis (CMS) are\\navailable in many CAE tools such as ANSYS. In other disciplines, different\\ntechniques for Model Order Reduction (MOR) have been developed in the\\nprevious 2 decades. Krylov subspace methods are one possible\\nchoice and often lead to much smaller models than modal truncation\\nmethods given the same prescribed tolerance threshold. They have become\\navailable to ANSYS users through the tool mor4ansys. A disadvantage\\nis that neither modal truncation nor CMS nor Krylov subspace methods\\npreserve properties important to control design. System-theoretic\\nmethods like balanced truncation approximation (BTA), on the other\\nhand, are directed towards reduced-order models for use in closed-loop\\ncontrol. So far, these methods are considered to be too expensive for\\nlarge-scale structural models. We show that recent algorithmic\\nadvantages lead to MOR methods that are applicable to FE models in\\nstructural dynamics and that can easily be integrated into CAE \\nsoftware. We will demonstrate the efficiency of the proposed MOR\\nmethod based on BTA using a control system including as plant the FE\\nmodel of a machine tool.\"],\"language\":\"eng\",\"subjects\":[\"Balanced Truncation\",\"Krylov Subspace Method\",\"Simulation\",\"ddc:510\",\"ddc:620\",\"Ordnungsreduktion\",\"Werkzeugmaschine\"],\"creators\":[\"Benner, Peter\",\"Bonin, Thomas\",\"Faßbender, Heike\",\"Saak, Jens\",\"Soppa, Andreas\",\"Zaeh, Michael\"],\"publicationdate\":\"2009-11-13\",\"publisher\":\"Universitätsbibliothek Chemnitz\",\"embargoenddate\":\"\",\"contributor\":[\"TU Chemnitz, Fakultät für Mathematik\",\"ANSYS Conference \\u0026 27. CADFEM Users Meeting 2009, \"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Qucosa\"],\"pids\":[],\"instances\":[{\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:ch1-200901837\",\"license\":\"OPEN\",\"hostedby\":\"Qucosa\",\"instancetype\":\"Conference object\"},{\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:ch1-200901837\",\"license\":\"OPEN\",\"hostedby\":\"Multimedia ONline ARchiv CHemnitz\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:ch1-200901837\",\"license\":\"OPEN\",\"hostedby\":\"Multimedia ONline ARchiv CHemnitz\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"Multimedia ONline ARchiv CHemnitz\",\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:ch1-200901837\",\"id\":\"oai:qucosa.de:bsz:ch1-200901837\"},\"trust\":0.010825694}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Qucosa"},"target_publication_id":{"type":"STRING","value":"oai:qucosa.de:bsz:ch1-200901837"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benner, Peter","Bonin, Thomas","Faßbender, Heike","Saak, Jens","Soppa, Andreas","Zaeh, Michael"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:qucosa.de:bsz:ch1-200901837"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::e96ed478dab8595a7dbda4cbcbee168f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Balanced Truncation","Krylov Subspace Method","Simulation","ddc:510","ddc:620","Ordnungsreduktion","Werkzeugmaschine"]},"trust":{"type":"FLOAT","value":0.010825694},"target_publication_title":{"type":"STRING","value":"Novel Model Reduction Techniques for Control of Machine Tools"},"provenance_datasource_name":{"type":"STRING","value":"Multimedia ONline ARchiv CHemnitz"},"target_dateofacceptance":{"type":"DATE","value":"2009-11-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::c9e1074f5b3f9fc8ea15d152add07294"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:qucosa.de:bsz:ch1-200901837\",\"titles\":[\"Novel Model Reduction Techniques for Control of Machine Tools\"],\"abstracts\":[\"Computational methods for reducing the complexity of Finite Element (FE)\\nmodels in structural dynamics are usually based on modal analysis.\\nClassical approaches such as modal truncation, static condensation\\n(Craig-Bampton, Guyan), and component mode synthesis (CMS) are\\navailable in many CAE tools such as ANSYS. In other disciplines, different\\ntechniques for Model Order Reduction (MOR) have been developed in the\\nprevious 2 decades. Krylov subspace methods are one possible\\nchoice and often lead to much smaller models than modal truncation\\nmethods given the same prescribed tolerance threshold. They have become\\navailable to ANSYS users through the tool mor4ansys. A disadvantage\\nis that neither modal truncation nor CMS nor Krylov subspace methods\\npreserve properties important to control design. System-theoretic\\nmethods like balanced truncation approximation (BTA), on the other\\nhand, are directed towards reduced-order models for use in closed-loop\\ncontrol. So far, these methods are considered to be too expensive for\\nlarge-scale structural models. We show that recent algorithmic\\nadvantages lead to MOR methods that are applicable to FE models in\\nstructural dynamics and that can easily be integrated into CAE \\nsoftware. We will demonstrate the efficiency of the proposed MOR\\nmethod based on BTA using a control system including as plant the FE\\nmodel of a machine tool.\"],\"language\":\"eng\",\"subjects\":[\"Balanced Truncation\",\"Krylov Subspace Method\",\"Simulation\",\"ddc:510\",\"ddc:620\",\"Ordnungsreduktion\",\"Werkzeugmaschine\"],\"creators\":[\"Benner, Peter\",\"Bonin, Thomas\",\"Faßbender, Heike\",\"Saak, Jens\",\"Soppa, Andreas\",\"Zaeh, Michael\"],\"publicationdate\":\"2009-11-13\",\"publisher\":\"Universitätsbibliothek Chemnitz\",\"embargoenddate\":\"\",\"contributor\":[\"TU Chemnitz, Fakultät für Mathematik\",\"ANSYS Conference \\u0026 27. CADFEM Users Meeting 2009, \"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Multimedia ONline ARchiv CHemnitz\"],\"pids\":[],\"instances\":[{\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:ch1-200901837\",\"license\":\"OPEN\",\"hostedby\":\"Multimedia ONline ARchiv CHemnitz\",\"instancetype\":\"Conference object\"},{\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:ch1-200901837\",\"license\":\"OPEN\",\"hostedby\":\"Qucosa\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:ch1-200901837\",\"license\":\"OPEN\",\"hostedby\":\"Qucosa\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"Qucosa\",\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:ch1-200901837\",\"id\":\"oai:qucosa.de:bsz:ch1-200901837\"},\"trust\":0.59133494}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Multimedia ONline ARchiv CHemnitz"},"target_publication_id":{"type":"STRING","value":"oai:qucosa.de:bsz:ch1-200901837"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benner, Peter","Bonin, Thomas","Faßbender, Heike","Saak, Jens","Soppa, Andreas","Zaeh, Michael"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:qucosa.de:bsz:ch1-200901837"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::c9e1074f5b3f9fc8ea15d152add07294"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Balanced Truncation","Krylov Subspace Method","Simulation","ddc:510","ddc:620","Ordnungsreduktion","Werkzeugmaschine"]},"trust":{"type":"FLOAT","value":0.59133494},"target_publication_title":{"type":"STRING","value":"Novel Model Reduction Techniques for Control of Machine Tools"},"provenance_datasource_name":{"type":"STRING","value":"Qucosa"},"target_dateofacceptance":{"type":"DATE","value":"2009-11-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::e96ed478dab8595a7dbda4cbcbee168f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3686738\",\"titles\":[\"Antioxidant Defenses in Plants with Attention to Prunus and Citrus spp.\"],\"abstracts\":[\"This short review briefly introduces the formation of reactive oxygen species (ROS) as by-products of oxidation/reduction (redox) reactions, and the ways in which the antioxidant defense machinery is involved directly or indirectly in ROS scavenging. Major antioxidants, both enzymatic and non enzymatic, that protect higher plant cells from oxidative stress damage are described. Biochemical and molecular features of the antioxidant enzymes superoxide dismutase (SOD), catalase (CAT), and ascorbate peroxidase (APX) are discussed because they play crucial roles in scavenging ROS in the different cell compartments and in response to stress conditions. Among the non enzymatic defenses, particular attention is paid to ascorbic acid, glutathione, flavonoids, carotenoids, and tocopherols. The operation of ROS scavenging systems during the seasonal cycle and specific developmental events, such as fruit ripening and senescence, are discussed in relation to the intense ROS formation during these processes that impact fruit quality. Particular attention is paid to Prunus and Citrus species because of the nutritional and antioxidant properties contained in these commonly consumed fruits.\"],\"language\":\"eng\",\"subjects\":[\"Review\",\"reactive oxygen species\",\"ROS\",\"antioxidant enzymes\",\"antioxidant molecules\",\"Prunus spp.\",\"Citrus spp.\",\"ascorbic acid\",\"vitamin C\",\"carotenoids\",\"flavonoids\"],\"creators\":[\"Racchi, Milvia Luisa\"],\"publicationdate\":\"2013-11-01\",\"publisher\":\"MDPI\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Antioxidants\",\"issn\":\"\",\"eissn\":\"2076-3921\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3390/antiox2040340\",\"type\":\"doi\"},{\"value\":\"PMC4665512\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4665512\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.mdpi.com/2076-3921/2/4/340\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.mdpi.com/2076-3921/2/4/340\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.mdpi.com/2076-3921/2/4/340\",\"id\":\"oai:doaj.org/article:701e82da785a4709b2832866799b4a0f\"},\"trust\":0.25315213}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3686738"},"target_publication_author_list":{"type":"LIST_STRING","value":["Racchi, Milvia Luisa"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:701e82da785a4709b2832866799b4a0f"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Review","reactive oxygen species","ROS","antioxidant enzymes","antioxidant molecules","Prunus spp.","Citrus spp.","ascorbic acid","vitamin C","carotenoids","flavonoids"]},"trust":{"type":"FLOAT","value":0.25315213},"target_publication_title":{"type":"STRING","value":"Antioxidant Defenses in Plants with Attention to Prunus and Citrus spp."},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2013-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:teora.hit.no:2282/372\",\"titles\":[\"Fridtjof Nansen : the making of his world of men\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Friluftsliv\",\"Historie\",\"Kjønnsstudier\",\"VDP:370\",\"VDP:339\"],\"creators\":[\"Lippe, Gerd Von\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"British Society of Sports History\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"TElemark Open Research Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2282/372\",\"license\":\"OPEN\",\"hostedby\":\"TElemark Open Research Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/2282/372\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2282/372\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Norwegian Open Research Archives\",\"url\":\"http://hdl.handle.net/2282/372\",\"id\":\"\"},\"trust\":0.2939812}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"TElemark Open Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:teora.hit.no:2282/372"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lippe, Gerd Von"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Friluftsliv","Historie","Kjønnsstudier","VDP:370","VDP:339"]},"trust":{"type":"FLOAT","value":0.2939812},"target_publication_title":{"type":"STRING","value":"Fridtjof Nansen : the making of his world of men"},"provenance_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::c60d060b946d6dd6145dcbad5c4ccf6f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"\",\"titles\":[\"Fridtjof Nansen :the making of his world of men\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Social science:Social science in sports:Other subjects within physical education:\",\"Samfunnsvitenskap:Samfunnsvitenskapelige idrettsfag:Andre idrettsfag:\",\"Social science:Womens - and gender studies:\",\"Samfunnsvitenskap:Kvinne- og kjønnsstudier:\",\"Friluftsliv\",\"Historie\",\"Kjønnsstudier\"],\"creators\":[\"Lippe, Gerd Von\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"British Society of Sports History\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Norwegian Open Research Archives\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2282/372\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/2282/372\",\"license\":\"OPEN\",\"hostedby\":\"TElemark Open Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2282/372\",\"license\":\"OPEN\",\"hostedby\":\"TElemark Open Research Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"TElemark Open Research Archive\",\"url\":\"http://hdl.handle.net/2282/372\",\"id\":\"oai:teora.hit.no:2282/372\"},\"trust\":0.4885242}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_publication_id":{"type":"STRING","value":""},"target_publication_author_list":{"type":"LIST_STRING","value":["Lippe, Gerd Von"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:teora.hit.no:2282/372"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::c60d060b946d6dd6145dcbad5c4ccf6f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Social science:Social science in sports:Other subjects within physical education:","Samfunnsvitenskap:Samfunnsvitenskapelige idrettsfag:Andre idrettsfag:","Social science:Womens - and gender studies:","Samfunnsvitenskap:Kvinne- og kjønnsstudier:","Friluftsliv","Historie","Kjønnsstudier"]},"trust":{"type":"FLOAT","value":0.4885242},"target_publication_title":{"type":"STRING","value":"Fridtjof Nansen :the making of his world of men"},"provenance_datasource_name":{"type":"STRING","value":"TElemark Open Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:iwh:dispap:200\",\"titles\":[\"Mikroökonometrische Evaluation und das Selektionsproblem – Ein anwendungsorientierter Überblick über nichtparametrische Lösungsverfahren –\"],\"abstracts\":[\"Im vorliegenden Diskussionspapier wird ein Überblick über nichtparametrische Verfahren zur Lösung des Selektionsproblems gegeben, wobei die bisher bestehende Lücke zwischen einführenden Texten und der weiterführenden, eher formalen Literatur geschlossen werden soll. Dazu werden die Vor- und Nachteile der Verfahren, die nötigen Annahmen sowie die Anforderungen an die Datenbasis erläutert. Aus der Darstellung wird ersichtlich, dass für die empirische Anwendung keine Methode zur Lösung des Selektionsproblems den anderen generell überlegen ist. Alle Ansätze beruhen auf bestimmten Grundannahmen, und jeder Schätzer ist verzerrt, wenn die zur Verfügung stehende Datenbasis nicht zu diesen Annahmen passt.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Eva Reinowski\"],\"publicationdate\":\"2004-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.iwh-halle.de/d/publik/disc/200.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/23738\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/23738\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/23738\",\"id\":\"oai:econstor.eu:10419/23738\"},\"trust\":0.4659279}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:iwh:dispap:200"},"target_publication_author_list":{"type":"LIST_STRING","value":["Eva Reinowski"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/23738"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"trust":{"type":"FLOAT","value":0.4659279},"target_publication_title":{"type":"STRING","value":"Mikroökonometrische Evaluation und das Selektionsproblem – Ein anwendungsorientierter Überblick über nichtparametrische Lösungsverfahren –"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2004-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/23738\",\"titles\":[\"Mikroökonometrische Evaluation und das Selektionsproblem – Ein anwendungsorientierter Überblick über nichtparametrische Lösungsverfahren –\"],\"abstracts\":[\"Im vorliegenden Diskussionspapier wird ein Überblick über nichtparametrische Verfahren zur Lösung des Selektionsproblems gegeben, wobei die bisher bestehende Lücke zwischen einführenden Texten und der weiterführenden, eher formalen Literatur geschlossen werden soll. Dazu werden die Vor- und Nachteile der Verfahren, die nötigen Annahmen sowie die Anforderungen an die Datenbasis erläutert. Aus der Darstellung wird ersichtlich, dass für die empirische Anwendung keine Methode zur Lösung des Selektionsproblems den anderen generell überlegen ist. Alle Ansätze beruhen auf bestimmten Grundannahmen, und jeder Schätzer ist verzerrt, wenn die zur Verfügung stehende Datenbasis nicht zu diesen Annahmen passt.\"],\"language\":\"eng\",\"subjects\":[\"ddc:330\",\"Nichtparametrisches Verfahren\",\"Bewertung\",\"Mikroökonometrie\"],\"creators\":[\"Reinowski, Eva\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"Institut für Wirtschaftsforschung Halle (IWH) Halle (Saale)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/23738\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.iwh-halle.de/d/publik/disc/200.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.iwh-halle.de/d/publik/disc/200.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.iwh-halle.de/d/publik/disc/200.pdf\",\"id\":\"oai:RePEc:iwh:dispap:200\"},\"trust\":0.37766486}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/23738"},"target_publication_author_list":{"type":"LIST_STRING","value":["Reinowski, Eva"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:iwh:dispap:200"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330","Nichtparametrisches Verfahren","Bewertung","Mikroökonometrie"]},"trust":{"type":"FLOAT","value":0.37766486},"target_publication_title":{"type":"STRING","value":"Mikroökonometrische Evaluation und das Selektionsproblem – Ein anwendungsorientierter Überblick über nichtparametrische Lösungsverfahren –"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/73207\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries’ institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"eng\",\"subjects\":[\"D73\",\"D78\",\"H2\",\"H26\",\"O17\",\"O5\",\"ddc:330\",\"Shadow economy\",\"tax morale\",\"institutional quality\",\"government intervention\",\"corruption\",\"Schattenwirtschaft\",\"Steuermoral\",\"Institutionelle Infrastruktur\",\"Wirtschaftspolitik\",\"Korruption\",\"Schätzung\",\"Welt\"],\"creators\":[\"Schneider, Friedrich\",\"Torgler, Benno\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Johannes Kepler University of Linz, Department of Economics Linz\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/73207\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/33897\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/33897\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/33897\",\"id\":\"oai:econstor.eu:10419/33897\"},\"trust\":0.32149798}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/73207"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schneider, Friedrich","Torgler, Benno"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/33897"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D73","D78","H2","H26","O17","O5","ddc:330","Shadow economy","tax morale","institutional quality","government intervention","corruption","Schattenwirtschaft","Steuermoral","Institutionelle Infrastruktur","Wirtschaftspolitik","Korruption","Schätzung","Welt"]},"trust":{"type":"FLOAT","value":0.32149798},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/73207\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries’ institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"eng\",\"subjects\":[\"D73\",\"D78\",\"H2\",\"H26\",\"O17\",\"O5\",\"ddc:330\",\"Shadow economy\",\"tax morale\",\"institutional quality\",\"government intervention\",\"corruption\",\"Schattenwirtschaft\",\"Steuermoral\",\"Institutionelle Infrastruktur\",\"Wirtschaftspolitik\",\"Korruption\",\"Schätzung\",\"Welt\"],\"creators\":[\"Schneider, Friedrich\",\"Torgler, Benno\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Johannes Kepler University of Linz, Department of Economics Linz\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/73207\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/25944\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/25944\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/25944\",\"id\":\"oai:econstor.eu:10419/25944\"},\"trust\":0.479263}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/73207"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schneider, Friedrich","Torgler, Benno"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/25944"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D73","D78","H2","H26","O17","O5","ddc:330","Shadow economy","tax morale","institutional quality","government intervention","corruption","Schattenwirtschaft","Steuermoral","Institutionelle Infrastruktur","Wirtschaftspolitik","Korruption","Schätzung","Welt"]},"trust":{"type":"FLOAT","value":0.479263},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/73207\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries’ institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"eng\",\"subjects\":[\"D73\",\"D78\",\"H2\",\"H26\",\"O17\",\"O5\",\"ddc:330\",\"Shadow economy\",\"tax morale\",\"institutional quality\",\"government intervention\",\"corruption\",\"Schattenwirtschaft\",\"Steuermoral\",\"Institutionelle Infrastruktur\",\"Wirtschaftspolitik\",\"Korruption\",\"Schätzung\",\"Welt\"],\"creators\":[\"Schneider, Friedrich\",\"Torgler, Benno\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Johannes Kepler University of Linz, Department of Economics Linz\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/73207\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"id\":\"oai:RePEc:ces:ceswps:_1899\"},\"trust\":0.78675795}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/73207"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schneider, Friedrich","Torgler, Benno"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ceswps:_1899"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D73","D78","H2","H26","O17","O5","ddc:330","Shadow economy","tax morale","institutional quality","government intervention","corruption","Schattenwirtschaft","Steuermoral","Institutionelle Infrastruktur","Wirtschaftspolitik","Korruption","Schätzung","Welt"]},"trust":{"type":"FLOAT","value":0.78675795},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/73207\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries’ institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"eng\",\"subjects\":[\"D73\",\"D78\",\"H2\",\"H26\",\"O17\",\"O5\",\"ddc:330\",\"Shadow economy\",\"tax morale\",\"institutional quality\",\"government intervention\",\"corruption\",\"Schattenwirtschaft\",\"Steuermoral\",\"Institutionelle Infrastruktur\",\"Wirtschaftspolitik\",\"Korruption\",\"Schätzung\",\"Welt\"],\"creators\":[\"Schneider, Friedrich\",\"Torgler, Benno\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Johannes Kepler University of Linz, Department of Economics Linz\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/73207\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"id\":\"oai:RePEc:cra:wpaper:2007-01\"},\"trust\":0.25043172}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/73207"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schneider, Friedrich","Torgler, Benno"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cra:wpaper:2007-01"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D73","D78","H2","H26","O17","O5","ddc:330","Shadow economy","tax morale","institutional quality","government intervention","corruption","Schattenwirtschaft","Steuermoral","Institutionelle Infrastruktur","Wirtschaftspolitik","Korruption","Schätzung","Welt"]},"trust":{"type":"FLOAT","value":0.25043172},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/73207\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries’ institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"eng\",\"subjects\":[\"D73\",\"D78\",\"H2\",\"H26\",\"O17\",\"O5\",\"ddc:330\",\"Shadow economy\",\"tax morale\",\"institutional quality\",\"government intervention\",\"corruption\",\"Schattenwirtschaft\",\"Steuermoral\",\"Institutionelle Infrastruktur\",\"Wirtschaftspolitik\",\"Korruption\",\"Schätzung\",\"Welt\"],\"creators\":[\"Schneider, Friedrich\",\"Torgler, Benno\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Johannes Kepler University of Linz, Department of Economics Linz\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/73207\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"id\":\"oai:RePEc:jku:econwp:2007_02\"},\"trust\":0.65333337}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/73207"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schneider, Friedrich","Torgler, Benno"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:jku:econwp:2007_02"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D73","D78","H2","H26","O17","O5","ddc:330","Shadow economy","tax morale","institutional quality","government intervention","corruption","Schattenwirtschaft","Steuermoral","Institutionelle Infrastruktur","Wirtschaftspolitik","Korruption","Schätzung","Welt"]},"trust":{"type":"FLOAT","value":0.65333337},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/33897\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries\\u0027 institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"eng\",\"subjects\":[\"ddc:330\",\"Schattenwirtschaft\",\"Steuermoral\",\"Institutionelle Infrastruktur\",\"Wirtschaftspolitik\",\"Korruption\",\"Schätzung\",\"Welt\"],\"creators\":[\"Torgler, Benno\",\"Schneider, Friedrich G.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Institute for the Study of Labor (IZA) Bonn\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/33897\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/73207\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/73207\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/73207\",\"id\":\"oai:econstor.eu:10419/73207\"},\"trust\":0.32553804}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/33897"},"target_publication_author_list":{"type":"LIST_STRING","value":["Torgler, Benno","Schneider, Friedrich G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/73207"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330","Schattenwirtschaft","Steuermoral","Institutionelle Infrastruktur","Wirtschaftspolitik","Korruption","Schätzung","Welt"]},"trust":{"type":"FLOAT","value":0.32553804},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/33897\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries\\u0027 institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"eng\",\"subjects\":[\"ddc:330\",\"Schattenwirtschaft\",\"Steuermoral\",\"Institutionelle Infrastruktur\",\"Wirtschaftspolitik\",\"Korruption\",\"Schätzung\",\"Welt\"],\"creators\":[\"Torgler, Benno\",\"Schneider, Friedrich G.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Institute for the Study of Labor (IZA) Bonn\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/33897\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/25944\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/25944\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/25944\",\"id\":\"oai:econstor.eu:10419/25944\"},\"trust\":0.19377738}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/33897"},"target_publication_author_list":{"type":"LIST_STRING","value":["Torgler, Benno","Schneider, Friedrich G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/25944"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330","Schattenwirtschaft","Steuermoral","Institutionelle Infrastruktur","Wirtschaftspolitik","Korruption","Schätzung","Welt"]},"trust":{"type":"FLOAT","value":0.19377738},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/33897\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries\\u0027 institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"eng\",\"subjects\":[\"ddc:330\",\"Schattenwirtschaft\",\"Steuermoral\",\"Institutionelle Infrastruktur\",\"Wirtschaftspolitik\",\"Korruption\",\"Schätzung\",\"Welt\"],\"creators\":[\"Torgler, Benno\",\"Schneider, Friedrich G.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Institute for the Study of Labor (IZA) Bonn\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/33897\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"id\":\"oai:RePEc:ces:ceswps:_1899\"},\"trust\":0.35114354}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/33897"},"target_publication_author_list":{"type":"LIST_STRING","value":["Torgler, Benno","Schneider, Friedrich G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ceswps:_1899"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330","Schattenwirtschaft","Steuermoral","Institutionelle Infrastruktur","Wirtschaftspolitik","Korruption","Schätzung","Welt"]},"trust":{"type":"FLOAT","value":0.35114354},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/33897\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries\\u0027 institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"eng\",\"subjects\":[\"ddc:330\",\"Schattenwirtschaft\",\"Steuermoral\",\"Institutionelle Infrastruktur\",\"Wirtschaftspolitik\",\"Korruption\",\"Schätzung\",\"Welt\"],\"creators\":[\"Torgler, Benno\",\"Schneider, Friedrich G.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Institute for the Study of Labor (IZA) Bonn\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/33897\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"id\":\"oai:RePEc:cra:wpaper:2007-01\"},\"trust\":0.608517}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/33897"},"target_publication_author_list":{"type":"LIST_STRING","value":["Torgler, Benno","Schneider, Friedrich G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cra:wpaper:2007-01"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330","Schattenwirtschaft","Steuermoral","Institutionelle Infrastruktur","Wirtschaftspolitik","Korruption","Schätzung","Welt"]},"trust":{"type":"FLOAT","value":0.608517},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/33897\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries\\u0027 institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"eng\",\"subjects\":[\"ddc:330\",\"Schattenwirtschaft\",\"Steuermoral\",\"Institutionelle Infrastruktur\",\"Wirtschaftspolitik\",\"Korruption\",\"Schätzung\",\"Welt\"],\"creators\":[\"Torgler, Benno\",\"Schneider, Friedrich G.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Institute for the Study of Labor (IZA) Bonn\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/33897\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"id\":\"oai:RePEc:jku:econwp:2007_02\"},\"trust\":0.69093}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/33897"},"target_publication_author_list":{"type":"LIST_STRING","value":["Torgler, Benno","Schneider, Friedrich G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:jku:econwp:2007_02"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330","Schattenwirtschaft","Steuermoral","Institutionelle Infrastruktur","Wirtschaftspolitik","Korruption","Schätzung","Welt"]},"trust":{"type":"FLOAT","value":0.69093},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/25944\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries\\u0027 institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"eng\",\"subjects\":[\"D73\",\"D78\",\"H2\",\"H26\",\"O17\",\"O5\",\"ddc:330\",\"Schattenwirtschaft\",\"Steuermoral\",\"Institutionelle Infrastruktur\",\"Wirtschaftspolitik\",\"Korruption\",\"Schätzung\",\"Welt\"],\"creators\":[\"Torgler, Benno\",\"Schneider, Friedrich G.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Center for Economic Studies and Ifo Institute (CESifo) Munich\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/25944\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/73207\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/73207\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/73207\",\"id\":\"oai:econstor.eu:10419/73207\"},\"trust\":0.03866136}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/25944"},"target_publication_author_list":{"type":"LIST_STRING","value":["Torgler, Benno","Schneider, Friedrich G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/73207"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D73","D78","H2","H26","O17","O5","ddc:330","Schattenwirtschaft","Steuermoral","Institutionelle Infrastruktur","Wirtschaftspolitik","Korruption","Schätzung","Welt"]},"trust":{"type":"FLOAT","value":0.03866136},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/25944\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries\\u0027 institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"eng\",\"subjects\":[\"D73\",\"D78\",\"H2\",\"H26\",\"O17\",\"O5\",\"ddc:330\",\"Schattenwirtschaft\",\"Steuermoral\",\"Institutionelle Infrastruktur\",\"Wirtschaftspolitik\",\"Korruption\",\"Schätzung\",\"Welt\"],\"creators\":[\"Torgler, Benno\",\"Schneider, Friedrich G.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Center for Economic Studies and Ifo Institute (CESifo) Munich\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/25944\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/33897\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/33897\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/33897\",\"id\":\"oai:econstor.eu:10419/33897\"},\"trust\":0.2568655}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/25944"},"target_publication_author_list":{"type":"LIST_STRING","value":["Torgler, Benno","Schneider, Friedrich G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/33897"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D73","D78","H2","H26","O17","O5","ddc:330","Schattenwirtschaft","Steuermoral","Institutionelle Infrastruktur","Wirtschaftspolitik","Korruption","Schätzung","Welt"]},"trust":{"type":"FLOAT","value":0.2568655},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/25944\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries\\u0027 institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"eng\",\"subjects\":[\"D73\",\"D78\",\"H2\",\"H26\",\"O17\",\"O5\",\"ddc:330\",\"Schattenwirtschaft\",\"Steuermoral\",\"Institutionelle Infrastruktur\",\"Wirtschaftspolitik\",\"Korruption\",\"Schätzung\",\"Welt\"],\"creators\":[\"Torgler, Benno\",\"Schneider, Friedrich G.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Center for Economic Studies and Ifo Institute (CESifo) Munich\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/25944\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"id\":\"oai:RePEc:ces:ceswps:_1899\"},\"trust\":0.64946306}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/25944"},"target_publication_author_list":{"type":"LIST_STRING","value":["Torgler, Benno","Schneider, Friedrich G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ceswps:_1899"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D73","D78","H2","H26","O17","O5","ddc:330","Schattenwirtschaft","Steuermoral","Institutionelle Infrastruktur","Wirtschaftspolitik","Korruption","Schätzung","Welt"]},"trust":{"type":"FLOAT","value":0.64946306},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/25944\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries\\u0027 institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"eng\",\"subjects\":[\"D73\",\"D78\",\"H2\",\"H26\",\"O17\",\"O5\",\"ddc:330\",\"Schattenwirtschaft\",\"Steuermoral\",\"Institutionelle Infrastruktur\",\"Wirtschaftspolitik\",\"Korruption\",\"Schätzung\",\"Welt\"],\"creators\":[\"Torgler, Benno\",\"Schneider, Friedrich G.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Center for Economic Studies and Ifo Institute (CESifo) Munich\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/25944\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"id\":\"oai:RePEc:cra:wpaper:2007-01\"},\"trust\":0.5715003}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/25944"},"target_publication_author_list":{"type":"LIST_STRING","value":["Torgler, Benno","Schneider, Friedrich G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cra:wpaper:2007-01"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D73","D78","H2","H26","O17","O5","ddc:330","Schattenwirtschaft","Steuermoral","Institutionelle Infrastruktur","Wirtschaftspolitik","Korruption","Schätzung","Welt"]},"trust":{"type":"FLOAT","value":0.5715003},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/25944\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries\\u0027 institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"eng\",\"subjects\":[\"D73\",\"D78\",\"H2\",\"H26\",\"O17\",\"O5\",\"ddc:330\",\"Schattenwirtschaft\",\"Steuermoral\",\"Institutionelle Infrastruktur\",\"Wirtschaftspolitik\",\"Korruption\",\"Schätzung\",\"Welt\"],\"creators\":[\"Torgler, Benno\",\"Schneider, Friedrich G.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Center for Economic Studies and Ifo Institute (CESifo) Munich\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/25944\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"id\":\"oai:RePEc:jku:econwp:2007_02\"},\"trust\":0.4659813}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/25944"},"target_publication_author_list":{"type":"LIST_STRING","value":["Torgler, Benno","Schneider, Friedrich G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:jku:econwp:2007_02"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D73","D78","H2","H26","O17","O5","ddc:330","Schattenwirtschaft","Steuermoral","Institutionelle Infrastruktur","Wirtschaftspolitik","Korruption","Schätzung","Welt"]},"trust":{"type":"FLOAT","value":0.4659813},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ceswps:_1899\",\"titles\":[\"The Impact of Tax Morale and Institutional Quality on the Shadow Economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries\\u0027 institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the size and development of the shadow economy. Relatively new data sources that have become available offer an exceptional opportunity to shed more light on a topic that is attracting increasing attention. We find strong support for the assertion that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"und\",\"subjects\":[\"shadow economy, tax morale, institutional quality, government intervention, corruption\"],\"creators\":[\"Benno Torgler\",\"Friedrich Schneider\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/73207\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/73207\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/73207\",\"id\":\"oai:econstor.eu:10419/73207\"},\"trust\":0.92116374}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ceswps:_1899"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benno Torgler","Friedrich Schneider"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/73207"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["shadow economy, tax morale, institutional quality, government intervention, corruption"]},"trust":{"type":"FLOAT","value":0.92116374},"target_publication_title":{"type":"STRING","value":"The Impact of Tax Morale and Institutional Quality on the Shadow Economy"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ceswps:_1899\",\"titles\":[\"The Impact of Tax Morale and Institutional Quality on the Shadow Economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries\\u0027 institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the size and development of the shadow economy. Relatively new data sources that have become available offer an exceptional opportunity to shed more light on a topic that is attracting increasing attention. We find strong support for the assertion that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"und\",\"subjects\":[\"shadow economy, tax morale, institutional quality, government intervention, corruption\"],\"creators\":[\"Benno Torgler\",\"Friedrich Schneider\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/33897\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/33897\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/33897\",\"id\":\"oai:econstor.eu:10419/33897\"},\"trust\":0.2255041}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ceswps:_1899"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benno Torgler","Friedrich Schneider"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/33897"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["shadow economy, tax morale, institutional quality, government intervention, corruption"]},"trust":{"type":"FLOAT","value":0.2255041},"target_publication_title":{"type":"STRING","value":"The Impact of Tax Morale and Institutional Quality on the Shadow Economy"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ceswps:_1899\",\"titles\":[\"The Impact of Tax Morale and Institutional Quality on the Shadow Economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries\\u0027 institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the size and development of the shadow economy. Relatively new data sources that have become available offer an exceptional opportunity to shed more light on a topic that is attracting increasing attention. We find strong support for the assertion that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"und\",\"subjects\":[\"shadow economy, tax morale, institutional quality, government intervention, corruption\"],\"creators\":[\"Benno Torgler\",\"Friedrich Schneider\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/25944\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/25944\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/25944\",\"id\":\"oai:econstor.eu:10419/25944\"},\"trust\":0.120967925}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ceswps:_1899"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benno Torgler","Friedrich Schneider"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/25944"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["shadow economy, tax morale, institutional quality, government intervention, corruption"]},"trust":{"type":"FLOAT","value":0.120967925},"target_publication_title":{"type":"STRING","value":"The Impact of Tax Morale and Institutional Quality on the Shadow Economy"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ceswps:_1899\",\"titles\":[\"The Impact of Tax Morale and Institutional Quality on the Shadow Economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries\\u0027 institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the size and development of the shadow economy. Relatively new data sources that have become available offer an exceptional opportunity to shed more light on a topic that is attracting increasing attention. We find strong support for the assertion that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"und\",\"subjects\":[\"shadow economy, tax morale, institutional quality, government intervention, corruption\"],\"creators\":[\"Benno Torgler\",\"Friedrich Schneider\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"id\":\"oai:RePEc:cra:wpaper:2007-01\"},\"trust\":0.50054395}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ceswps:_1899"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benno Torgler","Friedrich Schneider"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cra:wpaper:2007-01"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["shadow economy, tax morale, institutional quality, government intervention, corruption"]},"trust":{"type":"FLOAT","value":0.50054395},"target_publication_title":{"type":"STRING","value":"The Impact of Tax Morale and Institutional Quality on the Shadow Economy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ceswps:_1899\",\"titles\":[\"The Impact of Tax Morale and Institutional Quality on the Shadow Economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries\\u0027 institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the size and development of the shadow economy. Relatively new data sources that have become available offer an exceptional opportunity to shed more light on a topic that is attracting increasing attention. We find strong support for the assertion that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"und\",\"subjects\":[\"shadow economy, tax morale, institutional quality, government intervention, corruption\"],\"creators\":[\"Benno Torgler\",\"Friedrich Schneider\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"id\":\"oai:RePEc:jku:econwp:2007_02\"},\"trust\":0.97990346}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ceswps:_1899"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benno Torgler","Friedrich Schneider"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:jku:econwp:2007_02"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["shadow economy, tax morale, institutional quality, government intervention, corruption"]},"trust":{"type":"FLOAT","value":0.97990346},"target_publication_title":{"type":"STRING","value":"The Impact of Tax Morale and Institutional Quality on the Shadow Economy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cra:wpaper:2007-01\",\"titles\":[\"The Impact of Tax Morale and Institutional Quality on the Shadow Economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries? institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"und\",\"subjects\":[\"Shadow economy; tax morale; institutional quality; government intervention; corruption.\"],\"creators\":[\"Benno Torgler\",\"Friedrich Schneider\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/73207\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/73207\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/73207\",\"id\":\"oai:econstor.eu:10419/73207\"},\"trust\":0.7417298}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cra:wpaper:2007-01"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benno Torgler","Friedrich Schneider"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/73207"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Shadow economy; tax morale; institutional quality; government intervention; corruption."]},"trust":{"type":"FLOAT","value":0.7417298},"target_publication_title":{"type":"STRING","value":"The Impact of Tax Morale and Institutional Quality on the Shadow Economy"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cra:wpaper:2007-01\",\"titles\":[\"The Impact of Tax Morale and Institutional Quality on the Shadow Economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries? institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"und\",\"subjects\":[\"Shadow economy; tax morale; institutional quality; government intervention; corruption.\"],\"creators\":[\"Benno Torgler\",\"Friedrich Schneider\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/33897\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/33897\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/33897\",\"id\":\"oai:econstor.eu:10419/33897\"},\"trust\":0.02794981}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cra:wpaper:2007-01"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benno Torgler","Friedrich Schneider"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/33897"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Shadow economy; tax morale; institutional quality; government intervention; corruption."]},"trust":{"type":"FLOAT","value":0.02794981},"target_publication_title":{"type":"STRING","value":"The Impact of Tax Morale and Institutional Quality on the Shadow Economy"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cra:wpaper:2007-01\",\"titles\":[\"The Impact of Tax Morale and Institutional Quality on the Shadow Economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries? institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"und\",\"subjects\":[\"Shadow economy; tax morale; institutional quality; government intervention; corruption.\"],\"creators\":[\"Benno Torgler\",\"Friedrich Schneider\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/25944\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/25944\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/25944\",\"id\":\"oai:econstor.eu:10419/25944\"},\"trust\":0.69167525}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cra:wpaper:2007-01"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benno Torgler","Friedrich Schneider"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/25944"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Shadow economy; tax morale; institutional quality; government intervention; corruption."]},"trust":{"type":"FLOAT","value":0.69167525},"target_publication_title":{"type":"STRING","value":"The Impact of Tax Morale and Institutional Quality on the Shadow Economy"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cra:wpaper:2007-01\",\"titles\":[\"The Impact of Tax Morale and Institutional Quality on the Shadow Economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries? institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"und\",\"subjects\":[\"Shadow economy; tax morale; institutional quality; government intervention; corruption.\"],\"creators\":[\"Benno Torgler\",\"Friedrich Schneider\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"id\":\"oai:RePEc:ces:ceswps:_1899\"},\"trust\":0.44700116}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cra:wpaper:2007-01"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benno Torgler","Friedrich Schneider"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ceswps:_1899"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Shadow economy; tax morale; institutional quality; government intervention; corruption."]},"trust":{"type":"FLOAT","value":0.44700116},"target_publication_title":{"type":"STRING","value":"The Impact of Tax Morale and Institutional Quality on the Shadow Economy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cra:wpaper:2007-01\",\"titles\":[\"The Impact of Tax Morale and Institutional Quality on the Shadow Economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries? institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"und\",\"subjects\":[\"Shadow economy; tax morale; institutional quality; government intervention; corruption.\"],\"creators\":[\"Benno Torgler\",\"Friedrich Schneider\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"id\":\"oai:RePEc:jku:econwp:2007_02\"},\"trust\":0.82891166}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cra:wpaper:2007-01"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benno Torgler","Friedrich Schneider"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:jku:econwp:2007_02"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Shadow economy; tax morale; institutional quality; government intervention; corruption."]},"trust":{"type":"FLOAT","value":0.82891166},"target_publication_title":{"type":"STRING","value":"The Impact of Tax Morale and Institutional Quality on the Shadow Economy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:jku:econwp:2007_02\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries’ institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"und\",\"subjects\":[\"Shadow economy; tax morale; institutional quality; government intervention; corruption\"],\"creators\":[\"Friedrich Schneider\",\"Benno Torgler\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/73207\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/73207\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/73207\",\"id\":\"oai:econstor.eu:10419/73207\"},\"trust\":0.4335451}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:jku:econwp:2007_02"},"target_publication_author_list":{"type":"LIST_STRING","value":["Friedrich Schneider","Benno Torgler"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/73207"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Shadow economy; tax morale; institutional quality; government intervention; corruption"]},"trust":{"type":"FLOAT","value":0.4335451},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:jku:econwp:2007_02\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries’ institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"und\",\"subjects\":[\"Shadow economy; tax morale; institutional quality; government intervention; corruption\"],\"creators\":[\"Friedrich Schneider\",\"Benno Torgler\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/33897\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/33897\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/33897\",\"id\":\"oai:econstor.eu:10419/33897\"},\"trust\":0.115231514}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:jku:econwp:2007_02"},"target_publication_author_list":{"type":"LIST_STRING","value":["Friedrich Schneider","Benno Torgler"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/33897"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Shadow economy; tax morale; institutional quality; government intervention; corruption"]},"trust":{"type":"FLOAT","value":0.115231514},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:jku:econwp:2007_02\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries’ institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"und\",\"subjects\":[\"Shadow economy; tax morale; institutional quality; government intervention; corruption\"],\"creators\":[\"Friedrich Schneider\",\"Benno Torgler\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/25944\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/25944\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/25944\",\"id\":\"oai:econstor.eu:10419/25944\"},\"trust\":0.4134118}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:jku:econwp:2007_02"},"target_publication_author_list":{"type":"LIST_STRING","value":["Friedrich Schneider","Benno Torgler"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/25944"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Shadow economy; tax morale; institutional quality; government intervention; corruption"]},"trust":{"type":"FLOAT","value":0.4134118},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:jku:econwp:2007_02\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries’ institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"und\",\"subjects\":[\"Shadow economy; tax morale; institutional quality; government intervention; corruption\"],\"creators\":[\"Friedrich Schneider\",\"Benno Torgler\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2007/wp-cesifo-2007-01/cesifo1_wp1899.pdf\",\"id\":\"oai:RePEc:ces:ceswps:_1899\"},\"trust\":0.34029627}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:jku:econwp:2007_02"},"target_publication_author_list":{"type":"LIST_STRING","value":["Friedrich Schneider","Benno Torgler"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ceswps:_1899"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Shadow economy; tax morale; institutional quality; government intervention; corruption"]},"trust":{"type":"FLOAT","value":0.34029627},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:jku:econwp:2007_02\",\"titles\":[\"The impact of tax morale and institutional quality on the shadow economy\"],\"abstracts\":[\"This paper analyses how tax morale and countries’ institutional quality affect the shadow economy, controlling in a multivariate analysis for a variety of potential factors. The literature strongly emphasizes the quantitative importance of these factors to understand the level and changes of shadow economy. Relatively new available data sources offer the unique opportunity to shed more light in the understanding of a topic that has received an increased attention. We find strong support that a higher tax morale and a higher institutional quality lead to a smaller shadow economy.\"],\"language\":\"und\",\"subjects\":[\"Shadow economy; tax morale; institutional quality; government intervention; corruption\"],\"creators\":[\"Friedrich Schneider\",\"Benno Torgler\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.econ.jku.at/papers/2007/wp0702.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.crema-research.ch/papers/2007-01.pdf\",\"id\":\"oai:RePEc:cra:wpaper:2007-01\"},\"trust\":0.6275453}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:jku:econwp:2007_02"},"target_publication_author_list":{"type":"LIST_STRING","value":["Friedrich Schneider","Benno Torgler"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cra:wpaper:2007-01"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Shadow economy; tax morale; institutional quality; government intervention; corruption"]},"trust":{"type":"FLOAT","value":0.6275453},"target_publication_title":{"type":"STRING","value":"The impact of tax morale and institutional quality on the shadow economy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:comum.rcaap.pt:10400.26/7288\",\"titles\":[\"Identificação de perigos e avaliação de riscos nas operações de carga e descarga numa empresa de tratamento e valorização de resíduos\"],\"abstracts\":[\"Pós-Graduação em Segurança e Higiene no Trabalho\",\"O projeto final em contexto real de trabalho surge como um requisito da ACT – Autoridade para as Condições do Trabalho, para a obtenção do grau de Técnico Superior de Segurança e Higiene no Trabalho e encontra-se enquadrado no 1.º ano do Mestrado em Segurança e Higiene no Trabalho, realizado no ano letivo de 2013/2014 na Escola Superior de Tecnologia de Setúbal em parceria com a Escola Superior de Ciências Empresarias. O trabalho desenvolvido, realizado na empresa Recifemetal integrada no grupo Ambigroup, S.A., teve como principal objetivo a Identificação de Perigos e Avaliação de Riscos, nas operações de carga e descarga de veículos e ainda o levantamento dos controlos existentes, de modo a avaliar as condições de segurança em que as operações referidas são efetuadas. Assim, procedeu-se a um levantamento/identificação de perigos, através da observação in loco das operações de carga/descarga de veículos e posteriormente foi efetuada a respetiva avaliação de riscos, utilizando a metodologia que foi implementada pela própria empresa. Foram ainda propostas medidas de controlo de riscos, com o objetivo de minimizar ou eliminar a ocorrência dos mesmos, de forma a que estas operações sejam efetuadas em segurança. Com os resultados obtidos, torna-se possível identificar as situações de perigo/risco que carecem de especial atenção, atuando sobre as que necessitem de medidas de controlo urgentes, tendo sempre em atenção a segurança dos trabalhadores.\"],\"language\":\"por\",\"subjects\":[\"Avaliação de riscos\",\"Perigo\",\"Controlo de riscos\",\"Resíduos\",\"Prevenção\",\"PGSHT\"],\"creators\":[\"Encarnação, José Manuel Passeira\"],\"publicationdate\":\"2014-09-29\",\"publisher\":\"Escola Superior de Tecnologia do Instituto Politécnico de Setúbal\",\"embargoenddate\":\"\",\"contributor\":[\"Gamelas, Carla\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repositório Comum\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10400.26/7288\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Comum\",\"instancetype\":\"Master thesis\"},{\"url\":\"http://comum.rcaap.pt/handle/123456789/7288\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Comum\",\"instancetype\":\"Master thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://comum.rcaap.pt/handle/123456789/7288\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Comum\",\"instancetype\":\"Master thesis\"}]},\"provenance\":{\"repositoryName\":\"Repositório Comum\",\"url\":\"http://comum.rcaap.pt/handle/123456789/7288\",\"id\":\"oai:comum.rcaap.pt:123456789/7288\"},\"trust\":0.7841196}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repositório Comum"},"target_publication_id":{"type":"STRING","value":"oai:comum.rcaap.pt:10400.26/7288"},"target_publication_author_list":{"type":"LIST_STRING","value":["Encarnação, José Manuel Passeira"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:comum.rcaap.pt:123456789/7288"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::798ed7d4ee7138d49b8828958048130a"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Avaliação de riscos","Perigo","Controlo de riscos","Resíduos","Prevenção","PGSHT"]},"trust":{"type":"FLOAT","value":0.7841196},"target_publication_title":{"type":"STRING","value":"Identificação de perigos e avaliação de riscos nas operações de carga e descarga numa empresa de tratamento e valorização de resíduos"},"provenance_datasource_name":{"type":"STRING","value":"Repositório Comum"},"target_dateofacceptance":{"type":"DATE","value":"2014-09-29"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::798ed7d4ee7138d49b8828958048130a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:comum.rcaap.pt:123456789/7288\",\"titles\":[\"Identificação de perigos e avaliação de riscos nas operações de carga e descarga numa empresa de tratamento e valorização de resíduos\"],\"abstracts\":[\"Pós-Graduação em Segurança e Higiene no Trabalho\",\"O projeto final em contexto real de trabalho surge como um requisito da ACT – Autoridade para as Condições do Trabalho, para a obtenção do grau de Técnico Superior de Segurança e Higiene no Trabalho e encontra-se enquadrado no 1.º ano do Mestrado em Segurança e Higiene no Trabalho, realizado no ano letivo de 2013/2014 na Escola Superior de Tecnologia de Setúbal em parceria com a Escola Superior de Ciências Empresarias. O trabalho desenvolvido, realizado na empresa Recifemetal integrada no grupo Ambigroup, S.A., teve como principal objetivo a Identificação de Perigos e Avaliação de Riscos, nas operações de carga e descarga de veículos e ainda o levantamento dos controlos existentes, de modo a avaliar as condições de segurança em que as operações referidas são efetuadas. Assim, procedeu-se a um levantamento/identificação de perigos, através da observação in loco das operações de carga/descarga de veículos e posteriormente foi efetuada a respetiva avaliação de riscos, utilizando a metodologia que foi implementada pela própria empresa. Foram ainda propostas medidas de controlo de riscos, com o objetivo de minimizar ou eliminar a ocorrência dos mesmos, de forma a que estas operações sejam efetuadas em segurança. Com os resultados obtidos, torna-se possível identificar as situações de perigo/risco que carecem de especial atenção, atuando sobre as que necessitem de medidas de controlo urgentes, tendo sempre em atenção a segurança dos trabalhadores.\"],\"language\":\"por\",\"subjects\":[\"Avaliação de riscos\",\"Perigo\",\"Controlo de riscos\",\"Resíduos\",\"Prevenção\",\"PGSHT\"],\"creators\":[\"Encarnação, José Manuel Passeira\"],\"publicationdate\":\"2014-09-29\",\"publisher\":\"Escola Superior de Tecnologia do Instituto Politécnico de Setúbal\",\"embargoenddate\":\"\",\"contributor\":[\"Gamelas, Carla\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repositório Comum\"],\"pids\":[],\"instances\":[{\"url\":\"http://comum.rcaap.pt/handle/123456789/7288\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Comum\",\"instancetype\":\"Master thesis\"},{\"url\":\"http://hdl.handle.net/10400.26/7288\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Comum\",\"instancetype\":\"Master thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10400.26/7288\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Comum\",\"instancetype\":\"Master thesis\"}]},\"provenance\":{\"repositoryName\":\"Repositório Comum\",\"url\":\"http://hdl.handle.net/10400.26/7288\",\"id\":\"oai:comum.rcaap.pt:10400.26/7288\"},\"trust\":0.6126318}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repositório Comum"},"target_publication_id":{"type":"STRING","value":"oai:comum.rcaap.pt:123456789/7288"},"target_publication_author_list":{"type":"LIST_STRING","value":["Encarnação, José Manuel Passeira"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:comum.rcaap.pt:10400.26/7288"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::798ed7d4ee7138d49b8828958048130a"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Avaliação de riscos","Perigo","Controlo de riscos","Resíduos","Prevenção","PGSHT"]},"trust":{"type":"FLOAT","value":0.6126318},"target_publication_title":{"type":"STRING","value":"Identificação de perigos e avaliação de riscos nas operações de carga e descarga numa empresa de tratamento e valorização de resíduos"},"provenance_datasource_name":{"type":"STRING","value":"Repositório Comum"},"target_dateofacceptance":{"type":"DATE","value":"2014-09-29"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::798ed7d4ee7138d49b8828958048130a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:openaccess.leidenuniv.nl:1887/5865\",\"titles\":[\"Epochs of maximum of three variable stars of long period\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Hoof, A.\"],\"publicationdate\":\"1936-01-01\",\"publisher\":\"North Holland Publishing Company\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at University Leiden\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/1887/5865\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at University Leiden\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1887/5865\",\"license\":\"OPEN\",\"hostedby\":\"Leiden University Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1887/5865\",\"license\":\"OPEN\",\"hostedby\":\"Leiden University Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1887/5865\",\"id\":\"ul:oai:openaccess.leidenuniv.nl:1887/5865\"},\"trust\":0.7510467}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at University Leiden"},"target_publication_id":{"type":"STRING","value":"oai:openaccess.leidenuniv.nl:1887/5865"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hoof, A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["ul:oai:openaccess.leidenuniv.nl:1887/5865"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.7510467},"target_publication_title":{"type":"STRING","value":"Epochs of maximum of three variable stars of long period"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1936-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::854d6fae5ee42911677c739ee1734486"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2621679\",\"titles\":[\"Robust absolute magnetometry with organic thin-film devices\"],\"abstracts\":[\"Magnetic field sensors based on organic thin-film materials have attracted considerable interest in recent years as they can be manufactured at very low cost and on flexible substrates. However, the technological relevance of such magnetoresistive sensors is limited owing to their narrow magnetic field ranges (∼30 mT) and the continuous calibration required to compensate temperature fluctuations and material degradation. Conversely, magnetic resonance (MR)-based sensors, which utilize fundamental physical relationships for extremely precise measurements of fields, are usually large and expensive. Here we demonstrate an organic magnetic resonance-based magnetometer, employing spin-dependent electronic transitions in an organic diode, which combines the low-cost thin-film fabrication and integration properties of organic electronics with the precision of a MR-based sensor. We show that the device never requires calibration, operates over large temperature and magnetic field ranges, is robust against materials degradation and allows for absolute sensitivities of \\u003c50 nT Hz−1/2.\",\"Magnetometers based on organic magnetoresistance are limited by narrow sensitivity ranges, degradation and temperature fluctuations. Baker et al. demonstrate a magnetic resonance-based organic thin film magnetometer, which overcomes these drawbacks by exploiting the metrological nature of magnetic resonance.\"],\"language\":\"eng\",\"subjects\":[\"Article\"],\"creators\":[\"Baker, W. J.\",\"Ambal, K.\",\"Waters, D. P.\",\"Baarda, R.\",\"Morishita, H.\",\"Schooten, K.\",\"Mccamey, D. R.\",\"Lupton, J. M.\",\"Boehme, C.\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"Nature Pub. Group\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Nature Communications\",\"issn\":\"\",\"eissn\":\"2041-1723\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1038/ncomms1895\",\"type\":\"doi\"},{\"value\":\"PMC3621415\",\"type\":\"pmc\"},{\"value\":\"22692541\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3621415\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://epub.uni-regensburg.de/26688/\",\"license\":\"OPEN\",\"hostedby\":\"University of Regensburg Publication Server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://epub.uni-regensburg.de/26688/\",\"license\":\"OPEN\",\"hostedby\":\"University of Regensburg Publication Server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"University of Regensburg Publication Server\",\"url\":\"http://epub.uni-regensburg.de/26688/\",\"id\":\"oai:epub.uni-regensburg.de:26688\"},\"trust\":0.011550665}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2621679"},"target_publication_author_list":{"type":"LIST_STRING","value":["Baker, W. J.","Ambal, K.","Waters, D. P.","Baarda, R.","Morishita, H.","Schooten, K.","Mccamey, D. R.","Lupton, J. M.","Boehme, C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:epub.uni-regensburg.de:26688"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::addfa9b7e234254d26e9c7f2af1005cb"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article"]},"trust":{"type":"FLOAT","value":0.011550665},"target_publication_title":{"type":"STRING","value":"Robust absolute magnetometry with organic thin-film devices"},"provenance_datasource_name":{"type":"STRING","value":"University of Regensburg Publication Server"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:epub.uni-regensburg.de:26688\",\"titles\":[\"Robust absolute magnetometry with organic thin-film devices\"],\"abstracts\":[\"Magnetic field sensors based on organic thin-film materials have attracted considerable interest in recent years as they can be manufactured at very low cost and on flexible substrates. However, the technological relevance of such magnetoresistive sensors is limited owing to their narrow magnetic field ranges (~30 mT) and the continuous calibration required to compensate temperature fluctuations and material degradation. Conversely, magnetic resonance (MR)-based sensors, which utilize fundamental physical relationships for extremely precise measurements of fields, are usually large and expensive. Here we demonstrate an organic magnetic resonance-based magnetometer, employing spin-dependent electronic transitions in an organic diode, which combines the low-cost thin-film fabrication and integration properties of organic electronics with the precision of a MR-based sensor. We show that the device never requires calibration, operates over large temperature and magnetic field ranges, is robust against materials degradation and allows for absolute sensitivities of \\u003c50 nT Hz^(−1/2).\"],\"language\":\"eng\",\"subjects\":[\"530 Physik\"],\"creators\":[\"Baker, W. J.\",\"Ambal, K.\",\"Waters, D. P.\",\"Baarda, R.\",\"Morishita, H.\",\"Schooten, K.\",\"Mccamey, D. R.\",\"Lupton, J. M.\",\"Boehme, C.\"],\"publicationdate\":\"2012-06-12\",\"publisher\":\"Nature Publishing Group/Macmillan Publishers Limited\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"University of Regensburg Publication Server\"],\"pids\":[{\"value\":\"10.1038/ncomms1895\",\"type\":\"doi\"},{\"value\":\"PMC3621415\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://epub.uni-regensburg.de/26688/\",\"license\":\"OPEN\",\"hostedby\":\"University of Regensburg Publication Server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3621415\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3621415\",\"id\":\"oai:europepmc.org:2621679\"},\"trust\":0.8534074}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"University of Regensburg Publication Server"},"target_publication_id":{"type":"STRING","value":"oai:epub.uni-regensburg.de:26688"},"target_publication_author_list":{"type":"LIST_STRING","value":["Baker, W. J.","Ambal, K.","Waters, D. P.","Baarda, R.","Morishita, H.","Schooten, K.","Mccamey, D. R.","Lupton, J. M.","Boehme, C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2621679"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["530 Physik"]},"trust":{"type":"FLOAT","value":0.8534074},"target_publication_title":{"type":"STRING","value":"Robust absolute magnetometry with organic thin-film devices"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-12"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::addfa9b7e234254d26e9c7f2af1005cb"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:epub.uni-regensburg.de:26688\",\"titles\":[\"Robust absolute magnetometry with organic thin-film devices\"],\"abstracts\":[\"Magnetic field sensors based on organic thin-film materials have attracted considerable interest in recent years as they can be manufactured at very low cost and on flexible substrates. However, the technological relevance of such magnetoresistive sensors is limited owing to their narrow magnetic field ranges (~30 mT) and the continuous calibration required to compensate temperature fluctuations and material degradation. Conversely, magnetic resonance (MR)-based sensors, which utilize fundamental physical relationships for extremely precise measurements of fields, are usually large and expensive. Here we demonstrate an organic magnetic resonance-based magnetometer, employing spin-dependent electronic transitions in an organic diode, which combines the low-cost thin-film fabrication and integration properties of organic electronics with the precision of a MR-based sensor. We show that the device never requires calibration, operates over large temperature and magnetic field ranges, is robust against materials degradation and allows for absolute sensitivities of \\u003c50 nT Hz^(−1/2).\"],\"language\":\"eng\",\"subjects\":[\"530 Physik\"],\"creators\":[\"Baker, W. J.\",\"Ambal, K.\",\"Waters, D. P.\",\"Baarda, R.\",\"Morishita, H.\",\"Schooten, K.\",\"Mccamey, D. R.\",\"Lupton, J. M.\",\"Boehme, C.\"],\"publicationdate\":\"2012-06-12\",\"publisher\":\"Nature Publishing Group/Macmillan Publishers Limited\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"University of Regensburg Publication Server\"],\"pids\":[{\"value\":\"10.1038/ncomms1895\",\"type\":\"doi\"},{\"value\":\"22692541\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://epub.uni-regensburg.de/26688/\",\"license\":\"OPEN\",\"hostedby\":\"University of Regensburg Publication Server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"22692541\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3621415\",\"id\":\"oai:europepmc.org:2621679\"},\"trust\":0.8534074}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"University of Regensburg Publication Server"},"target_publication_id":{"type":"STRING","value":"oai:epub.uni-regensburg.de:26688"},"target_publication_author_list":{"type":"LIST_STRING","value":["Baker, W. J.","Ambal, K.","Waters, D. P.","Baarda, R.","Morishita, H.","Schooten, K.","Mccamey, D. R.","Lupton, J. M.","Boehme, C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2621679"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["530 Physik"]},"trust":{"type":"FLOAT","value":0.8534074},"target_publication_title":{"type":"STRING","value":"Robust absolute magnetometry with organic thin-film devices"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-12"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::addfa9b7e234254d26e9c7f2af1005cb"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2886677\",\"titles\":[\"Utilization of biodegradable polymeric materials as delivery agents in dermatology\"],\"abstracts\":[\"Biodegradable polymeric materials are ideal carrier systems for biomedical applications. Features like controlled and sustained delivery, improved drug pharmacokinetics, reduced side effects and safe degradation make the use of these materials very attractive in a lot of medical fields, with dermatology included. A number of studies have shown that particle-based formulations can improve the skin penetration of topically applied drugs. However, for a successful translation of these promising results into a clinical application, a more rational approach is needed to take into account the different properties of diseased skin and the fate of these polymeric materials after topical application. In fact, each pathological skin condition poses different challenges and the way diseased skin interacts with polymeric carriers might be markedly different to that of healthy skin. In most inflammatory skin conditions, the skin’s barrier is impaired and the local immune system is activated. A better understanding of such mechanisms has the potential to improve the efficacy of carrier-based dermatotherapy. Such knowledge would allow the informed choice of the type of polymeric carrier depending on the skin condition to be treated, the type of drug to be loaded, and the desired release kinetics. Furthermore, a better control of polymer degradation and release properties in accordance with the skin environment would improve the safety and the selectivity of drug release. This review aims at summarizing the current knowledge on how polymeric delivery systems interact with healthy and diseased skin, giving an overview of the challenges that different pathological skin conditions pose to the development of safer and more specific dermatotherapies.\"],\"language\":\"eng\",\"subjects\":[\"Review\",\"nanocarriers\",\"nanoparticles\",\"biodegradable polymers\",\"skin penetration\",\"hair follicles\"],\"creators\":[\"Rancan, Fiorenza\",\"Blume-Peytavi, Ulrike\",\"Vogt, Annika\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"Dove Medical Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Clinical, Cosmetic and Investigational Dermatology\",\"issn\":\"\",\"eissn\":\"1178-7015\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.2147/CCID.S39559\",\"type\":\"doi\"},{\"value\":\"PMC3891488\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3891488\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.dovepress.com/utilization-of-biodegradable-polymeric-materials-as-delivery-agents-in-a15461\",\"license\":\"OPEN\",\"hostedby\":\"Clinical, Cosmetic and Investigational Dermatology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.dovepress.com/utilization-of-biodegradable-polymeric-materials-as-delivery-agents-in-a15461\",\"license\":\"OPEN\",\"hostedby\":\"Clinical, Cosmetic and Investigational Dermatology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.dovepress.com/utilization-of-biodegradable-polymeric-materials-as-delivery-agents-in-a15461\",\"id\":\"oai:doaj.org/article:c9326395647e4c8db08f8a0722ce4ca8\"},\"trust\":0.96599954}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2886677"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rancan, Fiorenza","Blume-Peytavi, Ulrike","Vogt, Annika"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:c9326395647e4c8db08f8a0722ce4ca8"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Review","nanocarriers","nanoparticles","biodegradable polymers","skin penetration","hair follicles"]},"trust":{"type":"FLOAT","value":0.96599954},"target_publication_title":{"type":"STRING","value":"Utilization of biodegradable polymeric materials as delivery agents in dermatology"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/37757\",\"titles\":[\"Lucha empresarial en Europa\"],\"abstracts\":[\"\\\"López Muñoz, Arturo\\\" también ha firmado sus artículos como \\\"Cabello, Arturo\\\"\",\"\\\"Este Artículo pertenece a la sección Economía. \\\"\"],\"language\":\"esl/spa\",\"subjects\":[\"Economía\",\"Economía europea\"],\"creators\":[\"López Muñoz, Arturo\"],\"publicationdate\":\"1967-01-28\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/37757\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10234/75148\",\"license\":\"OPEN\",\"hostedby\":\"Repositori Institucional de la Universitat Jaume I\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10234/75148\",\"license\":\"OPEN\",\"hostedby\":\"Repositori Institucional de la Universitat Jaume I\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Repositori Institucional de la Universitat Jaume I\",\"url\":\"http://hdl.handle.net/10234/75148\",\"id\":\"oai:repositori.uji.es:10234/75148\"},\"trust\":0.8861147}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/37757"},"target_publication_author_list":{"type":"LIST_STRING","value":["López Muñoz, Arturo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repositori.uji.es:10234/75148"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::cfa5301358b9fcbe7aa45b1ceea088c6"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Economía","Economía europea"]},"trust":{"type":"FLOAT","value":0.8861147},"target_publication_title":{"type":"STRING","value":"Lucha empresarial en Europa"},"provenance_datasource_name":{"type":"STRING","value":"Repositori Institucional de la Universitat Jaume I"},"target_dateofacceptance":{"type":"DATE","value":"1967-01-28"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repositori.uji.es:10234/75148\",\"titles\":[\"Lucha empresarial en Europa\"],\"abstracts\":[\"López Muñoz, Arturo también ha firmado sus artículos como Cabello, Arturo\",\"Este Artículo pertenece a la sección Economía.\"],\"language\":\"esl/spa\",\"subjects\":[\"Economía\",\"Economía europea\"],\"creators\":[\"López Muñoz, Arturo\"],\"publicationdate\":\"1967-01-28\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repositori Institucional de la Universitat Jaume I\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10234/75148\",\"license\":\"OPEN\",\"hostedby\":\"Repositori Institucional de la Universitat Jaume I\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10366/37757\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/37757\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/37757\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/37757\"},\"trust\":0.06727487}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repositori Institucional de la Universitat Jaume I"},"target_publication_id":{"type":"STRING","value":"oai:repositori.uji.es:10234/75148"},"target_publication_author_list":{"type":"LIST_STRING","value":["López Muñoz, Arturo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/37757"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Economía","Economía europea"]},"trust":{"type":"FLOAT","value":0.06727487},"target_publication_title":{"type":"STRING","value":"Lucha empresarial en Europa"},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"1967-01-28"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::cfa5301358b9fcbe7aa45b1ceea088c6"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:wbk:wbpubs:9517\",\"titles\":[\"Parliament\\u0027s Role in Poverty Reduction Strategies\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Governance - Parliamentary Government Poverty Reduction - Rural Poverty Reduction Public Sector Corruption and Anticorruption Measures Poverty Monitoring and Analysis Poverty Reduction - Achieving Shared Growth Public Sector Development\"],\"creators\":[\"Cindy Kroon\",\"Rick Stapenhurst\"],\"publicationdate\":\"2008-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://openknowledge.worldbank.org/bitstream/handle/10986/9517/448880BRI0Box311PUBLIC10CDBriefNo26.pdf?sequence\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://openknowledge.worldbank.org/bitstream/handle/10986/9517/448880BRI0Box311PUBLIC10CDBriefNo26.pdf?sequence\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://openknowledge.worldbank.org/bitstream/handle/10986/9517/448880BRI0Box311PUBLIC10CDBriefNo26.pdf?sequence\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://openknowledge.worldbank.org/bitstream/handle/10986/9517/448880BRI0Box311PUBLIC10CDBriefNo26.pdf?sequence\\u003d1\",\"id\":\"oai:RePEc:wbk:wboper:9517\"},\"trust\":0.5736942}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:wbk:wbpubs:9517"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cindy Kroon","Rick Stapenhurst"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wbk:wboper:9517"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Governance - Parliamentary Government Poverty Reduction - Rural Poverty Reduction Public Sector Corruption and Anticorruption Measures Poverty Monitoring and Analysis Poverty Reduction - Achieving Shared Growth Public Sector Development"]},"trust":{"type":"FLOAT","value":0.5736942},"target_publication_title":{"type":"STRING","value":"Parliament\u0027s Role in Poverty Reduction Strategies"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:wbk:wboper:9517\",\"titles\":[\"Parliament\\u0027s Role in Poverty Reduction Strategies\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Governance - Parliamentary Government Poverty Reduction - Rural Poverty Reduction Public Sector Corruption and Anticorruption Measures Poverty Monitoring and Analysis Poverty Reduction - Achieving Shared Growth Public Sector Development\"],\"creators\":[\"Cindy Kroon\",\"Rick Stapenhurst\"],\"publicationdate\":\"2008-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://openknowledge.worldbank.org/bitstream/handle/10986/9517/448880BRI0Box311PUBLIC10CDBriefNo26.pdf?sequence\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://openknowledge.worldbank.org/bitstream/handle/10986/9517/448880BRI0Box311PUBLIC10CDBriefNo26.pdf?sequence\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://openknowledge.worldbank.org/bitstream/handle/10986/9517/448880BRI0Box311PUBLIC10CDBriefNo26.pdf?sequence\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://openknowledge.worldbank.org/bitstream/handle/10986/9517/448880BRI0Box311PUBLIC10CDBriefNo26.pdf?sequence\\u003d1\",\"id\":\"oai:RePEc:wbk:wbpubs:9517\"},\"trust\":0.4710744}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:wbk:wboper:9517"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cindy Kroon","Rick Stapenhurst"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wbk:wbpubs:9517"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Governance - Parliamentary Government Poverty Reduction - Rural Poverty Reduction Public Sector Corruption and Anticorruption Measures Poverty Monitoring and Analysis Poverty Reduction - Achieving Shared Growth Public Sector Development"]},"trust":{"type":"FLOAT","value":0.4710744},"target_publication_title":{"type":"STRING","value":"Parliament\u0027s Role in Poverty Reduction Strategies"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:DiVA.org:su-8617\",\"titles\":[\"Bilingual practices in the process of initiating and resolving lexical problems in students\\u0027 collaborative writing sessions\"],\"abstracts\":[\"This study deals with the sequential organization of language choice and code-switching between Persian as a first language and Swedish as a second language in the process of initiating and resolving a problem of understanding and producing the correct version of a lexical item. The data consist of detailed transcripts of audio tapings of two bilingual students’ collaborative writing sessions within the frame of a one-year master’s program in computer science in a multilingual setting at a Swedish university. The students, both Persianspeaking, are advanced speakers of Swedish as a second language. For this article, four lexical language-related episodes, where code-switching between Persian and Swedish occurs, are analyzed. The analyzed excerpts in this article are drawn from a corpus of data consisting of language-related episodes identified and transcribed in  the audio tapings. We employ a conversation analysis (CA) approach for the analysis of bilingual interaction. This means that the meaning of the code-switching in the interaction is described in terms of both global (the conversational activity at large) and local interactional factors. In the analysis, a close step-by-step analysis of the turn-taking procedures demonstrates how the communicative meaning of the students’ bilingual behavior in a lexical episode is determined in its local production in the emerging conversational context and how it can be explicated as part of the following social actions: drawing attention to a problem, seeking alliance when a problem is made explicit and confirming intersubjective understanding when the problem is resolved. \",\"PAVA\"],\"language\":\"eng\",\"subjects\":[\"bilingual practices\",\"conversation analysis\",\"Swedish as a second language\",\"collaborative writing sessions\",\"language-related episodes\",\"lexical problems\",\"repair organization.\",\"Bilingualism\",\"Tvåspråkighet\"],\"creators\":[\"Jansson, Gunilla\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Sage Publications\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Publikationer från Stockholms universitet\"],\"pids\":[{\"value\":\"10.1177/13670069070110020201\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-8617\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Stockholms universitet\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hprints.org/hprints-00475203\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hprints.org/hprints-00475203\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hprints.org/hprints-00475203\",\"id\":\"oai:hprints.org:hprints-00475203\"},\"trust\":0.15232366}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Publikationer från Stockholms universitet"},"target_publication_id":{"type":"STRING","value":"oai:DiVA.org:su-8617"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jansson, Gunilla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hprints.org:hprints-00475203"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["bilingual practices","conversation analysis","Swedish as a second language","collaborative writing sessions","language-related episodes","lexical problems","repair organization.","Bilingualism","Tvåspråkighet"]},"trust":{"type":"FLOAT","value":0.15232366},"target_publication_title":{"type":"STRING","value":"Bilingual practices in the process of initiating and resolving lexical problems in students\u0027 collaborative writing sessions"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8c19f571e251e61cb8dd3612f26d5ecf"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:DiVA.org:su-8617\",\"titles\":[\"Bilingual practices in the process of initiating and resolving lexical problems in students\\u0027 collaborative writing sessions\"],\"abstracts\":[\"This study deals with the sequential organization of language choice and code-switching between Persian as a first language and Swedish as a second language in the process of initiating and resolving a problem of understanding and producing the correct version of a lexical item. The data consist of detailed transcripts of audio tapings of two bilingual students’ collaborative writing sessions within the frame of a one-year master’s program in computer science in a multilingual setting at a Swedish university. The students, both Persianspeaking, are advanced speakers of Swedish as a second language. For this article, four lexical language-related episodes, where code-switching between Persian and Swedish occurs, are analyzed. The analyzed excerpts in this article are drawn from a corpus of data consisting of language-related episodes identified and transcribed in  the audio tapings. We employ a conversation analysis (CA) approach for the analysis of bilingual interaction. This means that the meaning of the code-switching in the interaction is described in terms of both global (the conversational activity at large) and local interactional factors. In the analysis, a close step-by-step analysis of the turn-taking procedures demonstrates how the communicative meaning of the students’ bilingual behavior in a lexical episode is determined in its local production in the emerging conversational context and how it can be explicated as part of the following social actions: drawing attention to a problem, seeking alliance when a problem is made explicit and confirming intersubjective understanding when the problem is resolved. \",\"PAVA\"],\"language\":\"eng\",\"subjects\":[\"bilingual practices\",\"conversation analysis\",\"Swedish as a second language\",\"collaborative writing sessions\",\"language-related episodes\",\"lexical problems\",\"repair organization.\",\"Bilingualism\",\"Tvåspråkighet\"],\"creators\":[\"Jansson, Gunilla\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Sage Publications\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Publikationer från Stockholms universitet\"],\"pids\":[{\"value\":\"10.1177/13670069070110020201\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-8617\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Stockholms universitet\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hprints.org/hprints-00475203\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hprints.org/hprints-00475203\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hprints.org/hprints-00475203\",\"id\":\"oai:HAL:hprints-00475203v1\"},\"trust\":0.31831908}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Publikationer från Stockholms universitet"},"target_publication_id":{"type":"STRING","value":"oai:DiVA.org:su-8617"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jansson, Gunilla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hprints-00475203v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["bilingual practices","conversation analysis","Swedish as a second language","collaborative writing sessions","language-related episodes","lexical problems","repair organization.","Bilingualism","Tvåspråkighet"]},"trust":{"type":"FLOAT","value":0.31831908},"target_publication_title":{"type":"STRING","value":"Bilingual practices in the process of initiating and resolving lexical problems in students\u0027 collaborative writing sessions"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8c19f571e251e61cb8dd3612f26d5ecf"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:hprints.org:hprints-00475203\",\"titles\":[\"Bilingual practices in the process of initiating and resolving lexical problems in students\\u0027 collaborative writing sessions\"],\"abstracts\":[\"This study deals with the sequential organization of language choice and code-switching between Persian as a first language and Swedish as a second language in the process of initiating and resolving a problem of understanding and producing the correct version of a lexical item. The data consist of detailed transcripts of audio tapings of two bilingual students\\u0027 collaborative writing sessions within the frame of a one-year master\\u0027s program in computer science in a multilingual setting at a Swedish university. The students, both Persianspeaking, are advanced speakers of Swedish as a second language. For this article, four lexical language-related episodes, where code-switching between Persian and Swedish occurs, are analyzed. The analyzed excerpts in this article are drawn from a corpus of data consisting of language-related episodes identified and transcribed in the audio tapings. We employ a conversation analysis (CA) approach for the analysis of bilingual interaction. This means that the meaning of the code-switching in the interaction is described in terms of both global (the conversational activity at large) and local interactional factors. In the analysis, a close step-by-step analysis of the turn-taking procedures demonstrates how the communicative meaning of the students\\u0027 bilingual behavior in a lexical episode is determined in its local production in the emerging conversational context and how it can be explicated as part of the following social actions: drawing attention to a problem, seeking alliance when a problem is made explicit and confirming intersubjective understanding when the problem is resolved.\"],\"language\":\"eng\",\"subjects\":[\"[SHS:NLANG] Humanities and Social Sciences/Nordic languages\",\"[SHS:NLANG] Sciences de l\\u0027Homme et Société/Nordic languages\",\"bilingual practices\",\"conversation analysis\",\"Swedish as a second language\",\"collaborative writing sessions\",\"language-related episodes\",\"lexical problems\",\"repair organization\"],\"creators\":[\"Jansson, Gunilla\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1177/13670069070110020201\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hprints.org/hprints-00475203\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1177/13670069070110020201\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Publikationer från Stockholms universitet\",\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-8617\",\"id\":\"oai:DiVA.org:su-8617\"},\"trust\":0.020025134}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hprints.org:hprints-00475203"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jansson, Gunilla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:DiVA.org:su-8617"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8c19f571e251e61cb8dd3612f26d5ecf"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:NLANG] Humanities and Social Sciences/Nordic languages","[SHS:NLANG] Sciences de l\u0027Homme et Société/Nordic languages","bilingual practices","conversation analysis","Swedish as a second language","collaborative writing sessions","language-related episodes","lexical problems","repair organization"]},"trust":{"type":"FLOAT","value":0.020025134},"target_publication_title":{"type":"STRING","value":"Bilingual practices in the process of initiating and resolving lexical problems in students\u0027 collaborative writing sessions"},"provenance_datasource_name":{"type":"STRING","value":"Publikationer från Stockholms universitet"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:hprints.org:hprints-00475203\",\"titles\":[\"Bilingual practices in the process of initiating and resolving lexical problems in students\\u0027 collaborative writing sessions\"],\"abstracts\":[\"This study deals with the sequential organization of language choice and code-switching between Persian as a first language and Swedish as a second language in the process of initiating and resolving a problem of understanding and producing the correct version of a lexical item. The data consist of detailed transcripts of audio tapings of two bilingual students\\u0027 collaborative writing sessions within the frame of a one-year master\\u0027s program in computer science in a multilingual setting at a Swedish university. The students, both Persianspeaking, are advanced speakers of Swedish as a second language. For this article, four lexical language-related episodes, where code-switching between Persian and Swedish occurs, are analyzed. The analyzed excerpts in this article are drawn from a corpus of data consisting of language-related episodes identified and transcribed in the audio tapings. We employ a conversation analysis (CA) approach for the analysis of bilingual interaction. This means that the meaning of the code-switching in the interaction is described in terms of both global (the conversational activity at large) and local interactional factors. In the analysis, a close step-by-step analysis of the turn-taking procedures demonstrates how the communicative meaning of the students\\u0027 bilingual behavior in a lexical episode is determined in its local production in the emerging conversational context and how it can be explicated as part of the following social actions: drawing attention to a problem, seeking alliance when a problem is made explicit and confirming intersubjective understanding when the problem is resolved.\"],\"language\":\"eng\",\"subjects\":[\"[SHS:NLANG] Humanities and Social Sciences/Nordic languages\",\"[SHS:NLANG] Sciences de l\\u0027Homme et Société/Nordic languages\",\"bilingual practices\",\"conversation analysis\",\"Swedish as a second language\",\"collaborative writing sessions\",\"language-related episodes\",\"lexical problems\",\"repair organization\"],\"creators\":[\"Jansson, Gunilla\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1177/13670069070110020201\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hprints.org/hprints-00475203\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1177/13670069070110020201\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Publikationer från Stockholms universitet\",\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-8617\",\"id\":\"oai:DiVA.org:su-8617\"},\"trust\":0.020025134}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hprints.org:hprints-00475203"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jansson, Gunilla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:DiVA.org:su-8617"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8c19f571e251e61cb8dd3612f26d5ecf"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:NLANG] Humanities and Social Sciences/Nordic languages","[SHS:NLANG] Sciences de l\u0027Homme et Société/Nordic languages","bilingual practices","conversation analysis","Swedish as a second language","collaborative writing sessions","language-related episodes","lexical problems","repair organization"]},"trust":{"type":"FLOAT","value":0.020025134},"target_publication_title":{"type":"STRING","value":"Bilingual practices in the process of initiating and resolving lexical problems in students\u0027 collaborative writing sessions"},"provenance_datasource_name":{"type":"STRING","value":"Publikationer från Stockholms universitet"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hprints.org:hprints-00475203\",\"titles\":[\"Bilingual practices in the process of initiating and resolving lexical problems in students\\u0027 collaborative writing sessions\"],\"abstracts\":[\"This study deals with the sequential organization of language choice and code-switching between Persian as a first language and Swedish as a second language in the process of initiating and resolving a problem of understanding and producing the correct version of a lexical item. The data consist of detailed transcripts of audio tapings of two bilingual students\\u0027 collaborative writing sessions within the frame of a one-year master\\u0027s program in computer science in a multilingual setting at a Swedish university. The students, both Persianspeaking, are advanced speakers of Swedish as a second language. For this article, four lexical language-related episodes, where code-switching between Persian and Swedish occurs, are analyzed. The analyzed excerpts in this article are drawn from a corpus of data consisting of language-related episodes identified and transcribed in the audio tapings. We employ a conversation analysis (CA) approach for the analysis of bilingual interaction. This means that the meaning of the code-switching in the interaction is described in terms of both global (the conversational activity at large) and local interactional factors. In the analysis, a close step-by-step analysis of the turn-taking procedures demonstrates how the communicative meaning of the students\\u0027 bilingual behavior in a lexical episode is determined in its local production in the emerging conversational context and how it can be explicated as part of the following social actions: drawing attention to a problem, seeking alliance when a problem is made explicit and confirming intersubjective understanding when the problem is resolved.\"],\"language\":\"eng\",\"subjects\":[\"[SHS:NLANG] Humanities and Social Sciences/Nordic languages\",\"[SHS:NLANG] Sciences de l\\u0027Homme et Société/Nordic languages\",\"bilingual practices\",\"conversation analysis\",\"Swedish as a second language\",\"collaborative writing sessions\",\"language-related episodes\",\"lexical problems\",\"repair organization\"],\"creators\":[\"Jansson, Gunilla\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hprints.org/hprints-00475203\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-8617\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Stockholms universitet\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-8617\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Stockholms universitet\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Publikationer från Stockholms universitet\",\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-8617\",\"id\":\"oai:DiVA.org:su-8617\"},\"trust\":0.5848626}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hprints.org:hprints-00475203"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jansson, Gunilla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:DiVA.org:su-8617"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8c19f571e251e61cb8dd3612f26d5ecf"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:NLANG] Humanities and Social Sciences/Nordic languages","[SHS:NLANG] Sciences de l\u0027Homme et Société/Nordic languages","bilingual practices","conversation analysis","Swedish as a second language","collaborative writing sessions","language-related episodes","lexical problems","repair organization"]},"trust":{"type":"FLOAT","value":0.5848626},"target_publication_title":{"type":"STRING","value":"Bilingual practices in the process of initiating and resolving lexical problems in students\u0027 collaborative writing sessions"},"provenance_datasource_name":{"type":"STRING","value":"Publikationer från Stockholms universitet"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hprints.org:hprints-00475203\",\"titles\":[\"Bilingual practices in the process of initiating and resolving lexical problems in students\\u0027 collaborative writing sessions\"],\"abstracts\":[\"This study deals with the sequential organization of language choice and code-switching between Persian as a first language and Swedish as a second language in the process of initiating and resolving a problem of understanding and producing the correct version of a lexical item. The data consist of detailed transcripts of audio tapings of two bilingual students\\u0027 collaborative writing sessions within the frame of a one-year master\\u0027s program in computer science in a multilingual setting at a Swedish university. The students, both Persianspeaking, are advanced speakers of Swedish as a second language. For this article, four lexical language-related episodes, where code-switching between Persian and Swedish occurs, are analyzed. The analyzed excerpts in this article are drawn from a corpus of data consisting of language-related episodes identified and transcribed in the audio tapings. We employ a conversation analysis (CA) approach for the analysis of bilingual interaction. This means that the meaning of the code-switching in the interaction is described in terms of both global (the conversational activity at large) and local interactional factors. In the analysis, a close step-by-step analysis of the turn-taking procedures demonstrates how the communicative meaning of the students\\u0027 bilingual behavior in a lexical episode is determined in its local production in the emerging conversational context and how it can be explicated as part of the following social actions: drawing attention to a problem, seeking alliance when a problem is made explicit and confirming intersubjective understanding when the problem is resolved.\"],\"language\":\"eng\",\"subjects\":[\"[SHS:NLANG] Humanities and Social Sciences/Nordic languages\",\"[SHS:NLANG] Sciences de l\\u0027Homme et Société/Nordic languages\",\"bilingual practices\",\"conversation analysis\",\"Swedish as a second language\",\"collaborative writing sessions\",\"language-related episodes\",\"lexical problems\",\"repair organization\"],\"creators\":[\"Jansson, Gunilla\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hprints.org/hprints-00475203\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://hprints.org/hprints-00475203\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hprints.org/hprints-00475203\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hprints.org/hprints-00475203\",\"id\":\"oai:HAL:hprints-00475203v1\"},\"trust\":0.04637593}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hprints.org:hprints-00475203"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jansson, Gunilla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hprints-00475203v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:NLANG] Humanities and Social Sciences/Nordic languages","[SHS:NLANG] Sciences de l\u0027Homme et Société/Nordic languages","bilingual practices","conversation analysis","Swedish as a second language","collaborative writing sessions","language-related episodes","lexical problems","repair organization"]},"trust":{"type":"FLOAT","value":0.04637593},"target_publication_title":{"type":"STRING","value":"Bilingual practices in the process of initiating and resolving lexical problems in students\u0027 collaborative writing sessions"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hprints-00475203v1\",\"titles\":[\"Bilingual practices in the process of initiating and resolving lexical problems in students\\u0027 collaborative writing sessions\"],\"abstracts\":[\"International audience\",\"This study deals with the sequential organization of language choice and code-switching between Persian as a first language and Swedish as a second language in the process of initiating and resolving a problem of understanding and producing the correct version of a lexical item. The data consist of detailed transcripts of audio tapings of two bilingual students\\u0027 collaborative writing sessions within the frame of a one-year master\\u0027s program in computer science in a multilingual setting at a Swedish university. The students, both Persianspeaking, are advanced speakers of Swedish as a second language. For this article, four lexical language-related episodes, where code-switching between Persian and Swedish occurs, are analyzed. The analyzed excerpts in this article are drawn from a corpus of data consisting of language-related episodes identified and transcribed in the audio tapings. We employ a conversation analysis (CA) approach for the analysis of bilingual interaction. This means that the meaning of the code-switching in the interaction is described in terms of both global (the conversational activity at large) and local interactional factors. In the analysis, a close step-by-step analysis of the turn-taking procedures demonstrates how the communicative meaning of the students\\u0027 bilingual behavior in a lexical episode is determined in its local production in the emerging conversational context and how it can be explicated as part of the following social actions: drawing attention to a problem, seeking alliance when a problem is made explicit and confirming intersubjective understanding when the problem is resolved.\"],\"language\":\"eng\",\"subjects\":[\"bilingual practices\",\"conversation analysis\",\"Swedish as a second language\",\"collaborative writing sessions\",\"language-related episodes\",\"lexical problems\",\"repair organization\",\"[SHS.NLANG] Humanities and Social Sciences/domain_shs.nlang\"],\"creators\":[\"Jansson, Gunilla\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"SAGE Publications (UK and US)\",\"embargoenddate\":\"\",\"contributor\":[\"Department of Scandinavian Studies ; Stockholm University\",\"Stockholm University ; Stockholm University\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1177/13670069070110020201\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hprints.org/hprints-00475203\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1177/13670069070110020201\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Publikationer från Stockholms universitet\",\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-8617\",\"id\":\"oai:DiVA.org:su-8617\"},\"trust\":0.3094316}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hprints-00475203v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jansson, Gunilla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:DiVA.org:su-8617"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8c19f571e251e61cb8dd3612f26d5ecf"},"target_publication_subject_list":{"type":"LIST_STRING","value":["bilingual practices","conversation analysis","Swedish as a second language","collaborative writing sessions","language-related episodes","lexical problems","repair organization","[SHS.NLANG] Humanities and Social Sciences/domain_shs.nlang"]},"trust":{"type":"FLOAT","value":0.3094316},"target_publication_title":{"type":"STRING","value":"Bilingual practices in the process of initiating and resolving lexical problems in students\u0027 collaborative writing sessions"},"provenance_datasource_name":{"type":"STRING","value":"Publikationer från Stockholms universitet"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hprints-00475203v1\",\"titles\":[\"Bilingual practices in the process of initiating and resolving lexical problems in students\\u0027 collaborative writing sessions\"],\"abstracts\":[\"International audience\",\"This study deals with the sequential organization of language choice and code-switching between Persian as a first language and Swedish as a second language in the process of initiating and resolving a problem of understanding and producing the correct version of a lexical item. The data consist of detailed transcripts of audio tapings of two bilingual students\\u0027 collaborative writing sessions within the frame of a one-year master\\u0027s program in computer science in a multilingual setting at a Swedish university. The students, both Persianspeaking, are advanced speakers of Swedish as a second language. For this article, four lexical language-related episodes, where code-switching between Persian and Swedish occurs, are analyzed. The analyzed excerpts in this article are drawn from a corpus of data consisting of language-related episodes identified and transcribed in the audio tapings. We employ a conversation analysis (CA) approach for the analysis of bilingual interaction. This means that the meaning of the code-switching in the interaction is described in terms of both global (the conversational activity at large) and local interactional factors. In the analysis, a close step-by-step analysis of the turn-taking procedures demonstrates how the communicative meaning of the students\\u0027 bilingual behavior in a lexical episode is determined in its local production in the emerging conversational context and how it can be explicated as part of the following social actions: drawing attention to a problem, seeking alliance when a problem is made explicit and confirming intersubjective understanding when the problem is resolved.\"],\"language\":\"eng\",\"subjects\":[\"bilingual practices\",\"conversation analysis\",\"Swedish as a second language\",\"collaborative writing sessions\",\"language-related episodes\",\"lexical problems\",\"repair organization\",\"[SHS.NLANG] Humanities and Social Sciences/domain_shs.nlang\"],\"creators\":[\"Jansson, Gunilla\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"SAGE Publications (UK and US)\",\"embargoenddate\":\"\",\"contributor\":[\"Department of Scandinavian Studies ; Stockholm University\",\"Stockholm University ; Stockholm University\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1177/13670069070110020201\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hprints.org/hprints-00475203\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1177/13670069070110020201\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Publikationer från Stockholms universitet\",\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-8617\",\"id\":\"oai:DiVA.org:su-8617\"},\"trust\":0.3094316}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hprints-00475203v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jansson, Gunilla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:DiVA.org:su-8617"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8c19f571e251e61cb8dd3612f26d5ecf"},"target_publication_subject_list":{"type":"LIST_STRING","value":["bilingual practices","conversation analysis","Swedish as a second language","collaborative writing sessions","language-related episodes","lexical problems","repair organization","[SHS.NLANG] Humanities and Social Sciences/domain_shs.nlang"]},"trust":{"type":"FLOAT","value":0.3094316},"target_publication_title":{"type":"STRING","value":"Bilingual practices in the process of initiating and resolving lexical problems in students\u0027 collaborative writing sessions"},"provenance_datasource_name":{"type":"STRING","value":"Publikationer från Stockholms universitet"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hprints-00475203v1\",\"titles\":[\"Bilingual practices in the process of initiating and resolving lexical problems in students\\u0027 collaborative writing sessions\"],\"abstracts\":[\"International audience\",\"This study deals with the sequential organization of language choice and code-switching between Persian as a first language and Swedish as a second language in the process of initiating and resolving a problem of understanding and producing the correct version of a lexical item. The data consist of detailed transcripts of audio tapings of two bilingual students\\u0027 collaborative writing sessions within the frame of a one-year master\\u0027s program in computer science in a multilingual setting at a Swedish university. The students, both Persianspeaking, are advanced speakers of Swedish as a second language. For this article, four lexical language-related episodes, where code-switching between Persian and Swedish occurs, are analyzed. The analyzed excerpts in this article are drawn from a corpus of data consisting of language-related episodes identified and transcribed in the audio tapings. We employ a conversation analysis (CA) approach for the analysis of bilingual interaction. This means that the meaning of the code-switching in the interaction is described in terms of both global (the conversational activity at large) and local interactional factors. In the analysis, a close step-by-step analysis of the turn-taking procedures demonstrates how the communicative meaning of the students\\u0027 bilingual behavior in a lexical episode is determined in its local production in the emerging conversational context and how it can be explicated as part of the following social actions: drawing attention to a problem, seeking alliance when a problem is made explicit and confirming intersubjective understanding when the problem is resolved.\"],\"language\":\"eng\",\"subjects\":[\"bilingual practices\",\"conversation analysis\",\"Swedish as a second language\",\"collaborative writing sessions\",\"language-related episodes\",\"lexical problems\",\"repair organization\",\"[SHS.NLANG] Humanities and Social Sciences/domain_shs.nlang\"],\"creators\":[\"Jansson, Gunilla\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"SAGE Publications (UK and US)\",\"embargoenddate\":\"\",\"contributor\":[\"Department of Scandinavian Studies ; Stockholm University\",\"Stockholm University ; Stockholm University\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hprints.org/hprints-00475203\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-8617\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Stockholms universitet\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-8617\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Stockholms universitet\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Publikationer från Stockholms universitet\",\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-8617\",\"id\":\"oai:DiVA.org:su-8617\"},\"trust\":0.7004449}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hprints-00475203v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jansson, Gunilla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:DiVA.org:su-8617"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8c19f571e251e61cb8dd3612f26d5ecf"},"target_publication_subject_list":{"type":"LIST_STRING","value":["bilingual practices","conversation analysis","Swedish as a second language","collaborative writing sessions","language-related episodes","lexical problems","repair organization","[SHS.NLANG] Humanities and Social Sciences/domain_shs.nlang"]},"trust":{"type":"FLOAT","value":0.7004449},"target_publication_title":{"type":"STRING","value":"Bilingual practices in the process of initiating and resolving lexical problems in students\u0027 collaborative writing sessions"},"provenance_datasource_name":{"type":"STRING","value":"Publikationer från Stockholms universitet"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hprints-00475203v1\",\"titles\":[\"Bilingual practices in the process of initiating and resolving lexical problems in students\\u0027 collaborative writing sessions\"],\"abstracts\":[\"International audience\",\"This study deals with the sequential organization of language choice and code-switching between Persian as a first language and Swedish as a second language in the process of initiating and resolving a problem of understanding and producing the correct version of a lexical item. The data consist of detailed transcripts of audio tapings of two bilingual students\\u0027 collaborative writing sessions within the frame of a one-year master\\u0027s program in computer science in a multilingual setting at a Swedish university. The students, both Persianspeaking, are advanced speakers of Swedish as a second language. For this article, four lexical language-related episodes, where code-switching between Persian and Swedish occurs, are analyzed. The analyzed excerpts in this article are drawn from a corpus of data consisting of language-related episodes identified and transcribed in the audio tapings. We employ a conversation analysis (CA) approach for the analysis of bilingual interaction. This means that the meaning of the code-switching in the interaction is described in terms of both global (the conversational activity at large) and local interactional factors. In the analysis, a close step-by-step analysis of the turn-taking procedures demonstrates how the communicative meaning of the students\\u0027 bilingual behavior in a lexical episode is determined in its local production in the emerging conversational context and how it can be explicated as part of the following social actions: drawing attention to a problem, seeking alliance when a problem is made explicit and confirming intersubjective understanding when the problem is resolved.\"],\"language\":\"eng\",\"subjects\":[\"bilingual practices\",\"conversation analysis\",\"Swedish as a second language\",\"collaborative writing sessions\",\"language-related episodes\",\"lexical problems\",\"repair organization\",\"[SHS.NLANG] Humanities and Social Sciences/domain_shs.nlang\"],\"creators\":[\"Jansson, Gunilla\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"SAGE Publications (UK and US)\",\"embargoenddate\":\"\",\"contributor\":[\"Department of Scandinavian Studies ; Stockholm University\",\"Stockholm University ; Stockholm University\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hprints.org/hprints-00475203\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hprints.org/hprints-00475203\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hprints.org/hprints-00475203\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hprints.org/hprints-00475203\",\"id\":\"oai:hprints.org:hprints-00475203\"},\"trust\":0.52369606}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hprints-00475203v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jansson, Gunilla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hprints.org:hprints-00475203"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["bilingual practices","conversation analysis","Swedish as a second language","collaborative writing sessions","language-related episodes","lexical problems","repair organization","[SHS.NLANG] Humanities and Social Sciences/domain_shs.nlang"]},"trust":{"type":"FLOAT","value":0.52369606},"target_publication_title":{"type":"STRING","value":"Bilingual practices in the process of initiating and resolving lexical problems in students\u0027 collaborative writing sessions"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00897396\",\"titles\":[\"Effets comparés, à très court terme, des acides (n-9) cis et trans docosénoïques sur les lipides cardiaques du rat : influence de l\\u0027apport en acide linoléique\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:BA] Life Sciences/Animal biology\",\"[SDV:BA] Sciences du Vivant/Biologie animale\",\"[SDV:BBM:BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules\",\"[SDV:BBM:BC] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biochimie\",\"[SDV:BBM:BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics\",\"[SDV:BBM:BP] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biophysique\"],\"creators\":[\"O Astorg, P.\",\"Compoint, Geneviève\"],\"publicationdate\":\"1978-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00897396\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00897396\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00897396\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00897396\",\"id\":\"oai:HAL:hal-00897396v1\"},\"trust\":0.6154237}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00897396"},"target_publication_author_list":{"type":"LIST_STRING","value":["O Astorg, P.","Compoint, Geneviève"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00897396v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BA] Life Sciences/Animal biology","[SDV:BA] Sciences du Vivant/Biologie animale","[SDV:BBM:BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules","[SDV:BBM:BC] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biochimie","[SDV:BBM:BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics","[SDV:BBM:BP] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biophysique"]},"trust":{"type":"FLOAT","value":0.6154237},"target_publication_title":{"type":"STRING","value":"Effets comparés, à très court terme, des acides (n-9) cis et trans docosénoïques sur les lipides cardiaques du rat : influence de l\u0027apport en acide linoléique"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1978-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00897396\",\"titles\":[\"Effets comparés, à très court terme, des acides (n-9) cis et trans docosénoïques sur les lipides cardiaques du rat : influence de l\\u0027apport en acide linoléique\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:BA] Life Sciences/Animal biology\",\"[SDV:BA] Sciences du Vivant/Biologie animale\",\"[SDV:BBM:BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules\",\"[SDV:BBM:BC] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biochimie\",\"[SDV:BBM:BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics\",\"[SDV:BBM:BP] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biophysique\"],\"creators\":[\"O Astorg, P.\",\"Compoint, Geneviève\"],\"publicationdate\":\"1978-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00897396\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"International audience\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00897396\",\"id\":\"oai:HAL:hal-00897396v1\"},\"trust\":0.25468826}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00897396"},"target_publication_author_list":{"type":"LIST_STRING","value":["O Astorg, P.","Compoint, Geneviève"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00897396v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BA] Life Sciences/Animal biology","[SDV:BA] Sciences du Vivant/Biologie animale","[SDV:BBM:BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules","[SDV:BBM:BC] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biochimie","[SDV:BBM:BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics","[SDV:BBM:BP] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biophysique"]},"trust":{"type":"FLOAT","value":0.25468826},"target_publication_title":{"type":"STRING","value":"Effets comparés, à très court terme, des acides (n-9) cis et trans docosénoïques sur les lipides cardiaques du rat : influence de l\u0027apport en acide linoléique"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1978-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00897396v1\",\"titles\":[\"Effets comparés, à très court terme, des acides (n-9) cis et trans docosénoïques sur les lipides cardiaques du rat : influence de l\\u0027apport en acide linoléique\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.BA] Life Sciences/Animal biology\",\"[SDV.BBM.BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules\",\"[SDV.BBM.BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics\"],\"creators\":[\"O Astorg, P.\",\"Compoint, Geneviève\"],\"publicationdate\":\"1978-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00897396\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00897396\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00897396\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00897396\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00897396\"},\"trust\":0.1957637}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00897396v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["O Astorg, P.","Compoint, Geneviève"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00897396"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.BA] Life Sciences/Animal biology","[SDV.BBM.BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules","[SDV.BBM.BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics"]},"trust":{"type":"FLOAT","value":0.1957637},"target_publication_title":{"type":"STRING","value":"Effets comparés, à très court terme, des acides (n-9) cis et trans docosénoïques sur les lipides cardiaques du rat : influence de l\u0027apport en acide linoléique"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1978-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2629402\",\"titles\":[\"Colorectal anastomotic leakage: Aspects of prevention, detection and treatment\"],\"abstracts\":[\"All colorectal surgeons are faced from time to time with anastomotic leakage after colorectal surgery. This complication has been studied extensively without a significant reduction of incidence over the last 30 years. New techniques of prevention, by innovative anastomotic techniques should improve results in the future, but standardization and “teachability” should be guaranteed. Risk scoring enables intra-operative decision-making whether to restore continuity or deviate. Early detection can lead to reduction in delay of diagnosis as long as a standard system is used. For treatment options, no firm evidence is available, but future studies could focus on repair and saving of the anastomosis on the one hand or anastomotical breakdown and definitive colostomy on the other hand.\"],\"language\":\"eng\",\"subjects\":[\"Editorial\"],\"creators\":[\"Daams, Freek\",\"Luyer, Misha\",\"Lange, Johan F.\"],\"publicationdate\":\"2013-04-21\",\"publisher\":\"Baishideng Publishing Group Co., Limited\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC3631979\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3631979\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.wjgnet.com/1007-9327/full/v19/i15/2293.htm\",\"license\":\"OPEN\",\"hostedby\":\"World Journal of Gastroenterology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.wjgnet.com/1007-9327/full/v19/i15/2293.htm\",\"license\":\"OPEN\",\"hostedby\":\"World Journal of Gastroenterology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.wjgnet.com/1007-9327/full/v19/i15/2293.htm\",\"id\":\"oai:doaj.org/article:7d2dec7755c64d0c924f070c0b75f78f\"},\"trust\":0.1930474}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2629402"},"target_publication_author_list":{"type":"LIST_STRING","value":["Daams, Freek","Luyer, Misha","Lange, Johan F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:7d2dec7755c64d0c924f070c0b75f78f"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Editorial"]},"trust":{"type":"FLOAT","value":0.1930474},"target_publication_title":{"type":"STRING","value":"Colorectal anastomotic leakage: Aspects of prevention, detection and treatment"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2013-04-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00926163v1\",\"titles\":[\"Autism from a cognitive-pragmatic perspective\"],\"abstracts\":[\"Autism is one of a group of three neuro- developmental disorders including, in addition to autism itself, Asperger Syndrome and a fairly heterogeneous group of patients who present some but not all of the symptoms of autism (see below, section 2.2). Asperger Syndrome and autism being the best described pathologies, notably in terms of language and language development, they will be the focus of our attention in what follows. Autism has been described as being to pragmatics what aphasia is to syntax, i.e., a natural testing ground for pragmatic hypotheses. This is certainly true of both Asperger\\u0027s Syndrome and autism, though, as will shortly be seen, autistic people are more impaired in language acquisition. The first part of the paper (section 2) will describe the pathology; the second part (section 3), the impact of the social/socio? pragmatic deficit on language acquisition; the third part (section 4), the pragmatic deficits that remain in adulthood in Asperger and verbally autistic patients\"],\"language\":\"eng\",\"subjects\":[\"[SCCO.NEUR] Cognitive science/Neuroscience\"],\"creators\":[\"Reboul, Anne\",\"Manificat, Sabine\",\"Foudon, Nadège\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Mouton de Gruyter\",\"embargoenddate\":\"\",\"contributor\":[\"Institut des Sciences Cognitives (ISC) ; Université Claude Bernard - Lyon I (UCBL) - CNRS\",\"Laboratoire sur le langage, le cerveau et la cognition (L2C2) ; Université Claude Bernard - Lyon I (UCBL) - CNRS\",\"Centre hospitalier spécialisé Saint Jean de Dieu Lyon ; Centre hospitalier spécialisé Saint Jean de Dieu Lyon\",\"Centre de Sciences Cognitives ; Université de Neuchatel\",\"17. Geeraerts, D. \\u0026 Schmid, H-J.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00926163\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00926163\"},\"trust\":0.59138656}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00926163v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Reboul, Anne","Manificat, Sabine","Foudon, Nadège"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00926163"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SCCO.NEUR] Cognitive science/Neuroscience"]},"trust":{"type":"FLOAT","value":0.59138656},"target_publication_title":{"type":"STRING","value":"Autism from a cognitive-pragmatic perspective"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00926163v1\",\"titles\":[\"Autism from a cognitive-pragmatic perspective\"],\"abstracts\":[\"Autism is one of a group of three neuro- developmental disorders including, in addition to autism itself, Asperger Syndrome and a fairly heterogeneous group of patients who present some but not all of the symptoms of autism (see below, section 2.2). Asperger Syndrome and autism being the best described pathologies, notably in terms of language and language development, they will be the focus of our attention in what follows. Autism has been described as being to pragmatics what aphasia is to syntax, i.e., a natural testing ground for pragmatic hypotheses. This is certainly true of both Asperger\\u0027s Syndrome and autism, though, as will shortly be seen, autistic people are more impaired in language acquisition. The first part of the paper (section 2) will describe the pathology; the second part (section 3), the impact of the social/socio? pragmatic deficit on language acquisition; the third part (section 4), the pragmatic deficits that remain in adulthood in Asperger and verbally autistic patients\"],\"language\":\"eng\",\"subjects\":[\"[SCCO.NEUR] Cognitive science/Neuroscience\"],\"creators\":[\"Reboul, Anne\",\"Manificat, Sabine\",\"Foudon, Nadège\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Mouton de Gruyter\",\"embargoenddate\":\"\",\"contributor\":[\"Institut des Sciences Cognitives (ISC) ; Université Claude Bernard - Lyon I (UCBL) - CNRS\",\"Laboratoire sur le langage, le cerveau et la cognition (L2C2) ; Université Claude Bernard - Lyon I (UCBL) - CNRS\",\"Centre hospitalier spécialisé Saint Jean de Dieu Lyon ; Centre hospitalier spécialisé Saint Jean de Dieu Lyon\",\"Centre de Sciences Cognitives ; Université de Neuchatel\",\"17. Geeraerts, D. \\u0026 Schmid, H-J.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00655404\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00655404\"},\"trust\":0.8738071}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00926163v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Reboul, Anne","Manificat, Sabine","Foudon, Nadège"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00655404"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SCCO.NEUR] Cognitive science/Neuroscience"]},"trust":{"type":"FLOAT","value":0.8738071},"target_publication_title":{"type":"STRING","value":"Autism from a cognitive-pragmatic perspective"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00926163v1\",\"titles\":[\"Autism from a cognitive-pragmatic perspective\"],\"abstracts\":[\"Autism is one of a group of three neuro- developmental disorders including, in addition to autism itself, Asperger Syndrome and a fairly heterogeneous group of patients who present some but not all of the symptoms of autism (see below, section 2.2). Asperger Syndrome and autism being the best described pathologies, notably in terms of language and language development, they will be the focus of our attention in what follows. Autism has been described as being to pragmatics what aphasia is to syntax, i.e., a natural testing ground for pragmatic hypotheses. This is certainly true of both Asperger\\u0027s Syndrome and autism, though, as will shortly be seen, autistic people are more impaired in language acquisition. The first part of the paper (section 2) will describe the pathology; the second part (section 3), the impact of the social/socio? pragmatic deficit on language acquisition; the third part (section 4), the pragmatic deficits that remain in adulthood in Asperger and verbally autistic patients\"],\"language\":\"eng\",\"subjects\":[\"[SCCO.NEUR] Cognitive science/Neuroscience\"],\"creators\":[\"Reboul, Anne\",\"Manificat, Sabine\",\"Foudon, Nadège\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Mouton de Gruyter\",\"embargoenddate\":\"\",\"contributor\":[\"Institut des Sciences Cognitives (ISC) ; Université Claude Bernard - Lyon I (UCBL) - CNRS\",\"Laboratoire sur le langage, le cerveau et la cognition (L2C2) ; Université Claude Bernard - Lyon I (UCBL) - CNRS\",\"Centre hospitalier spécialisé Saint Jean de Dieu Lyon ; Centre hospitalier spécialisé Saint Jean de Dieu Lyon\",\"Centre de Sciences Cognitives ; Université de Neuchatel\",\"17. Geeraerts, D. \\u0026 Schmid, H-J.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00655404\",\"id\":\"oai:HAL:hal-00655404v1\"},\"trust\":0.6057397}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00926163v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Reboul, Anne","Manificat, Sabine","Foudon, Nadège"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00655404v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SCCO.NEUR] Cognitive science/Neuroscience"]},"trust":{"type":"FLOAT","value":0.6057397},"target_publication_title":{"type":"STRING","value":"Autism from a cognitive-pragmatic perspective"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00926163\",\"titles\":[\"Autism from a cognitive-pragmatic perspective\"],\"abstracts\":[\"Autism is one of a group of three neuro- developmental disorders including, in addition to autism itself, Asperger Syndrome and a fairly heterogeneous group of patients who present some but not all of the symptoms of autism (see below, section 2.2). Asperger Syndrome and autism being the best described pathologies, notably in terms of language and language development, they will be the focus of our attention in what follows. Autism has been described as being to pragmatics what aphasia is to syntax, i.e., a natural testing ground for pragmatic hypotheses. This is certainly true of both Asperger\\u0027s Syndrome and autism, though, as will shortly be seen, autistic people are more impaired in language acquisition. The first part of the paper (section 2) will describe the pathology; the second part (section 3), the impact of the social/socio? pragmatic deficit on language acquisition; the third part (section 4), the pragmatic deficits that remain in adulthood in Asperger and verbally autistic patients\"],\"language\":\"eng\",\"subjects\":[\"[SCCO:NEUR] Cognitive science/Neuroscience\",\"[SCCO:NEUR] Sciences cognitives/Neurosciences\"],\"creators\":[\"Reboul, Anne\",\"Manificat, Sabine\",\"Foudon, Nadège\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00926163\",\"id\":\"oai:HAL:hal-00926163v1\"},\"trust\":0.103902996}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00926163"},"target_publication_author_list":{"type":"LIST_STRING","value":["Reboul, Anne","Manificat, Sabine","Foudon, Nadège"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00926163v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SCCO:NEUR] Cognitive science/Neuroscience","[SCCO:NEUR] Sciences cognitives/Neurosciences"]},"trust":{"type":"FLOAT","value":0.103902996},"target_publication_title":{"type":"STRING","value":"Autism from a cognitive-pragmatic perspective"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00926163\",\"titles\":[\"Autism from a cognitive-pragmatic perspective\"],\"abstracts\":[\"Autism is one of a group of three neuro- developmental disorders including, in addition to autism itself, Asperger Syndrome and a fairly heterogeneous group of patients who present some but not all of the symptoms of autism (see below, section 2.2). Asperger Syndrome and autism being the best described pathologies, notably in terms of language and language development, they will be the focus of our attention in what follows. Autism has been described as being to pragmatics what aphasia is to syntax, i.e., a natural testing ground for pragmatic hypotheses. This is certainly true of both Asperger\\u0027s Syndrome and autism, though, as will shortly be seen, autistic people are more impaired in language acquisition. The first part of the paper (section 2) will describe the pathology; the second part (section 3), the impact of the social/socio? pragmatic deficit on language acquisition; the third part (section 4), the pragmatic deficits that remain in adulthood in Asperger and verbally autistic patients\"],\"language\":\"eng\",\"subjects\":[\"[SCCO:NEUR] Cognitive science/Neuroscience\",\"[SCCO:NEUR] Sciences cognitives/Neurosciences\"],\"creators\":[\"Reboul, Anne\",\"Manificat, Sabine\",\"Foudon, Nadège\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00655404\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00655404\"},\"trust\":0.950208}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00926163"},"target_publication_author_list":{"type":"LIST_STRING","value":["Reboul, Anne","Manificat, Sabine","Foudon, Nadège"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00655404"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SCCO:NEUR] Cognitive science/Neuroscience","[SCCO:NEUR] Sciences cognitives/Neurosciences"]},"trust":{"type":"FLOAT","value":0.950208},"target_publication_title":{"type":"STRING","value":"Autism from a cognitive-pragmatic perspective"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00926163\",\"titles\":[\"Autism from a cognitive-pragmatic perspective\"],\"abstracts\":[\"Autism is one of a group of three neuro- developmental disorders including, in addition to autism itself, Asperger Syndrome and a fairly heterogeneous group of patients who present some but not all of the symptoms of autism (see below, section 2.2). Asperger Syndrome and autism being the best described pathologies, notably in terms of language and language development, they will be the focus of our attention in what follows. Autism has been described as being to pragmatics what aphasia is to syntax, i.e., a natural testing ground for pragmatic hypotheses. This is certainly true of both Asperger\\u0027s Syndrome and autism, though, as will shortly be seen, autistic people are more impaired in language acquisition. The first part of the paper (section 2) will describe the pathology; the second part (section 3), the impact of the social/socio? pragmatic deficit on language acquisition; the third part (section 4), the pragmatic deficits that remain in adulthood in Asperger and verbally autistic patients\"],\"language\":\"eng\",\"subjects\":[\"[SCCO:NEUR] Cognitive science/Neuroscience\",\"[SCCO:NEUR] Sciences cognitives/Neurosciences\"],\"creators\":[\"Reboul, Anne\",\"Manificat, Sabine\",\"Foudon, Nadège\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00655404\",\"id\":\"oai:HAL:hal-00655404v1\"},\"trust\":0.8910345}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00926163"},"target_publication_author_list":{"type":"LIST_STRING","value":["Reboul, Anne","Manificat, Sabine","Foudon, Nadège"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00655404v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SCCO:NEUR] Cognitive science/Neuroscience","[SCCO:NEUR] Sciences cognitives/Neurosciences"]},"trust":{"type":"FLOAT","value":0.8910345},"target_publication_title":{"type":"STRING","value":"Autism from a cognitive-pragmatic perspective"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00655404\",\"titles\":[\"Autism from a cognitive-pragmatic perspective\"],\"abstracts\":[\"Autism is one of a group of three neuro-developmental disorders including, in addition to autism itself, Asperger Syndrome and a fairly heterogeneous group of patients who present some but not all of the symptoms of autism (see below, section 2.2). Asperger Syndrome and autism being the best described pathologies, notably in terms of language and language development, they will be the focus of our attention in what follows. Autism has been described as being to pragmatics what aphasia is to syntax, i.e., a natural testing ground for pragmatic hypotheses. This is certainly true of both Asperger\\u0027s Syndrome and autism, though, as will shortly be seen, autistic people are more impaired in language acquisition. The first part of the paper (section 2) will describe the pathology; the second part (section 3), the impact of the social/socio?-pragmatic deficit on language acquisition; the third part (section 4), the pragmatic deficits that remain in adulthood in Asperger and verbally autistic patients.\"],\"language\":\"eng\",\"subjects\":[\"[SCCO:LING] Cognitive science/Linguistics\",\"[SCCO:LING] Sciences cognitives/Linguistique\"],\"creators\":[\"Reboul, Anne\",\"Manificat, Sabine\",\"Foudon, Nadège\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00926163\",\"id\":\"oai:HAL:hal-00926163v1\"},\"trust\":0.038954735}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00655404"},"target_publication_author_list":{"type":"LIST_STRING","value":["Reboul, Anne","Manificat, Sabine","Foudon, Nadège"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00926163v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SCCO:LING] Cognitive science/Linguistics","[SCCO:LING] Sciences cognitives/Linguistique"]},"trust":{"type":"FLOAT","value":0.038954735},"target_publication_title":{"type":"STRING","value":"Autism from a cognitive-pragmatic perspective"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00655404\",\"titles\":[\"Autism from a cognitive-pragmatic perspective\"],\"abstracts\":[\"Autism is one of a group of three neuro-developmental disorders including, in addition to autism itself, Asperger Syndrome and a fairly heterogeneous group of patients who present some but not all of the symptoms of autism (see below, section 2.2). Asperger Syndrome and autism being the best described pathologies, notably in terms of language and language development, they will be the focus of our attention in what follows. Autism has been described as being to pragmatics what aphasia is to syntax, i.e., a natural testing ground for pragmatic hypotheses. This is certainly true of both Asperger\\u0027s Syndrome and autism, though, as will shortly be seen, autistic people are more impaired in language acquisition. The first part of the paper (section 2) will describe the pathology; the second part (section 3), the impact of the social/socio?-pragmatic deficit on language acquisition; the third part (section 4), the pragmatic deficits that remain in adulthood in Asperger and verbally autistic patients.\"],\"language\":\"eng\",\"subjects\":[\"[SCCO:LING] Cognitive science/Linguistics\",\"[SCCO:LING] Sciences cognitives/Linguistique\"],\"creators\":[\"Reboul, Anne\",\"Manificat, Sabine\",\"Foudon, Nadège\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00926163\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00926163\"},\"trust\":0.7247279}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00655404"},"target_publication_author_list":{"type":"LIST_STRING","value":["Reboul, Anne","Manificat, Sabine","Foudon, Nadège"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00926163"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SCCO:LING] Cognitive science/Linguistics","[SCCO:LING] Sciences cognitives/Linguistique"]},"trust":{"type":"FLOAT","value":0.7247279},"target_publication_title":{"type":"STRING","value":"Autism from a cognitive-pragmatic perspective"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00655404\",\"titles\":[\"Autism from a cognitive-pragmatic perspective\"],\"abstracts\":[\"Autism is one of a group of three neuro-developmental disorders including, in addition to autism itself, Asperger Syndrome and a fairly heterogeneous group of patients who present some but not all of the symptoms of autism (see below, section 2.2). Asperger Syndrome and autism being the best described pathologies, notably in terms of language and language development, they will be the focus of our attention in what follows. Autism has been described as being to pragmatics what aphasia is to syntax, i.e., a natural testing ground for pragmatic hypotheses. This is certainly true of both Asperger\\u0027s Syndrome and autism, though, as will shortly be seen, autistic people are more impaired in language acquisition. The first part of the paper (section 2) will describe the pathology; the second part (section 3), the impact of the social/socio?-pragmatic deficit on language acquisition; the third part (section 4), the pragmatic deficits that remain in adulthood in Asperger and verbally autistic patients.\"],\"language\":\"eng\",\"subjects\":[\"[SCCO:LING] Cognitive science/Linguistics\",\"[SCCO:LING] Sciences cognitives/Linguistique\"],\"creators\":[\"Reboul, Anne\",\"Manificat, Sabine\",\"Foudon, Nadège\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00655404\",\"id\":\"oai:HAL:hal-00655404v1\"},\"trust\":0.36827826}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00655404"},"target_publication_author_list":{"type":"LIST_STRING","value":["Reboul, Anne","Manificat, Sabine","Foudon, Nadège"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00655404v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SCCO:LING] Cognitive science/Linguistics","[SCCO:LING] Sciences cognitives/Linguistique"]},"trust":{"type":"FLOAT","value":0.36827826},"target_publication_title":{"type":"STRING","value":"Autism from a cognitive-pragmatic perspective"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00655404v1\",\"titles\":[\"Autism from a cognitive-pragmatic perspective\"],\"abstracts\":[\"International audience\",\"Autism is one of a group of three neuro-developmental disorders including, in addition to autism itself, Asperger Syndrome and a fairly heterogeneous group of patients who present some but not all of the symptoms of autism (see below, section 2.2). Asperger Syndrome and autism being the best described pathologies, notably in terms of language and language development, they will be the focus of our attention in what follows. Autism has been described as being to pragmatics what aphasia is to syntax, i.e., a natural testing ground for pragmatic hypotheses. This is certainly true of both Asperger\\u0027s Syndrome and autism, though, as will shortly be seen, autistic people are more impaired in language acquisition. The first part of the paper (section 2) will describe the pathology; the second part (section 3), the impact of the social/socio?-pragmatic deficit on language acquisition; the third part (section 4), the pragmatic deficits that remain in adulthood in Asperger and verbally autistic patients.\"],\"language\":\"eng\",\"subjects\":[\"[SCCO.LING] Cognitive science/Linguistics\"],\"creators\":[\"Reboul, Anne\",\"Manificat, Sabine\",\"Foudon, Nadège\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Mouton-de Gruyter\",\"embargoenddate\":\"\",\"contributor\":[\"Institut des Sciences Cognitives (ISC) ; CNRS - Université Claude Bernard - Lyon I (UCBL)\",\"Laboratoire sur le langage, le cerveau et la cognition (L2C2) ; Université Claude Bernard - Lyon I (UCBL) - CNRS\",\"Centre hospitalier spécialisé Saint Jean de Dieu Lyon ; Centre hospitalier spécialisé Saint Jean de Dieu Lyon\",\"Schmid, H-J. \\u0026 Geeraerts, D.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00926163\",\"id\":\"oai:HAL:hal-00926163v1\"},\"trust\":0.21267235}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00655404v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Reboul, Anne","Manificat, Sabine","Foudon, Nadège"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00926163v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SCCO.LING] Cognitive science/Linguistics"]},"trust":{"type":"FLOAT","value":0.21267235},"target_publication_title":{"type":"STRING","value":"Autism from a cognitive-pragmatic perspective"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00655404v1\",\"titles\":[\"Autism from a cognitive-pragmatic perspective\"],\"abstracts\":[\"International audience\",\"Autism is one of a group of three neuro-developmental disorders including, in addition to autism itself, Asperger Syndrome and a fairly heterogeneous group of patients who present some but not all of the symptoms of autism (see below, section 2.2). Asperger Syndrome and autism being the best described pathologies, notably in terms of language and language development, they will be the focus of our attention in what follows. Autism has been described as being to pragmatics what aphasia is to syntax, i.e., a natural testing ground for pragmatic hypotheses. This is certainly true of both Asperger\\u0027s Syndrome and autism, though, as will shortly be seen, autistic people are more impaired in language acquisition. The first part of the paper (section 2) will describe the pathology; the second part (section 3), the impact of the social/socio?-pragmatic deficit on language acquisition; the third part (section 4), the pragmatic deficits that remain in adulthood in Asperger and verbally autistic patients.\"],\"language\":\"eng\",\"subjects\":[\"[SCCO.LING] Cognitive science/Linguistics\"],\"creators\":[\"Reboul, Anne\",\"Manificat, Sabine\",\"Foudon, Nadège\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Mouton-de Gruyter\",\"embargoenddate\":\"\",\"contributor\":[\"Institut des Sciences Cognitives (ISC) ; CNRS - Université Claude Bernard - Lyon I (UCBL)\",\"Laboratoire sur le langage, le cerveau et la cognition (L2C2) ; Université Claude Bernard - Lyon I (UCBL) - CNRS\",\"Centre hospitalier spécialisé Saint Jean de Dieu Lyon ; Centre hospitalier spécialisé Saint Jean de Dieu Lyon\",\"Schmid, H-J. \\u0026 Geeraerts, D.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00926163\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00926163\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00926163\"},\"trust\":0.13719898}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00655404v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Reboul, Anne","Manificat, Sabine","Foudon, Nadège"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00926163"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SCCO.LING] Cognitive science/Linguistics"]},"trust":{"type":"FLOAT","value":0.13719898},"target_publication_title":{"type":"STRING","value":"Autism from a cognitive-pragmatic perspective"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00655404v1\",\"titles\":[\"Autism from a cognitive-pragmatic perspective\"],\"abstracts\":[\"International audience\",\"Autism is one of a group of three neuro-developmental disorders including, in addition to autism itself, Asperger Syndrome and a fairly heterogeneous group of patients who present some but not all of the symptoms of autism (see below, section 2.2). Asperger Syndrome and autism being the best described pathologies, notably in terms of language and language development, they will be the focus of our attention in what follows. Autism has been described as being to pragmatics what aphasia is to syntax, i.e., a natural testing ground for pragmatic hypotheses. This is certainly true of both Asperger\\u0027s Syndrome and autism, though, as will shortly be seen, autistic people are more impaired in language acquisition. The first part of the paper (section 2) will describe the pathology; the second part (section 3), the impact of the social/socio?-pragmatic deficit on language acquisition; the third part (section 4), the pragmatic deficits that remain in adulthood in Asperger and verbally autistic patients.\"],\"language\":\"eng\",\"subjects\":[\"[SCCO.LING] Cognitive science/Linguistics\"],\"creators\":[\"Reboul, Anne\",\"Manificat, Sabine\",\"Foudon, Nadège\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Mouton-de Gruyter\",\"embargoenddate\":\"\",\"contributor\":[\"Institut des Sciences Cognitives (ISC) ; CNRS - Université Claude Bernard - Lyon I (UCBL)\",\"Laboratoire sur le langage, le cerveau et la cognition (L2C2) ; Université Claude Bernard - Lyon I (UCBL) - CNRS\",\"Centre hospitalier spécialisé Saint Jean de Dieu Lyon ; Centre hospitalier spécialisé Saint Jean de Dieu Lyon\",\"Schmid, H-J. \\u0026 Geeraerts, D.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00655404\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00655404\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00655404\"},\"trust\":0.30504203}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00655404v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Reboul, Anne","Manificat, Sabine","Foudon, Nadège"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00655404"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SCCO.LING] Cognitive science/Linguistics"]},"trust":{"type":"FLOAT","value":0.30504203},"target_publication_title":{"type":"STRING","value":"Autism from a cognitive-pragmatic perspective"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00455090v1\",\"titles\":[\"Burn-induced oxidative stress is altered by a low zinc status: kinetic study in burned rats fed a low zinc diet.\"],\"abstracts\":[\"International audience\",\"As an initial subdeficient status of zinc, considered as an essential antioxidant trace element, is frequent in burned patients, we aim to assess the effects of low zinc dietary intakes on burn-induced oxidative stress, in an animal model. After 8 weeks of conditioning diets containing 80 ppm (control group) or 10 ppm of zinc (depleted group), Wistar rats were 20% TBSA burned and sampled 1-10 days after injury. Kinetic evolutions of zinc status, plasma oxidative stress parameters, and antioxidant enzymes were also studied in blood and organs. The zinc-depleted diet induced, before injury, a significant decrease in zinc bone level and the increase of oxidative stress markers without stimulation of antioxidant enzyme activity. After burn, more markedly in zinc depleted animals than in controls, zinc levels decreased in plasma and bone, while increasing in liver. The decrease of thiol groups and GSH/GSSG ratio and the depression of GPx activity in liver are also moderately emphasized. Nevertheless, depleted zinc status could not be considered as determining for oxidative damages after burn injury. Further investigations must also be done to enlighten the mechanism of beneficial effects of zinc supplementation reported in burned patients.\"],\"language\":\"eng\",\"subjects\":[\"Burn injury\",\"Zinc intakes\",\"Zinc status\",\"Oxidative stress\",\"Rat model\",\"[SDV.MHEP] Life Sciences/Human health and pathology\",\"[SDV.AEN] Life Sciences/Food and Nutrition\",\"[SDV.BA] Life Sciences/Animal biology\"],\"creators\":[\"Claeyssen, Richard\",\"Andriollo-Sanchez, Maud\",\"Arnaud, Josiane\",\"Touvard, Laurence\",\"Alonso, Antonia\",\"Chancerelle, Yves\",\"Roussel, Anne-Marie\",\"Agay, Diane\"],\"publicationdate\":\"2008-08-04\",\"publisher\":\"Humana Press\",\"embargoenddate\":\"\",\"contributor\":[\"Bioenergétique fondamentale et appliquée (LBFA) ; INSERM - Université Joseph Fourier - Grenoble I\",\"Centre de Recherches du Service de Santé des Armées (CRSSA) ; Service de Santé des Armées\",\"Département de biologie intégrée ; CHU Grenoble - Hôpital Michallon\",\"Délégation Générale à l\\u0027Armement (DGA)\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00455090\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00455090\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00455090\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00455090\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00455090\"},\"trust\":0.45635408}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00455090v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Claeyssen, Richard","Andriollo-Sanchez, Maud","Arnaud, Josiane","Touvard, Laurence","Alonso, Antonia","Chancerelle, Yves","Roussel, Anne-Marie","Agay, Diane"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00455090"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Burn injury","Zinc intakes","Zinc status","Oxidative stress","Rat model","[SDV.MHEP] Life Sciences/Human health and pathology","[SDV.AEN] Life Sciences/Food and Nutrition","[SDV.BA] Life Sciences/Animal biology"]},"trust":{"type":"FLOAT","value":0.45635408},"target_publication_title":{"type":"STRING","value":"Burn-induced oxidative stress is altered by a low zinc status: kinetic study in burned rats fed a low zinc diet."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-08-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00455090v1\",\"titles\":[\"Burn-induced oxidative stress is altered by a low zinc status: kinetic study in burned rats fed a low zinc diet.\"],\"abstracts\":[\"International audience\",\"As an initial subdeficient status of zinc, considered as an essential antioxidant trace element, is frequent in burned patients, we aim to assess the effects of low zinc dietary intakes on burn-induced oxidative stress, in an animal model. After 8 weeks of conditioning diets containing 80 ppm (control group) or 10 ppm of zinc (depleted group), Wistar rats were 20% TBSA burned and sampled 1-10 days after injury. Kinetic evolutions of zinc status, plasma oxidative stress parameters, and antioxidant enzymes were also studied in blood and organs. The zinc-depleted diet induced, before injury, a significant decrease in zinc bone level and the increase of oxidative stress markers without stimulation of antioxidant enzyme activity. After burn, more markedly in zinc depleted animals than in controls, zinc levels decreased in plasma and bone, while increasing in liver. The decrease of thiol groups and GSH/GSSG ratio and the depression of GPx activity in liver are also moderately emphasized. Nevertheless, depleted zinc status could not be considered as determining for oxidative damages after burn injury. Further investigations must also be done to enlighten the mechanism of beneficial effects of zinc supplementation reported in burned patients.\"],\"language\":\"eng\",\"subjects\":[\"Burn injury\",\"Zinc intakes\",\"Zinc status\",\"Oxidative stress\",\"Rat model\",\"[SDV.MHEP] Life Sciences/Human health and pathology\",\"[SDV.AEN] Life Sciences/Food and Nutrition\",\"[SDV.BA] Life Sciences/Animal biology\"],\"creators\":[\"Claeyssen, Richard\",\"Andriollo-Sanchez, Maud\",\"Arnaud, Josiane\",\"Touvard, Laurence\",\"Alonso, Antonia\",\"Chancerelle, Yves\",\"Roussel, Anne-Marie\",\"Agay, Diane\"],\"publicationdate\":\"2008-08-04\",\"publisher\":\"Humana Press\",\"embargoenddate\":\"\",\"contributor\":[\"Bioenergétique fondamentale et appliquée (LBFA) ; INSERM - Université Joseph Fourier - Grenoble I\",\"Centre de Recherches du Service de Santé des Armées (CRSSA) ; Service de Santé des Armées\",\"Département de biologie intégrée ; CHU Grenoble - Hôpital Michallon\",\"Délégation Générale à l\\u0027Armement (DGA)\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"PMC2826869\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00455090\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2826869\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2826869\",\"id\":\"oai:europepmc.org:2539674\"},\"trust\":0.7602892}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00455090v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Claeyssen, Richard","Andriollo-Sanchez, Maud","Arnaud, Josiane","Touvard, Laurence","Alonso, Antonia","Chancerelle, Yves","Roussel, Anne-Marie","Agay, Diane"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2539674"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Burn injury","Zinc intakes","Zinc status","Oxidative stress","Rat model","[SDV.MHEP] Life Sciences/Human health and pathology","[SDV.AEN] Life Sciences/Food and Nutrition","[SDV.BA] Life Sciences/Animal biology"]},"trust":{"type":"FLOAT","value":0.7602892},"target_publication_title":{"type":"STRING","value":"Burn-induced oxidative stress is altered by a low zinc status: kinetic study in burned rats fed a low zinc diet."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2008-08-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00455090v1\",\"titles\":[\"Burn-induced oxidative stress is altered by a low zinc status: kinetic study in burned rats fed a low zinc diet.\"],\"abstracts\":[\"International audience\",\"As an initial subdeficient status of zinc, considered as an essential antioxidant trace element, is frequent in burned patients, we aim to assess the effects of low zinc dietary intakes on burn-induced oxidative stress, in an animal model. After 8 weeks of conditioning diets containing 80 ppm (control group) or 10 ppm of zinc (depleted group), Wistar rats were 20% TBSA burned and sampled 1-10 days after injury. Kinetic evolutions of zinc status, plasma oxidative stress parameters, and antioxidant enzymes were also studied in blood and organs. The zinc-depleted diet induced, before injury, a significant decrease in zinc bone level and the increase of oxidative stress markers without stimulation of antioxidant enzyme activity. After burn, more markedly in zinc depleted animals than in controls, zinc levels decreased in plasma and bone, while increasing in liver. The decrease of thiol groups and GSH/GSSG ratio and the depression of GPx activity in liver are also moderately emphasized. Nevertheless, depleted zinc status could not be considered as determining for oxidative damages after burn injury. Further investigations must also be done to enlighten the mechanism of beneficial effects of zinc supplementation reported in burned patients.\"],\"language\":\"eng\",\"subjects\":[\"Burn injury\",\"Zinc intakes\",\"Zinc status\",\"Oxidative stress\",\"Rat model\",\"[SDV.MHEP] Life Sciences/Human health and pathology\",\"[SDV.AEN] Life Sciences/Food and Nutrition\",\"[SDV.BA] Life Sciences/Animal biology\"],\"creators\":[\"Claeyssen, Richard\",\"Andriollo-Sanchez, Maud\",\"Arnaud, Josiane\",\"Touvard, Laurence\",\"Alonso, Antonia\",\"Chancerelle, Yves\",\"Roussel, Anne-Marie\",\"Agay, Diane\"],\"publicationdate\":\"2008-08-04\",\"publisher\":\"Humana Press\",\"embargoenddate\":\"\",\"contributor\":[\"Bioenergétique fondamentale et appliquée (LBFA) ; INSERM - Université Joseph Fourier - Grenoble I\",\"Centre de Recherches du Service de Santé des Armées (CRSSA) ; Service de Santé des Armées\",\"Département de biologie intégrée ; CHU Grenoble - Hôpital Michallon\",\"Délégation Générale à l\\u0027Armement (DGA)\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"PMC2826869\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00455090\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2826869\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2826869\",\"id\":\"oai:europepmc.org:2539674\"},\"trust\":0.7602892}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00455090v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Claeyssen, Richard","Andriollo-Sanchez, Maud","Arnaud, Josiane","Touvard, Laurence","Alonso, Antonia","Chancerelle, Yves","Roussel, Anne-Marie","Agay, Diane"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2539674"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Burn injury","Zinc intakes","Zinc status","Oxidative stress","Rat model","[SDV.MHEP] Life Sciences/Human health and pathology","[SDV.AEN] Life Sciences/Food and Nutrition","[SDV.BA] Life Sciences/Animal biology"]},"trust":{"type":"FLOAT","value":0.7602892},"target_publication_title":{"type":"STRING","value":"Burn-induced oxidative stress is altered by a low zinc status: kinetic study in burned rats fed a low zinc diet."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2008-08-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00455090\",\"titles\":[\"Burn-induced oxidative stress is altered by a low zinc status: kinetic study in burned rats fed a low zinc diet.\"],\"abstracts\":[\"As an initial subdeficient status of zinc, considered as an essential antioxidant trace element, is frequent in burned patients, we aim to assess the effects of low zinc dietary intakes on burn-induced oxidative stress, in an animal model. After 8 weeks of conditioning diets containing 80 ppm (control group) or 10 ppm of zinc (depleted group), Wistar rats were 20% TBSA burned and sampled 1-10 days after injury. Kinetic evolutions of zinc status, plasma oxidative stress parameters, and antioxidant enzymes were also studied in blood and organs. The zinc-depleted diet induced, before injury, a significant decrease in zinc bone level and the increase of oxidative stress markers without stimulation of antioxidant enzyme activity. After burn, more markedly in zinc depleted animals than in controls, zinc levels decreased in plasma and bone, while increasing in liver. The decrease of thiol groups and GSH/GSSG ratio and the depression of GPx activity in liver are also moderately emphasized. Nevertheless, depleted zinc status could not be considered as determining for oxidative damages after burn injury. Further investigations must also be done to enlighten the mechanism of beneficial effects of zinc supplementation reported in burned patients.\"],\"language\":\"eng\",\"subjects\":[\"[SDV:MHEP] Life Sciences/Human health and pathology\",\"[SDV:MHEP] Sciences du Vivant/Médecine humaine et pathologie\",\"[SDV:AEN] Life Sciences/Food and Nutrition\",\"[SDV:AEN] Sciences du Vivant/Alimentation et Nutrition\",\"[SDV:BA] Life Sciences/Animal biology\",\"[SDV:BA] Sciences du Vivant/Biologie animale\",\"Burn injury\",\"Zinc intakes\",\"Zinc status\",\"Oxidative stress\",\"Rat model\"],\"creators\":[\"Claeyssen, Richard\",\"Andriollo-Sanchez, Maud\",\"Arnaud, Josiane\",\"Touvard, Laurence\",\"Alonso, Antonia\",\"Chancerelle, Yves\",\"Roussel, Anne-Marie\",\"Agay, Diane\"],\"publicationdate\":\"2008-08-04\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00455090\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00455090\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00455090\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00455090\",\"id\":\"oai:HAL:hal-00455090v1\"},\"trust\":0.997159}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00455090"},"target_publication_author_list":{"type":"LIST_STRING","value":["Claeyssen, Richard","Andriollo-Sanchez, Maud","Arnaud, Josiane","Touvard, Laurence","Alonso, Antonia","Chancerelle, Yves","Roussel, Anne-Marie","Agay, Diane"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00455090v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:MHEP] Life Sciences/Human health and pathology","[SDV:MHEP] Sciences du Vivant/Médecine humaine et pathologie","[SDV:AEN] Life Sciences/Food and Nutrition","[SDV:AEN] Sciences du Vivant/Alimentation et Nutrition","[SDV:BA] Life Sciences/Animal biology","[SDV:BA] Sciences du Vivant/Biologie animale","Burn injury","Zinc intakes","Zinc status","Oxidative stress","Rat model"]},"trust":{"type":"FLOAT","value":0.997159},"target_publication_title":{"type":"STRING","value":"Burn-induced oxidative stress is altered by a low zinc status: kinetic study in burned rats fed a low zinc diet."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-08-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00455090\",\"titles\":[\"Burn-induced oxidative stress is altered by a low zinc status: kinetic study in burned rats fed a low zinc diet.\"],\"abstracts\":[\"As an initial subdeficient status of zinc, considered as an essential antioxidant trace element, is frequent in burned patients, we aim to assess the effects of low zinc dietary intakes on burn-induced oxidative stress, in an animal model. After 8 weeks of conditioning diets containing 80 ppm (control group) or 10 ppm of zinc (depleted group), Wistar rats were 20% TBSA burned and sampled 1-10 days after injury. Kinetic evolutions of zinc status, plasma oxidative stress parameters, and antioxidant enzymes were also studied in blood and organs. The zinc-depleted diet induced, before injury, a significant decrease in zinc bone level and the increase of oxidative stress markers without stimulation of antioxidant enzyme activity. After burn, more markedly in zinc depleted animals than in controls, zinc levels decreased in plasma and bone, while increasing in liver. The decrease of thiol groups and GSH/GSSG ratio and the depression of GPx activity in liver are also moderately emphasized. Nevertheless, depleted zinc status could not be considered as determining for oxidative damages after burn injury. Further investigations must also be done to enlighten the mechanism of beneficial effects of zinc supplementation reported in burned patients.\"],\"language\":\"eng\",\"subjects\":[\"[SDV:MHEP] Life Sciences/Human health and pathology\",\"[SDV:MHEP] Sciences du Vivant/Médecine humaine et pathologie\",\"[SDV:AEN] Life Sciences/Food and Nutrition\",\"[SDV:AEN] Sciences du Vivant/Alimentation et Nutrition\",\"[SDV:BA] Life Sciences/Animal biology\",\"[SDV:BA] Sciences du Vivant/Biologie animale\",\"Burn injury\",\"Zinc intakes\",\"Zinc status\",\"Oxidative stress\",\"Rat model\"],\"creators\":[\"Claeyssen, Richard\",\"Andriollo-Sanchez, Maud\",\"Arnaud, Josiane\",\"Touvard, Laurence\",\"Alonso, Antonia\",\"Chancerelle, Yves\",\"Roussel, Anne-Marie\",\"Agay, Diane\"],\"publicationdate\":\"2008-08-04\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"PMC2826869\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00455090\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2826869\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2826869\",\"id\":\"oai:europepmc.org:2539674\"},\"trust\":0.18631214}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00455090"},"target_publication_author_list":{"type":"LIST_STRING","value":["Claeyssen, Richard","Andriollo-Sanchez, Maud","Arnaud, Josiane","Touvard, Laurence","Alonso, Antonia","Chancerelle, Yves","Roussel, Anne-Marie","Agay, Diane"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2539674"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:MHEP] Life Sciences/Human health and pathology","[SDV:MHEP] Sciences du Vivant/Médecine humaine et pathologie","[SDV:AEN] Life Sciences/Food and Nutrition","[SDV:AEN] Sciences du Vivant/Alimentation et Nutrition","[SDV:BA] Life Sciences/Animal biology","[SDV:BA] Sciences du Vivant/Biologie animale","Burn injury","Zinc intakes","Zinc status","Oxidative stress","Rat model"]},"trust":{"type":"FLOAT","value":0.18631214},"target_publication_title":{"type":"STRING","value":"Burn-induced oxidative stress is altered by a low zinc status: kinetic study in burned rats fed a low zinc diet."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2008-08-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00455090\",\"titles\":[\"Burn-induced oxidative stress is altered by a low zinc status: kinetic study in burned rats fed a low zinc diet.\"],\"abstracts\":[\"As an initial subdeficient status of zinc, considered as an essential antioxidant trace element, is frequent in burned patients, we aim to assess the effects of low zinc dietary intakes on burn-induced oxidative stress, in an animal model. After 8 weeks of conditioning diets containing 80 ppm (control group) or 10 ppm of zinc (depleted group), Wistar rats were 20% TBSA burned and sampled 1-10 days after injury. Kinetic evolutions of zinc status, plasma oxidative stress parameters, and antioxidant enzymes were also studied in blood and organs. The zinc-depleted diet induced, before injury, a significant decrease in zinc bone level and the increase of oxidative stress markers without stimulation of antioxidant enzyme activity. After burn, more markedly in zinc depleted animals than in controls, zinc levels decreased in plasma and bone, while increasing in liver. The decrease of thiol groups and GSH/GSSG ratio and the depression of GPx activity in liver are also moderately emphasized. Nevertheless, depleted zinc status could not be considered as determining for oxidative damages after burn injury. Further investigations must also be done to enlighten the mechanism of beneficial effects of zinc supplementation reported in burned patients.\"],\"language\":\"eng\",\"subjects\":[\"[SDV:MHEP] Life Sciences/Human health and pathology\",\"[SDV:MHEP] Sciences du Vivant/Médecine humaine et pathologie\",\"[SDV:AEN] Life Sciences/Food and Nutrition\",\"[SDV:AEN] Sciences du Vivant/Alimentation et Nutrition\",\"[SDV:BA] Life Sciences/Animal biology\",\"[SDV:BA] Sciences du Vivant/Biologie animale\",\"Burn injury\",\"Zinc intakes\",\"Zinc status\",\"Oxidative stress\",\"Rat model\"],\"creators\":[\"Claeyssen, Richard\",\"Andriollo-Sanchez, Maud\",\"Arnaud, Josiane\",\"Touvard, Laurence\",\"Alonso, Antonia\",\"Chancerelle, Yves\",\"Roussel, Anne-Marie\",\"Agay, Diane\"],\"publicationdate\":\"2008-08-04\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"PMC2826869\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00455090\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2826869\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2826869\",\"id\":\"oai:europepmc.org:2539674\"},\"trust\":0.18631214}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00455090"},"target_publication_author_list":{"type":"LIST_STRING","value":["Claeyssen, Richard","Andriollo-Sanchez, Maud","Arnaud, Josiane","Touvard, Laurence","Alonso, Antonia","Chancerelle, Yves","Roussel, Anne-Marie","Agay, Diane"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2539674"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:MHEP] Life Sciences/Human health and pathology","[SDV:MHEP] Sciences du Vivant/Médecine humaine et pathologie","[SDV:AEN] Life Sciences/Food and Nutrition","[SDV:AEN] Sciences du Vivant/Alimentation et Nutrition","[SDV:BA] Life Sciences/Animal biology","[SDV:BA] Sciences du Vivant/Biologie animale","Burn injury","Zinc intakes","Zinc status","Oxidative stress","Rat model"]},"trust":{"type":"FLOAT","value":0.18631214},"target_publication_title":{"type":"STRING","value":"Burn-induced oxidative stress is altered by a low zinc status: kinetic study in burned rats fed a low zinc diet."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2008-08-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2539674\",\"titles\":[\"Burn-induced oxidative stress is altered by a low zinc status: kinetic study in burned rats fed a low zinc diet\"],\"abstracts\":[\"As an initial subdeficient status of zinc, considered as an essential antioxidant trace element, is frequent in burned patients, we aim to assess the effects of low zinc dietary intakes on burn induced oxidative stress, in an animal model. After eight weeks of conditioning diets containing 80 ppm (control group) or 10 ppm of zinc (depleted group), Wistar rats were 20% TBSA burned and sampled one to ten days after injury. Kinetic evolutions of zinc status, plasma oxidative stress parameters and antioxidant enzymes were also studied in blood and organs.\"],\"language\":\"eng\",\"subjects\":[\"Article\"],\"creators\":[\"Claeyssen, Richard\",\"Andriollo-Sanchez, Maud\",\"Arnaud, Josiane\",\"Touvard, Laurence\",\"Alonso, Antonia\",\"Chancerelle, Yves\",\"Roussel, Anne-Marie\",\"Agay, Diane\"],\"publicationdate\":\"2008-09-05\",\"publisher\":\"Humana Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC2826869\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2826869\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00455090\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00455090\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00455090\",\"id\":\"oai:HAL:hal-00455090v1\"},\"trust\":0.34432697}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2539674"},"target_publication_author_list":{"type":"LIST_STRING","value":["Claeyssen, Richard","Andriollo-Sanchez, Maud","Arnaud, Josiane","Touvard, Laurence","Alonso, Antonia","Chancerelle, Yves","Roussel, Anne-Marie","Agay, Diane"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00455090v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article"]},"trust":{"type":"FLOAT","value":0.34432697},"target_publication_title":{"type":"STRING","value":"Burn-induced oxidative stress is altered by a low zinc status: kinetic study in burned rats fed a low zinc diet"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-05"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2539674\",\"titles\":[\"Burn-induced oxidative stress is altered by a low zinc status: kinetic study in burned rats fed a low zinc diet\"],\"abstracts\":[\"As an initial subdeficient status of zinc, considered as an essential antioxidant trace element, is frequent in burned patients, we aim to assess the effects of low zinc dietary intakes on burn induced oxidative stress, in an animal model. After eight weeks of conditioning diets containing 80 ppm (control group) or 10 ppm of zinc (depleted group), Wistar rats were 20% TBSA burned and sampled one to ten days after injury. Kinetic evolutions of zinc status, plasma oxidative stress parameters and antioxidant enzymes were also studied in blood and organs.\"],\"language\":\"eng\",\"subjects\":[\"Article\"],\"creators\":[\"Claeyssen, Richard\",\"Andriollo-Sanchez, Maud\",\"Arnaud, Josiane\",\"Touvard, Laurence\",\"Alonso, Antonia\",\"Chancerelle, Yves\",\"Roussel, Anne-Marie\",\"Agay, Diane\"],\"publicationdate\":\"2008-09-05\",\"publisher\":\"Humana Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC2826869\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2826869\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00455090\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00455090\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00455090\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00455090\"},\"trust\":0.17997491}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2539674"},"target_publication_author_list":{"type":"LIST_STRING","value":["Claeyssen, Richard","Andriollo-Sanchez, Maud","Arnaud, Josiane","Touvard, Laurence","Alonso, Antonia","Chancerelle, Yves","Roussel, Anne-Marie","Agay, Diane"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00455090"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article"]},"trust":{"type":"FLOAT","value":0.17997491},"target_publication_title":{"type":"STRING","value":"Burn-induced oxidative stress is altered by a low zinc status: kinetic study in burned rats fed a low zinc diet"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-05"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00458183v1\",\"titles\":[\"Phylogenetic study and identification of Vibrio splendidus-related strains based on gyrB gene sequences.\"],\"abstracts\":[\"International audience\",\"Different strains related to Vibrio splendidus have been associated with infection of aquatic animals. An epidemiological study of V. splendidus strains associated with Crassostrea gigas mortalities demonstrated genetic diversity within this group and suggested its polyphyletic nature. Recently 4 species, V. lentus, V. chagasii, V. pomeroyi and V. kanaloae, phenotypically related to V. splendidus, have been described, although biochemical methods do not clearly discriminate species within this group. Here, we propose a polyphasic approach to investigate their taxonomic relationships. Phylogenetic analysis of V. splendidus-related strains was carried out using the nucleotide sequences of 16S ribosomal DNA (16S rDNA) and gyrase B subunit (gyrB) genes. Species delineation based on 16S rDNA-sequencing is limited because of divergence between cistrons, roughly equivalent to divergence between strains. Despite a high level of sequence similarity, strains were separated into 2 clades. In the phylogenetic tree constructed on the basis of gyrB gene sequences, strains were separated into 5 independent clusters containing V. splendidus, V. lentus, V. chagasii-type strains and a putative new genomic species. This phylogenetic grouping was almost congruent with that based on DNA–DNA hybridisation analysis. V. pomeroyi, V. kanaloae and V. tasmaniensis-type strains clustered together in a fifth clade. The gyrB gene-sequencing approach is discussed as an alternative for investigating the taxonomy of Vibrio species.\"],\"language\":\"eng\",\"subjects\":[\"Phylogenetic\",\"GyrB\",\"Vibrio splendidus\",\"Polyphyletic\",\"Taxonomy\",\"[SDV.BA] Life Sciences/Animal biology\"],\"creators\":[\"Le Roux, Frédérique\",\"Gay, Mélanie\",\"Lambert, Christophe\",\"Nicolas, Jean-Louis\",\"Gouy, Manolo\",\"Berthe, Franck\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"Inter Research\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire de Génétique et Pathologie (LGP) ; Institut Français de Recherche pour l\\u0027Exploitation de la Mer (IFREMER)\",\"Laboratoire des Sciences de l\\u0027Environnement Marin (LEMAR) ; Institut Français de Recherche pour l\\u0027Exploitation de la Mer (IFREMER) - Université de Bretagne Occidentale (UBO) - Institut Universitaire Européen de la Mer (IUEM) - Institut de Recherche pour le Développement - CNRS\",\"Laboratoire de Physiologie des Invertébrés Marins (LPI) ; Institut Français de Recherche pour l\\u0027Exploitation de la Mer (IFREMER)\",\"Laboratoire de Biométrie et Biologie Evolutive (LBBE) ; INRIA - Université Claude Bernard - Lyon I (UCBL) - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00458183\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00458183\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00458183\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00458183\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00458183\"},\"trust\":0.6322226}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00458183v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Le Roux, Frédérique","Gay, Mélanie","Lambert, Christophe","Nicolas, Jean-Louis","Gouy, Manolo","Berthe, Franck"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00458183"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Phylogenetic","GyrB","Vibrio splendidus","Polyphyletic","Taxonomy","[SDV.BA] Life Sciences/Animal biology"]},"trust":{"type":"FLOAT","value":0.6322226},"target_publication_title":{"type":"STRING","value":"Phylogenetic study and identification of Vibrio splendidus-related strains based on gyrB gene sequences."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00458183\",\"titles\":[\"Phylogenetic study and identification of Vibrio splendidus-related strains based on gyrB gene sequences.\"],\"abstracts\":[\"Different strains related to Vibrio splendidus have been associated with infection of aquatic animals. An epidemiological study of V. splendidus strains associated with Crassostrea gigas mortalities demonstrated genetic diversity within this group and suggested its polyphyletic nature. Recently 4 species, V. lentus, V. chagasii, V. pomeroyi and V. kanaloae, phenotypically related to V. splendidus, have been described, although biochemical methods do not clearly discriminate species within this group. Here, we propose a polyphasic approach to investigate their taxonomic relationships. Phylogenetic analysis of V. splendidus-related strains was carried out using the nucleotide sequences of 16S ribosomal DNA (16S rDNA) and gyrase B subunit (gyrB) genes. Species delineation based on 16S rDNA-sequencing is limited because of divergence between cistrons, roughly equivalent to divergence between strains. Despite a high level of sequence similarity, strains were separated into 2 clades. In the phylogenetic tree constructed on the basis of gyrB gene sequences, strains were separated into 5 independent clusters containing V. splendidus, V. lentus, V. chagasii-type strains and a putative new genomic species. This phylogenetic grouping was almost congruent with that based on DNA–DNA hybridisation analysis. V. pomeroyi, V. kanaloae and V. tasmaniensis-type strains clustered together in a fifth clade. The gyrB gene-sequencing approach is discussed as an alternative for investigating the taxonomy of Vibrio species.\"],\"language\":\"eng\",\"subjects\":[\"[SDV:BA] Life Sciences/Animal biology\",\"[SDV:BA] Sciences du Vivant/Biologie animale\",\"Phylogenetic\",\"GyrB\",\"Vibrio splendidus\",\"Polyphyletic\",\"Taxonomy\"],\"creators\":[\"Le Roux, Frédérique\",\"Gay, Mélanie\",\"Lambert, Christophe\",\"Nicolas, Jean-Louis\",\"Gouy, Manolo\",\"Berthe, Franck\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00458183\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00458183\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00458183\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00458183\",\"id\":\"oai:HAL:hal-00458183v1\"},\"trust\":0.55846345}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00458183"},"target_publication_author_list":{"type":"LIST_STRING","value":["Le Roux, Frédérique","Gay, Mélanie","Lambert, Christophe","Nicolas, Jean-Louis","Gouy, Manolo","Berthe, Franck"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00458183v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BA] Life Sciences/Animal biology","[SDV:BA] Sciences du Vivant/Biologie animale","Phylogenetic","GyrB","Vibrio splendidus","Polyphyletic","Taxonomy"]},"trust":{"type":"FLOAT","value":0.55846345},"target_publication_title":{"type":"STRING","value":"Phylogenetic study and identification of Vibrio splendidus-related strains based on gyrB gene sequences."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00888908\",\"titles\":[\"Dosage des bases puriques et pyrimidiques par chromatographie liquide à haute performance\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:SA:ZOO] Life Sciences/Agricultural sciences/Zootechny\",\"[SDV:SA:ZOO] Sciences du Vivant/Sciences agricoles/Zootechnie\"],\"creators\":[\"Lassalas, B.\",\"Jouany, Jp\",\"Broudiscou, L.\"],\"publicationdate\":\"1993-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00888908\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00888908\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00888908\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00888908\",\"id\":\"oai:HAL:hal-00888908v1\"},\"trust\":0.2691564}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00888908"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lassalas, B.","Jouany, Jp","Broudiscou, L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00888908v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:SA:ZOO] Life Sciences/Agricultural sciences/Zootechny","[SDV:SA:ZOO] Sciences du Vivant/Sciences agricoles/Zootechnie"]},"trust":{"type":"FLOAT","value":0.2691564},"target_publication_title":{"type":"STRING","value":"Dosage des bases puriques et pyrimidiques par chromatographie liquide à haute performance"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1993-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00888908\",\"titles\":[\"Dosage des bases puriques et pyrimidiques par chromatographie liquide à haute performance\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:SA:ZOO] Life Sciences/Agricultural sciences/Zootechny\",\"[SDV:SA:ZOO] Sciences du Vivant/Sciences agricoles/Zootechnie\"],\"creators\":[\"Lassalas, B.\",\"Jouany, Jp\",\"Broudiscou, L.\"],\"publicationdate\":\"1993-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00888908\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"International audience\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00888908\",\"id\":\"oai:HAL:hal-00888908v1\"},\"trust\":0.8089432}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00888908"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lassalas, B.","Jouany, Jp","Broudiscou, L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00888908v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:SA:ZOO] Life Sciences/Agricultural sciences/Zootechny","[SDV:SA:ZOO] Sciences du Vivant/Sciences agricoles/Zootechnie"]},"trust":{"type":"FLOAT","value":0.8089432},"target_publication_title":{"type":"STRING","value":"Dosage des bases puriques et pyrimidiques par chromatographie liquide à haute performance"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1993-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00888908v1\",\"titles\":[\"Dosage des bases puriques et pyrimidiques par chromatographie liquide à haute performance\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.SA.ZOO] Life Sciences/Agricultural sciences/Zootechny\"],\"creators\":[\"Lassalas, B.\",\"Jouany, Jp\",\"Broudiscou, L.\"],\"publicationdate\":\"1993-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00888908\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00888908\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00888908\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00888908\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00888908\"},\"trust\":0.6783747}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00888908v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lassalas, B.","Jouany, Jp","Broudiscou, L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00888908"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.SA.ZOO] Life Sciences/Agricultural sciences/Zootechny"]},"trust":{"type":"FLOAT","value":0.6783747},"target_publication_title":{"type":"STRING","value":"Dosage des bases puriques et pyrimidiques par chromatographie liquide à haute performance"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1993-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.usu.ac.id:123456789/12494\",\"titles\":[\"Prinsip Keterbukaan Dalam Perdagangan Saham Perseroan Terbatas\"],\"abstracts\":[\"Sejalan dengan perkembangan perekonomian yang didukung oleh peningkatan teknologi komunikasi itu, maka semakin meningkat pula upaya berbagai perusahaan untuk mengembangkan usahanya, dan melakukan kegiatan dalam rangka meraih dana untuk ekspansi bisnis dengan berbagai cara yang tentunya membuat kegiatan perekonomian hampir di seluruh dunia termasuk di Indonesia juga mengalami peningkatan yang sangat pesat.\\nMetode penelitian yang dipergunakan dalam penelitian ini berupa Penulisan yang merupakan penelitian normatif yaitu penulisan yang dilakukan dengan cara meneliti bahan pustaka yang merupakan penelitian deskriftif. Materi/bahan penelitian yang dipergunakan dalam menyelesaikan skripsi ini bersumber dan data sekunder dan data primer yaitu Undang-undang No. 8 Tahun 1995 tentang Pasar Modal dan Undang-undang Nomor 1 Tahun 1995 tentang Perseroan Terbatas, dan literatur-literatur yang berhubungan dengan pembahasan skripsi ini.\\nSetelah dilakukan penelitian maka dapatlah kita menemukan hasil dan sebuah penelitian yang merupakan suatu pembahasan yaitu : Due diligence merupakan kewajiban mutlak bagi pihak yang berkepentingan untuk memverifikasi keakuratan dari prinsip keterbukaan yang berhubungan dengan sekuritas perusahaan dan merupakan standar untuk penyelidikan dan penelitian yang merupakan bagian dari proses persiapan penawaran umum yang akan dilakukan oleh perusahaan, oleh karena itu sebahagian pihak menafsirkan due diligence ini dengan \\\"penelitian yang mendalam\\\". Pembelaan due diligence dalam kegiatan pasar modal dihubungkan dengan prinsip keterbukaan pada dasarnya merupakan suatu prinsip bagi lembaga penunjang pasar modal melakukan pembelaan diri terhadap tuntutan hukum dengan dasar due diligence defense, yakni : Telah melaksanakan tugas dengan sebaik-baiknya, telah melaksanakan tugas dengan itikad baik, Tidak melanggar hukum dan standar profesi dan akibat hukum jika prinsip keterbukaan informasi (disclose clausule) tersebut dilanggar maka kepada pihak yang dirugikan dapat mengajukan tuntutan ganti rugi kepada pihak - pihak yang memberikan informasi kepadanya dalam kegiatan pasar modal. Penuntutan ganti rugi tidak dapat dilakukan apabila pihak-pihak dalam kegiatan pasar modal seperti lembaga penunjang pasar modal memberikan informasi kepada seseorang secara profesional sesuai dengan pengetahuannya.\",\"000222041\"],\"language\":\"ind\",\"subjects\":[\"hukum perdata dagang\",\"keterbukaan\",\"perdagangan saham\",\"perseroan terbatas\"],\"creators\":[\"Emma Titin Wahyuni Purba\"],\"publicationdate\":\"2008-07-08\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Dr. Tan Kamello, SH. MS.; Puspa Melati, SH. M.Hum.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"USU Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/12494\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"},{\"url\":\"http://repository.usu.ac.id/handle/123456789/12494\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/12494\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"USU Repository\",\"url\":\"http://repository.usu.ac.id/handle/123456789/12494\",\"id\":\"oai:repository.usu.ac.id:123456789/36299\"},\"trust\":0.68361115}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"USU Repository"},"target_publication_id":{"type":"STRING","value":"oai:repository.usu.ac.id:123456789/12494"},"target_publication_author_list":{"type":"LIST_STRING","value":["Emma Titin Wahyuni Purba"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repository.usu.ac.id:123456789/36299"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"},"target_publication_subject_list":{"type":"LIST_STRING","value":["hukum perdata dagang","keterbukaan","perdagangan saham","perseroan terbatas"]},"trust":{"type":"FLOAT","value":0.68361115},"target_publication_title":{"type":"STRING","value":"Prinsip Keterbukaan Dalam Perdagangan Saham Perseroan Terbatas"},"provenance_datasource_name":{"type":"STRING","value":"USU Repository"},"target_dateofacceptance":{"type":"DATE","value":"2008-07-08"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.usu.ac.id:123456789/36299\",\"titles\":[\"Prinsip Keterbukaan Dalam Perdagangan Saham Perseroan Terbatas\"],\"abstracts\":[\"Sejalan dengan perkembangan perekonomian yang didukung oleh peningkatan teknologi komunikasi itu, maka semakin meningkat pula upaya berbagai perusahaan untuk mengembangkan usahanya, dan melakukan kegiatan dalam rangka meraih dana untuk ekspansi bisnis dengan berbagai cara yang tentunya membuat kegiatan perekonomian hampir di seluruh dunia termasuk di Indonesia juga mengalami peningkatan yang sangat pesat.\\nMetode penelitian yang dipergunakan dalam penelitian ini berupa Penulisan yang merupakan penelitian normatif yaitu penulisan yang dilakukan dengan cara meneliti bahan pustaka yang merupakan penelitian deskriftif. Materi/bahan penelitian yang dipergunakan dalam menyelesaikan skripsi ini bersumber dan data sekunder dan data primer yaitu Undang-undang No. 8 Tahun 1995 tentang Pasar Modal dan Undang-undang Nomor 1 Tahun 1995 tentang Perseroan Terbatas, dan literatur-literatur yang berhubungan dengan pembahasan skripsi ini.\\nSetelah dilakukan penelitian maka dapatlah kita menemukan hasil dan sebuah penelitian yang merupakan suatu pembahasan yaitu : Due diligence merupakan kewajiban mutlak bagi pihak yang berkepentingan untuk memverifikasi keakuratan dari prinsip keterbukaan yang berhubungan dengan sekuritas perusahaan dan merupakan standar untuk penyelidikan dan penelitian yang merupakan bagian dari proses persiapan penawaran umum yang akan dilakukan oleh perusahaan, oleh karena itu sebahagian pihak menafsirkan due diligence ini dengan \\\"penelitian yang mendalam\\\". Pembelaan due diligence dalam kegiatan pasar modal dihubungkan dengan prinsip keterbukaan pada dasarnya merupakan suatu prinsip bagi lembaga penunjang pasar modal melakukan pembelaan diri terhadap tuntutan hukum dengan dasar due diligence defense, yakni : Telah melaksanakan tugas dengan sebaik-baiknya, telah melaksanakan tugas dengan itikad baik, Tidak melanggar hukum dan standar profesi dan akibat hukum jika prinsip keterbukaan informasi (disclose clausule) tersebut dilanggar maka kepada pihak yang dirugikan dapat mengajukan tuntutan ganti rugi kepada pihak - pihak yang memberikan informasi kepadanya dalam kegiatan pasar modal. Penuntutan ganti rugi tidak dapat dilakukan apabila pihak-pihak dalam kegiatan pasar modal seperti lembaga penunjang pasar modal memberikan informasi kepada seseorang secara profesional sesuai dengan pengetahuannya.\",\"000222041\"],\"language\":\"ind\",\"subjects\":[\"hukum perdata dagang\",\"keterbukaan\",\"perdagangan saham\",\"perseroan terbatas\"],\"creators\":[\"Emma Titin Wahyuni Purba\"],\"publicationdate\":\"2008-07-08\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Dr. Tan Kamello, SH. MS.; Puspa Melati, SH. M.Hum.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"USU Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/12494\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"},{\"url\":\"http://repository.usu.ac.id/handle/123456789/12494\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/12494\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"USU Repository\",\"url\":\"http://repository.usu.ac.id/handle/123456789/12494\",\"id\":\"oai:repository.usu.ac.id:123456789/12494\"},\"trust\":0.9076334}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"USU Repository"},"target_publication_id":{"type":"STRING","value":"oai:repository.usu.ac.id:123456789/36299"},"target_publication_author_list":{"type":"LIST_STRING","value":["Emma Titin Wahyuni Purba"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repository.usu.ac.id:123456789/12494"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"},"target_publication_subject_list":{"type":"LIST_STRING","value":["hukum perdata dagang","keterbukaan","perdagangan saham","perseroan terbatas"]},"trust":{"type":"FLOAT","value":0.9076334},"target_publication_title":{"type":"STRING","value":"Prinsip Keterbukaan Dalam Perdagangan Saham Perseroan Terbatas"},"provenance_datasource_name":{"type":"STRING","value":"USU Repository"},"target_dateofacceptance":{"type":"DATE","value":"2008-07-08"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00212815v1\",\"titles\":[\"Détermination du profil de dopage en impuretés d\\u0027un transistor à partir des mesures de certaines de ses caractéristiques électriques\"],\"abstracts\":[\"La méthode exposée consiste à déduire du tableau des variations en fonction du courant et de la tension des éléments du schéma équivalent naturel, certains paramètres physiques tels que : résistivités de la base et du collecteur ; formes des jonctions ; épaisseur de la base.\"],\"language\":\"fra/fre\",\"subjects\":[\"transistors\",\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Biet, J. P.\"],\"publicationdate\":\"1961-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphysap:0196100220205900\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00212815\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00212815\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00212815\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00212815\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00212815\"},\"trust\":0.06252289}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00212815v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Biet, J. P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00212815"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["transistors","[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.06252289},"target_publication_title":{"type":"STRING","value":"Détermination du profil de dopage en impuretés d\u0027un transistor à partir des mesures de certaines de ses caractéristiques électriques"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1961-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00212815\",\"titles\":[\"Détermination du profil de dopage en impuretés d\\u0027un transistor à partir des mesures de certaines de ses caractéristiques électriques\"],\"abstracts\":[\"La méthode exposée consiste à déduire du tableau des variations en fonction du courant et de la tension des éléments du schéma équivalent naturel, certains paramètres physiques tels que : résistivités de la base et du collecteur ; formes des jonctions ; épaisseur de la base.\"],\"language\":\"fra/fre\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\",\"transistors\"],\"creators\":[\"Biet, J. P.\"],\"publicationdate\":\"1961-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphysap:0196100220205900\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00212815\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00212815\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00212815\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00212815\",\"id\":\"oai:HAL:jpa-00212815v1\"},\"trust\":0.23089975}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00212815"},"target_publication_author_list":{"type":"LIST_STRING","value":["Biet, J. P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00212815v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens","transistors"]},"trust":{"type":"FLOAT","value":0.23089975},"target_publication_title":{"type":"STRING","value":"Détermination du profil de dopage en impuretés d\u0027un transistor à partir des mesures de certaines de ses caractéristiques électriques"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1961-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:oxf:wpaper:2009-w14\",\"titles\":[\"Optimal Fiscal Stabilisation through Government Spending\"],\"abstracts\":[\"This paper examines under what conditions fiscal policy in the form of government spending should contribute to macroeconomic stabilisation.  To this end optimal fiscal targeting rules minimising the microfounded social loss are examined in the following settings.  Firstly, for the benchmark New Keynesian model, where monetary policy is unconstrained, a neutrality result for fiscal obtains: fiscal policy should not respond to any shocks.  Secondly, if monetary policy is constrained to follow a Taylor rule, a stabilisation role for fiscal policy emerges.  Fiscal policy should \\u0027lean against\\u0027 inflation and be countercyclical relative to output.  Crucially, the Taylor principle is shown to remain the key requirement on policy to guarantee equilibrium determinacy.  Thirdly, the fiscal targeting rule obtained under a Taylor rule is shown to be optimal, too, when policy is optimal but subject to monetary frictions.  Thus, there is a stabilisation role for government spending under monetary frictions, changing the role of monetary and fiscal policy fundamentally.\"],\"language\":\"und\",\"subjects\":[\"Monetary policy, Fiscal policy, Macroeconomic stabilisation, Discretion, Dynamic general equilbrium, Sticky prices, Monetary frictions, Equilibrium determinacy\"],\"creators\":[\"Fabian Eser\"],\"publicationdate\":\"2009-11-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nuff.ox.ac.uk/economics/papers/2009/w14/091008_FEser_FiscalStabilisation.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.nuffield.ox.ac.uk/economics/papers/2009/w14/091008_FEser_FiscalStabilisation.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.nuffield.ox.ac.uk/economics/papers/2009/w14/091008_FEser_FiscalStabilisation.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.nuffield.ox.ac.uk/economics/papers/2009/w14/091008_FEser_FiscalStabilisation.pdf\",\"id\":\"oai:RePEc:nuf:econwp:0914\"},\"trust\":0.9941231}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:oxf:wpaper:2009-w14"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fabian Eser"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:nuf:econwp:0914"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Monetary policy, Fiscal policy, Macroeconomic stabilisation, Discretion, Dynamic general equilbrium, Sticky prices, Monetary frictions, Equilibrium determinacy"]},"trust":{"type":"FLOAT","value":0.9941231},"target_publication_title":{"type":"STRING","value":"Optimal Fiscal Stabilisation through Government Spending"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nuf:econwp:0914\",\"titles\":[\"Optimal Fiscal Stabilisation through Government Spending\"],\"abstracts\":[\"This paper examines under what conditions fiscal policy in the form of government spending should contribute to macroeconomic stabilisation. To this end optimal fiscal targeting rules minimising the microfounded social loss are examined in the following settings. Firstly, for the benchmark New Keynesian model, where monetary policy is unconstrained, a neutrality result for fiscal obtains: fiscal policy should not respond to any shocks. Secondly, if monetary policy is constrained to follow a Taylor rule, a stabilisation role for fiscal policy emerges. Fiscal policy should \\u0027lean against\\u0027 inflation and be countercyclical relative to output. Crucially, the Taylor principle is shown to remain the key requirement on policy to guarantee equilibrium determinacy. Thirdly, the fiscal targeting rule obtained under a Taylor rule is shown to be optimal, too, when policy is optimal but subject to monetary frictions. Thus, there is a stabilisation role for government spending under monetary frictions, changing the role of monetary and fiscal policy fundamentally.\"],\"language\":\"und\",\"subjects\":[\"Monetary Policy, Fiscal Policy, Macroeconomic Stabilisation, Discretion, Dynamic General Equilibrium, Sticky Prices, Monetary Frictions, Equilibrium Determinacy\"],\"creators\":[\"Fabian Eser\"],\"publicationdate\":\"2009-10-13\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nuffield.ox.ac.uk/economics/papers/2009/w14/091008_FEser_FiscalStabilisation.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.nuff.ox.ac.uk/economics/papers/2009/w14/091008_FEser_FiscalStabilisation.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.nuff.ox.ac.uk/economics/papers/2009/w14/091008_FEser_FiscalStabilisation.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.nuff.ox.ac.uk/economics/papers/2009/w14/091008_FEser_FiscalStabilisation.pdf\",\"id\":\"oai:RePEc:oxf:wpaper:2009-w14\"},\"trust\":0.09245998}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nuf:econwp:0914"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fabian Eser"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:oxf:wpaper:2009-w14"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Monetary Policy, Fiscal Policy, Macroeconomic Stabilisation, Discretion, Dynamic General Equilibrium, Sticky Prices, Monetary Frictions, Equilibrium Determinacy"]},"trust":{"type":"FLOAT","value":0.09245998},"target_publication_title":{"type":"STRING","value":"Optimal Fiscal Stabilisation through Government Spending"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-10-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3544131\",\"titles\":[\"Editorial: Frontiers in the acquisition of literacy\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Psychology\",\"Editorial\",\"reading acquisition theory\",\"alphabetism\",\"predictors of reading\",\"spelling\",\"reading intervention and methodology\",\"reading comprehension\"],\"creators\":[\"Fletcher-Flinn, Claire M.\"],\"publicationdate\":\"2015-07-01\",\"publisher\":\"Frontiers Media S.A.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Frontiers in Psychology\",\"issn\":\"\",\"eissn\":\"1664-1078\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3389/fpsyg.2015.01019\",\"type\":\"doi\"},{\"value\":\"PMC4550698\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4550698\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.3389/fpsyg.2015.01019\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Psychology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.3389/fpsyg.2015.01019\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Psychology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Frontiers\",\"url\":\"http://dx.doi.org/10.3389/fpsyg.2015.01019\",\"id\":\"10.3389/fpsyg.2015.01019\"},\"trust\":0.77648103}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3544131"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fletcher-Flinn, Claire M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.3389/fpsyg.2015.01019"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::3db634fc5446f389d0b826ea400a5da6"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Psychology","Editorial","reading acquisition theory","alphabetism","predictors of reading","spelling","reading intervention and methodology","reading comprehension"]},"trust":{"type":"FLOAT","value":0.77648103},"target_publication_title":{"type":"STRING","value":"Editorial: Frontiers in the acquisition of literacy"},"provenance_datasource_name":{"type":"STRING","value":"Frontiers"},"target_dateofacceptance":{"type":"DATE","value":"2015-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2056682\",\"titles\":[\"Environmental Applications of Biosurfactants: Recent Advances\"],\"abstracts\":[\"Increasing public awareness of environmental pollution influences the search and development of technologies that help in clean up of organic and inorganic contaminants such as hydrocarbons and metals. An alternative and eco-friendly method of remediation technology of environments contaminated with these pollutants is the use of biosurfactants and biosurfactant-producing microorganisms. The diversity of biosurfactants makes them an attractive group of compounds for potential use in a wide variety of industrial and biotechnological applications. The purpose of this review is to provide a comprehensive overview of advances in the applications of biosurfactants and biosurfactant-producing microorganisms in hydrocarbon and metal remediation technologies.\"],\"language\":\"eng\",\"subjects\":[\"Review\",\"biosurfactants\",\"hydrocarbons\",\"metals\",\"remediation technologies\"],\"creators\":[\"Pacwa-Płociniczak, Magdalena\",\"Płaza, Grażyna A.\",\"Piotrowska-Seget, Zofia\",\"Cameotra, Swaranjit Singh\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Molecular Diversity Preservation International (MDPI)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"International Journal of Molecular Sciences\",\"issn\":\"\",\"eissn\":\"1422-0067\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3390/ijms12010633\",\"type\":\"doi\"},{\"value\":\"PMC3039971\",\"type\":\"pmc\"},{\"value\":\"21340005\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3039971\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.mdpi.com/1422-0067/12/1/633/\",\"license\":\"OPEN\",\"hostedby\":\"International Journal of Molecular Sciences\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.mdpi.com/1422-0067/12/1/633/\",\"license\":\"OPEN\",\"hostedby\":\"International Journal of Molecular Sciences\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.mdpi.com/1422-0067/12/1/633/\",\"id\":\"oai:doaj.org/article:1765fc6918924d29ba93adfe0d2c11cd\"},\"trust\":0.12901539}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2056682"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pacwa-Płociniczak, Magdalena","Płaza, Grażyna A.","Piotrowska-Seget, Zofia","Cameotra, Swaranjit Singh"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:1765fc6918924d29ba93adfe0d2c11cd"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Review","biosurfactants","hydrocarbons","metals","remediation technologies"]},"trust":{"type":"FLOAT","value":0.12901539},"target_publication_title":{"type":"STRING","value":"Environmental Applications of Biosurfactants: Recent Advances"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repozytorium.umk.pl:item/1536\",\"titles\":[\"Andrzej Muszala, Józef Binnebesel, Piotr Krakowiak, Marek Krobicki (red.), Dolentium Hominum. Duchowni i świeccy wobec ludzkiego cierpienia, Bonifratrzy, Kraków 2011, ss. 440\"],\"abstracts\":[],\"language\":\"pol\",\"subjects\":[],\"creators\":[\"Kustra, Czesław\"],\"publicationdate\":\"2012-11-28\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repozytorium Uniwersytetu Mikołaja Kopernika\"],\"pids\":[{\"value\":\"10.12775/PCh.2012.037\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://repozytorium.umk.pl/handle/item/1536\",\"license\":\"OPEN\",\"hostedby\":\"Repozytorium Uniwersytetu Mikołaja Kopernika\",\"instancetype\":\"Review\"},{\"url\":\"http://repozytorium.umk.pl/handle/item/1536\",\"license\":\"OPEN\",\"hostedby\":\"Repository of Nicolaus Copernicus University\",\"instancetype\":\"Review\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repozytorium.umk.pl/handle/item/1536\",\"license\":\"OPEN\",\"hostedby\":\"Repository of Nicolaus Copernicus University\",\"instancetype\":\"Review\"}]},\"provenance\":{\"repositoryName\":\"Repository of Nicolaus Copernicus University\",\"url\":\"http://repozytorium.umk.pl/handle/item/1536\",\"id\":\"oai:repozytorium.umk.pl:item/1536\"},\"trust\":0.9077675}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repozytorium Uniwersytetu Mikołaja Kopernika"},"target_publication_id":{"type":"STRING","value":"oai:repozytorium.umk.pl:item/1536"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kustra, Czesław"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repozytorium.umk.pl:item/1536"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::852c44ddce7e0c7e4c64d86147300831"},"trust":{"type":"FLOAT","value":0.9077675},"target_publication_title":{"type":"STRING","value":"Andrzej Muszala, Józef Binnebesel, Piotr Krakowiak, Marek Krobicki (red.), Dolentium Hominum. Duchowni i świeccy wobec ludzkiego cierpienia, Bonifratrzy, Kraków 2011, ss. 440"},"provenance_datasource_name":{"type":"STRING","value":"Repository of Nicolaus Copernicus University"},"target_dateofacceptance":{"type":"DATE","value":"2012-11-28"},"target_datasource_id":{"type":"STRING","value":"10|driver______::d90775d3c9c1f9069b98af3df0f2349d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repozytorium.umk.pl:item/1536\",\"titles\":[\"Andrzej Muszala, Józef Binnebesel, Piotr Krakowiak, Marek Krobicki (red.), Dolentium Hominum. Duchowni i świeccy wobec ludzkiego cierpienia, Bonifratrzy, Kraków 2011, ss. 440\"],\"abstracts\":[],\"language\":\"pol\",\"subjects\":[],\"creators\":[\"Kustra, Czesław\"],\"publicationdate\":\"2012-11-28\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repository of Nicolaus Copernicus University\"],\"pids\":[{\"value\":\"10.12775/PCh.2012.037\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://repozytorium.umk.pl/handle/item/1536\",\"license\":\"OPEN\",\"hostedby\":\"Repository of Nicolaus Copernicus University\",\"instancetype\":\"Review\"},{\"url\":\"http://repozytorium.umk.pl/handle/item/1536\",\"license\":\"OPEN\",\"hostedby\":\"Repozytorium Uniwersytetu Mikołaja Kopernika\",\"instancetype\":\"Review\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repozytorium.umk.pl/handle/item/1536\",\"license\":\"OPEN\",\"hostedby\":\"Repozytorium Uniwersytetu Mikołaja Kopernika\",\"instancetype\":\"Review\"}]},\"provenance\":{\"repositoryName\":\"Repozytorium Uniwersytetu Mikołaja Kopernika\",\"url\":\"http://repozytorium.umk.pl/handle/item/1536\",\"id\":\"oai:repozytorium.umk.pl:item/1536\"},\"trust\":0.21317476}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repository of Nicolaus Copernicus University"},"target_publication_id":{"type":"STRING","value":"oai:repozytorium.umk.pl:item/1536"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kustra, Czesław"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repozytorium.umk.pl:item/1536"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::d90775d3c9c1f9069b98af3df0f2349d"},"trust":{"type":"FLOAT","value":0.21317476},"target_publication_title":{"type":"STRING","value":"Andrzej Muszala, Józef Binnebesel, Piotr Krakowiak, Marek Krobicki (red.), Dolentium Hominum. Duchowni i świeccy wobec ludzkiego cierpienia, Bonifratrzy, Kraków 2011, ss. 440"},"provenance_datasource_name":{"type":"STRING","value":"Repozytorium Uniwersytetu Mikołaja Kopernika"},"target_dateofacceptance":{"type":"DATE","value":"2012-11-28"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::852c44ddce7e0c7e4c64d86147300831"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:gredos.usal.es:10366/72380\",\"titles\":[\"\\\"Y yo pasé, sereno entre los viles: Estado, Revolución e Iglesia en Cuba, 1959-1961\\\"\"],\"abstracts\":[\"[ES] El presente artículo aborda las relaciones mantenidas entre la Iglesia católica y el gobierno de La Habana desde el triunfo de la Revolución hasta 1961, fecha de la salida de numerosos sacerdotes y religiosas de la isla. Se reconstruye y analiza un corto período de tiempo que marcaría un punto de inflexión en dichas relaciones, iniciando una nueva etapa dentro del largo proceso revolucionario cubano.\",\"[EN] The present article studies the relations between the Catholic Church and the govenment of Havana from the triumph of the Revolution to 1961; in this year, most of the priests and nuns were sent of the island. The article analyzes that time which means a valuable change in the nature of those relations, beginning a new phase within the long Cuban revolutionary process.\"],\"language\":\"esl/spa\",\"subjects\":[\"Literatura hispanoamericana\",\"Literatura latinoamericana\",\"Spanish American literature\",\"Latin American literature\"],\"creators\":[\"Álvarez Cuartero, Izaskun\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"Ediciones Universidad de Salamanca (España)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/72380\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"},{\"url\":\"http://campus.usal.es/~revistas_trabajo/index.php/1130-2887/article/view/2211\",\"license\":\"OPEN\",\"hostedby\":\"América Latina Hoy\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://campus.usal.es/~revistas_trabajo/index.php/1130-2887/article/view/2211\",\"license\":\"OPEN\",\"hostedby\":\"América Latina Hoy\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://campus.usal.es/~revistas_trabajo/index.php/1130-2887/article/view/2211\",\"id\":\"oai:doaj.org/article:26966cf086054ac2aab5f4b50738ca62\"},\"trust\":0.9353947}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:gredos.usal.es:10366/72380"},"target_publication_author_list":{"type":"LIST_STRING","value":["Álvarez Cuartero, Izaskun"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:26966cf086054ac2aab5f4b50738ca62"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Literatura hispanoamericana","Literatura latinoamericana","Spanish American literature","Latin American literature"]},"trust":{"type":"FLOAT","value":0.9353947},"target_publication_title":{"type":"STRING","value":"\"Y yo pasé, sereno entre los viles: Estado, Revolución e Iglesia en Cuba, 1959-1961\""},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:gredos.usal.es:10366/72380\",\"titles\":[\"\\\"Y yo pasé, sereno entre los viles: Estado, Revolución e Iglesia en Cuba, 1959-1961\\\"\"],\"abstracts\":[\"[ES] El presente artículo aborda las relaciones mantenidas entre la Iglesia católica y el gobierno de La Habana desde el triunfo de la Revolución hasta 1961, fecha de la salida de numerosos sacerdotes y religiosas de la isla. Se reconstruye y analiza un corto período de tiempo que marcaría un punto de inflexión en dichas relaciones, iniciando una nueva etapa dentro del largo proceso revolucionario cubano.\",\"[EN] The present article studies the relations between the Catholic Church and the govenment of Havana from the triumph of the Revolution to 1961; in this year, most of the priests and nuns were sent of the island. The article analyzes that time which means a valuable change in the nature of those relations, beginning a new phase within the long Cuban revolutionary process.\"],\"language\":\"esl/spa\",\"subjects\":[\"Literatura hispanoamericana\",\"Literatura latinoamericana\",\"Spanish American literature\",\"Latin American literature\"],\"creators\":[\"Álvarez Cuartero, Izaskun\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"Ediciones Universidad de Salamanca (España)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/72380\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10366/72380\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/72380\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/72380\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/72380\"},\"trust\":0.21771604}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:gredos.usal.es:10366/72380"},"target_publication_author_list":{"type":"LIST_STRING","value":["Álvarez Cuartero, Izaskun"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/72380"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Literatura hispanoamericana","Literatura latinoamericana","Spanish American literature","Latin American literature"]},"trust":{"type":"FLOAT","value":0.21771604},"target_publication_title":{"type":"STRING","value":"\"Y yo pasé, sereno entre los viles: Estado, Revolución e Iglesia en Cuba, 1959-1961\""},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:gredos.usal.es:10366/72380\",\"titles\":[\"\\\"Y yo pasé, sereno entre los viles: Estado, Revolución e Iglesia en Cuba, 1959-1961\\\"\"],\"abstracts\":[\"[ES] El presente artículo aborda las relaciones mantenidas entre la Iglesia católica y el gobierno de La Habana desde el triunfo de la Revolución hasta 1961, fecha de la salida de numerosos sacerdotes y religiosas de la isla. Se reconstruye y analiza un corto período de tiempo que marcaría un punto de inflexión en dichas relaciones, iniciando una nueva etapa dentro del largo proceso revolucionario cubano.\",\"[EN] The present article studies the relations between the Catholic Church and the govenment of Havana from the triumph of the Revolution to 1961; in this year, most of the priests and nuns were sent of the island. The article analyzes that time which means a valuable change in the nature of those relations, beginning a new phase within the long Cuban revolutionary process.\"],\"language\":\"esl/spa\",\"subjects\":[\"Literatura hispanoamericana\",\"Literatura latinoamericana\",\"Spanish American literature\",\"Latin American literature\"],\"creators\":[\"Álvarez Cuartero, Izaskun\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"Ediciones Universidad de Salamanca (España)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/72380\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10366/21650\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/21650\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/21650\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/21650\"},\"trust\":0.40857047}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:gredos.usal.es:10366/72380"},"target_publication_author_list":{"type":"LIST_STRING","value":["Álvarez Cuartero, Izaskun"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/21650"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Literatura hispanoamericana","Literatura latinoamericana","Spanish American literature","Latin American literature"]},"trust":{"type":"FLOAT","value":0.40857047},"target_publication_title":{"type":"STRING","value":"\"Y yo pasé, sereno entre los viles: Estado, Revolución e Iglesia en Cuba, 1959-1961\""},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:gredos.usal.es:10366/72380\",\"titles\":[\"\\\"Y yo pasé, sereno entre los viles: Estado, Revolución e Iglesia en Cuba, 1959-1961\\\"\"],\"abstracts\":[\"[ES] El presente artículo aborda las relaciones mantenidas entre la Iglesia católica y el gobierno de La Habana desde el triunfo de la Revolución hasta 1961, fecha de la salida de numerosos sacerdotes y religiosas de la isla. Se reconstruye y analiza un corto período de tiempo que marcaría un punto de inflexión en dichas relaciones, iniciando una nueva etapa dentro del largo proceso revolucionario cubano.\",\"[EN] The present article studies the relations between the Catholic Church and the govenment of Havana from the triumph of the Revolution to 1961; in this year, most of the priests and nuns were sent of the island. The article analyzes that time which means a valuable change in the nature of those relations, beginning a new phase within the long Cuban revolutionary process.\"],\"language\":\"esl/spa\",\"subjects\":[\"Literatura hispanoamericana\",\"Literatura latinoamericana\",\"Spanish American literature\",\"Latin American literature\"],\"creators\":[\"Álvarez Cuartero, Izaskun\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"Ediciones Universidad de Salamanca (España)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/72380\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"},{\"url\":\"http://revistas.usal.es/index.php/1130-2887/article/view/2211\",\"license\":\"OPEN\",\"hostedby\":\"América Latina Hoy\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://revistas.usal.es/index.php/1130-2887/article/view/2211\",\"license\":\"OPEN\",\"hostedby\":\"América Latina Hoy\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://revistas.usal.es/index.php/1130-2887/article/view/2211\",\"id\":\"oai:doaj.org/article:5ddca98ecdb14503a1e66afa43c89452\"},\"trust\":0.30618948}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:gredos.usal.es:10366/72380"},"target_publication_author_list":{"type":"LIST_STRING","value":["Álvarez Cuartero, Izaskun"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:5ddca98ecdb14503a1e66afa43c89452"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Literatura hispanoamericana","Literatura latinoamericana","Spanish American literature","Latin American literature"]},"trust":{"type":"FLOAT","value":0.30618948},"target_publication_title":{"type":"STRING","value":"\"Y yo pasé, sereno entre los viles: Estado, Revolución e Iglesia en Cuba, 1959-1961\""},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/72380\",\"titles\":[\"\\\"Y yo pasé, sereno entre los viles: Estado, Revolución e Iglesia en Cuba, 1959-1961\\\"\"],\"abstracts\":[\"[ES] El presente artículo aborda las relaciones mantenidas entre la Iglesia católica y el gobierno de La Habana desde el triunfo de la Revolución hasta 1961, fecha de la salida de numerosos sacerdotes y religiosas de la isla. Se reconstruye y analiza un corto período de tiempo que marcaría un punto de inflexión en dichas relaciones, iniciando una nueva etapa dentro del largo proceso revolucionario cubano.\",\"[EN] The present article studies the relations between the Catholic Church and the govenment of Havana from the triumph of the Revolution to 1961; in this year, most of the priests and nuns were sent of the island. The article analyzes that time which means a valuable change in the nature of those relations, beginning a new phase within the long Cuban revolutionary process.\"],\"language\":\"esl/spa\",\"subjects\":[\"Literatura hispanoamericana\",\"Literatura latinoamericana\",\"Spanish American literature\",\"Latin American literature\"],\"creators\":[\"Álvarez Cuartero, Izaskun\"],\"publicationdate\":\"2009-11-04\",\"publisher\":\"Ediciones Universidad de Salamanca (España)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/72380\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"},{\"url\":\"http://campus.usal.es/~revistas_trabajo/index.php/1130-2887/article/view/2211\",\"license\":\"OPEN\",\"hostedby\":\"América Latina Hoy\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://campus.usal.es/~revistas_trabajo/index.php/1130-2887/article/view/2211\",\"license\":\"OPEN\",\"hostedby\":\"América Latina Hoy\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://campus.usal.es/~revistas_trabajo/index.php/1130-2887/article/view/2211\",\"id\":\"oai:doaj.org/article:26966cf086054ac2aab5f4b50738ca62\"},\"trust\":0.15243495}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/72380"},"target_publication_author_list":{"type":"LIST_STRING","value":["Álvarez Cuartero, Izaskun"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:26966cf086054ac2aab5f4b50738ca62"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Literatura hispanoamericana","Literatura latinoamericana","Spanish American literature","Latin American literature"]},"trust":{"type":"FLOAT","value":0.15243495},"target_publication_title":{"type":"STRING","value":"\"Y yo pasé, sereno entre los viles: Estado, Revolución e Iglesia en Cuba, 1959-1961\""},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-11-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/72380\",\"titles\":[\"\\\"Y yo pasé, sereno entre los viles: Estado, Revolución e Iglesia en Cuba, 1959-1961\\\"\"],\"abstracts\":[\"[ES] El presente artículo aborda las relaciones mantenidas entre la Iglesia católica y el gobierno de La Habana desde el triunfo de la Revolución hasta 1961, fecha de la salida de numerosos sacerdotes y religiosas de la isla. Se reconstruye y analiza un corto período de tiempo que marcaría un punto de inflexión en dichas relaciones, iniciando una nueva etapa dentro del largo proceso revolucionario cubano.\",\"[EN] The present article studies the relations between the Catholic Church and the govenment of Havana from the triumph of the Revolution to 1961; in this year, most of the priests and nuns were sent of the island. The article analyzes that time which means a valuable change in the nature of those relations, beginning a new phase within the long Cuban revolutionary process.\"],\"language\":\"esl/spa\",\"subjects\":[\"Literatura hispanoamericana\",\"Literatura latinoamericana\",\"Spanish American literature\",\"Latin American literature\"],\"creators\":[\"Álvarez Cuartero, Izaskun\"],\"publicationdate\":\"2009-11-04\",\"publisher\":\"Ediciones Universidad de Salamanca (España)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/72380\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10366/72380\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/72380\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/72380\",\"id\":\"oai:gredos.usal.es:10366/72380\"},\"trust\":0.35719234}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/72380"},"target_publication_author_list":{"type":"LIST_STRING","value":["Álvarez Cuartero, Izaskun"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:gredos.usal.es:10366/72380"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Literatura hispanoamericana","Literatura latinoamericana","Spanish American literature","Latin American literature"]},"trust":{"type":"FLOAT","value":0.35719234},"target_publication_title":{"type":"STRING","value":"\"Y yo pasé, sereno entre los viles: Estado, Revolución e Iglesia en Cuba, 1959-1961\""},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"2009-11-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/72380\",\"titles\":[\"\\\"Y yo pasé, sereno entre los viles: Estado, Revolución e Iglesia en Cuba, 1959-1961\\\"\"],\"abstracts\":[\"[ES] El presente artículo aborda las relaciones mantenidas entre la Iglesia católica y el gobierno de La Habana desde el triunfo de la Revolución hasta 1961, fecha de la salida de numerosos sacerdotes y religiosas de la isla. Se reconstruye y analiza un corto período de tiempo que marcaría un punto de inflexión en dichas relaciones, iniciando una nueva etapa dentro del largo proceso revolucionario cubano.\",\"[EN] The present article studies the relations between the Catholic Church and the govenment of Havana from the triumph of the Revolution to 1961; in this year, most of the priests and nuns were sent of the island. The article analyzes that time which means a valuable change in the nature of those relations, beginning a new phase within the long Cuban revolutionary process.\"],\"language\":\"esl/spa\",\"subjects\":[\"Literatura hispanoamericana\",\"Literatura latinoamericana\",\"Spanish American literature\",\"Latin American literature\"],\"creators\":[\"Álvarez Cuartero, Izaskun\"],\"publicationdate\":\"2009-11-04\",\"publisher\":\"Ediciones Universidad de Salamanca (España)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/72380\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10366/21650\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/21650\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/21650\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/21650\"},\"trust\":0.46183532}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/72380"},"target_publication_author_list":{"type":"LIST_STRING","value":["Álvarez Cuartero, Izaskun"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/21650"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Literatura hispanoamericana","Literatura latinoamericana","Spanish American literature","Latin American literature"]},"trust":{"type":"FLOAT","value":0.46183532},"target_publication_title":{"type":"STRING","value":"\"Y yo pasé, sereno entre los viles: Estado, Revolución e Iglesia en Cuba, 1959-1961\""},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"2009-11-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/72380\",\"titles\":[\"\\\"Y yo pasé, sereno entre los viles: Estado, Revolución e Iglesia en Cuba, 1959-1961\\\"\"],\"abstracts\":[\"[ES] El presente artículo aborda las relaciones mantenidas entre la Iglesia católica y el gobierno de La Habana desde el triunfo de la Revolución hasta 1961, fecha de la salida de numerosos sacerdotes y religiosas de la isla. Se reconstruye y analiza un corto período de tiempo que marcaría un punto de inflexión en dichas relaciones, iniciando una nueva etapa dentro del largo proceso revolucionario cubano.\",\"[EN] The present article studies the relations between the Catholic Church and the govenment of Havana from the triumph of the Revolution to 1961; in this year, most of the priests and nuns were sent of the island. The article analyzes that time which means a valuable change in the nature of those relations, beginning a new phase within the long Cuban revolutionary process.\"],\"language\":\"esl/spa\",\"subjects\":[\"Literatura hispanoamericana\",\"Literatura latinoamericana\",\"Spanish American literature\",\"Latin American literature\"],\"creators\":[\"Álvarez Cuartero, Izaskun\"],\"publicationdate\":\"2009-11-04\",\"publisher\":\"Ediciones Universidad de Salamanca (España)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/72380\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"},{\"url\":\"http://revistas.usal.es/index.php/1130-2887/article/view/2211\",\"license\":\"OPEN\",\"hostedby\":\"América Latina Hoy\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://revistas.usal.es/index.php/1130-2887/article/view/2211\",\"license\":\"OPEN\",\"hostedby\":\"América Latina Hoy\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://revistas.usal.es/index.php/1130-2887/article/view/2211\",\"id\":\"oai:doaj.org/article:5ddca98ecdb14503a1e66afa43c89452\"},\"trust\":0.33765376}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/72380"},"target_publication_author_list":{"type":"LIST_STRING","value":["Álvarez Cuartero, Izaskun"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:5ddca98ecdb14503a1e66afa43c89452"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Literatura hispanoamericana","Literatura latinoamericana","Spanish American literature","Latin American literature"]},"trust":{"type":"FLOAT","value":0.33765376},"target_publication_title":{"type":"STRING","value":"\"Y yo pasé, sereno entre los viles: Estado, Revolución e Iglesia en Cuba, 1959-1961\""},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-11-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/21650\",\"titles\":[\"\\\"Y yo pasé, sereno entre los viles: estado, revolución e iglesia en Cuba, 1959-1961\\\"\"],\"abstracts\":[\"El presente artículo aborda la relaciones mantenidas entre la Iglesia católica y el gobierno de La Habana desde el triunfo de la Revolución hasta 1961, fecha de la salida de numerosos sacerdotes y religiosas de la isla. Se reconstruye y analiza un corto período de tiempo que marcaría un punto de inflexión en dichas relaciones, iniciando una nueva etapa dentro del largo proceso revolucionario cubano.\"],\"language\":\"esl/spa\",\"subjects\":[\"Iglesia Católica\",\"Revolución cubana, 1959\",\"Catholic Church\",\"Cuban Revolution, 1959\"],\"creators\":[\"Álvarez Cuartero, Izaskun\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"Universidad de Salamanca. Instituto de Estudios de Iberoamérica y Portugal (España)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/21650\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"},{\"url\":\"http://campus.usal.es/~revistas_trabajo/index.php/1130-2887/article/view/2211\",\"license\":\"OPEN\",\"hostedby\":\"América Latina Hoy\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://campus.usal.es/~revistas_trabajo/index.php/1130-2887/article/view/2211\",\"license\":\"OPEN\",\"hostedby\":\"América Latina Hoy\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://campus.usal.es/~revistas_trabajo/index.php/1130-2887/article/view/2211\",\"id\":\"oai:doaj.org/article:26966cf086054ac2aab5f4b50738ca62\"},\"trust\":0.09892213}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/21650"},"target_publication_author_list":{"type":"LIST_STRING","value":["Álvarez Cuartero, Izaskun"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:26966cf086054ac2aab5f4b50738ca62"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Iglesia Católica","Revolución cubana, 1959","Catholic Church","Cuban Revolution, 1959"]},"trust":{"type":"FLOAT","value":0.09892213},"target_publication_title":{"type":"STRING","value":"\"Y yo pasé, sereno entre los viles: estado, revolución e iglesia en Cuba, 1959-1961\""},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/21650\",\"titles\":[\"\\\"Y yo pasé, sereno entre los viles: estado, revolución e iglesia en Cuba, 1959-1961\\\"\"],\"abstracts\":[\"El presente artículo aborda la relaciones mantenidas entre la Iglesia católica y el gobierno de La Habana desde el triunfo de la Revolución hasta 1961, fecha de la salida de numerosos sacerdotes y religiosas de la isla. Se reconstruye y analiza un corto período de tiempo que marcaría un punto de inflexión en dichas relaciones, iniciando una nueva etapa dentro del largo proceso revolucionario cubano.\"],\"language\":\"esl/spa\",\"subjects\":[\"Iglesia Católica\",\"Revolución cubana, 1959\",\"Catholic Church\",\"Cuban Revolution, 1959\"],\"creators\":[\"Álvarez Cuartero, Izaskun\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"Universidad de Salamanca. Instituto de Estudios de Iberoamérica y Portugal (España)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/21650\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10366/72380\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/72380\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/72380\",\"id\":\"oai:gredos.usal.es:10366/72380\"},\"trust\":0.05472517}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/21650"},"target_publication_author_list":{"type":"LIST_STRING","value":["Álvarez Cuartero, Izaskun"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:gredos.usal.es:10366/72380"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Iglesia Católica","Revolución cubana, 1959","Catholic Church","Cuban Revolution, 1959"]},"trust":{"type":"FLOAT","value":0.05472517},"target_publication_title":{"type":"STRING","value":"\"Y yo pasé, sereno entre los viles: estado, revolución e iglesia en Cuba, 1959-1961\""},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/21650\",\"titles\":[\"\\\"Y yo pasé, sereno entre los viles: estado, revolución e iglesia en Cuba, 1959-1961\\\"\"],\"abstracts\":[\"El presente artículo aborda la relaciones mantenidas entre la Iglesia católica y el gobierno de La Habana desde el triunfo de la Revolución hasta 1961, fecha de la salida de numerosos sacerdotes y religiosas de la isla. Se reconstruye y analiza un corto período de tiempo que marcaría un punto de inflexión en dichas relaciones, iniciando una nueva etapa dentro del largo proceso revolucionario cubano.\"],\"language\":\"esl/spa\",\"subjects\":[\"Iglesia Católica\",\"Revolución cubana, 1959\",\"Catholic Church\",\"Cuban Revolution, 1959\"],\"creators\":[\"Álvarez Cuartero, Izaskun\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"Universidad de Salamanca. Instituto de Estudios de Iberoamérica y Portugal (España)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/21650\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10366/72380\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/72380\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/72380\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/72380\"},\"trust\":0.17113721}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/21650"},"target_publication_author_list":{"type":"LIST_STRING","value":["Álvarez Cuartero, Izaskun"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/72380"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Iglesia Católica","Revolución cubana, 1959","Catholic Church","Cuban Revolution, 1959"]},"trust":{"type":"FLOAT","value":0.17113721},"target_publication_title":{"type":"STRING","value":"\"Y yo pasé, sereno entre los viles: estado, revolución e iglesia en Cuba, 1959-1961\""},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/21650\",\"titles\":[\"\\\"Y yo pasé, sereno entre los viles: estado, revolución e iglesia en Cuba, 1959-1961\\\"\"],\"abstracts\":[\"El presente artículo aborda la relaciones mantenidas entre la Iglesia católica y el gobierno de La Habana desde el triunfo de la Revolución hasta 1961, fecha de la salida de numerosos sacerdotes y religiosas de la isla. Se reconstruye y analiza un corto período de tiempo que marcaría un punto de inflexión en dichas relaciones, iniciando una nueva etapa dentro del largo proceso revolucionario cubano.\"],\"language\":\"esl/spa\",\"subjects\":[\"Iglesia Católica\",\"Revolución cubana, 1959\",\"Catholic Church\",\"Cuban Revolution, 1959\"],\"creators\":[\"Álvarez Cuartero, Izaskun\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"Universidad de Salamanca. Instituto de Estudios de Iberoamérica y Portugal (España)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/21650\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"},{\"url\":\"http://revistas.usal.es/index.php/1130-2887/article/view/2211\",\"license\":\"OPEN\",\"hostedby\":\"América Latina Hoy\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://revistas.usal.es/index.php/1130-2887/article/view/2211\",\"license\":\"OPEN\",\"hostedby\":\"América Latina Hoy\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://revistas.usal.es/index.php/1130-2887/article/view/2211\",\"id\":\"oai:doaj.org/article:5ddca98ecdb14503a1e66afa43c89452\"},\"trust\":0.73638064}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/21650"},"target_publication_author_list":{"type":"LIST_STRING","value":["Álvarez Cuartero, Izaskun"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:5ddca98ecdb14503a1e66afa43c89452"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Iglesia Católica","Revolución cubana, 1959","Catholic Church","Cuban Revolution, 1959"]},"trust":{"type":"FLOAT","value":0.73638064},"target_publication_title":{"type":"STRING","value":"\"Y yo pasé, sereno entre los viles: estado, revolución e iglesia en Cuba, 1959-1961\""},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00896529v1\",\"titles\":[\"UTILISATION DIGESTIVE DE L\\u0027AMIDON DU MAÏS CHEZ LE RUMINANT\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.BA] Life Sciences/Animal biology\",\"[SDV.BBM.BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules\",\"[SDV.BBM.BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics\"],\"creators\":[\"Thivend, P.\",\"Journet, M.\"],\"publicationdate\":\"1970-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00896529\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00896529\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00896529\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00896529\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00896529\"},\"trust\":0.064793885}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00896529v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Thivend, P.","Journet, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00896529"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.BA] Life Sciences/Animal biology","[SDV.BBM.BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules","[SDV.BBM.BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics"]},"trust":{"type":"FLOAT","value":0.064793885},"target_publication_title":{"type":"STRING","value":"UTILISATION DIGESTIVE DE L\u0027AMIDON DU MAÏS CHEZ LE RUMINANT"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1970-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00896529\",\"titles\":[\"UTILISATION DIGESTIVE DE L\\u0027AMIDON DU MAÏS CHEZ LE RUMINANT\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:BA] Life Sciences/Animal biology\",\"[SDV:BA] Sciences du Vivant/Biologie animale\",\"[SDV:BBM:BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules\",\"[SDV:BBM:BC] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biochimie\",\"[SDV:BBM:BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics\",\"[SDV:BBM:BP] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biophysique\"],\"creators\":[\"Thivend, P.\",\"Journet, M.\"],\"publicationdate\":\"1970-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00896529\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00896529\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00896529\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00896529\",\"id\":\"oai:HAL:hal-00896529v1\"},\"trust\":0.31758803}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00896529"},"target_publication_author_list":{"type":"LIST_STRING","value":["Thivend, P.","Journet, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00896529v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BA] Life Sciences/Animal biology","[SDV:BA] Sciences du Vivant/Biologie animale","[SDV:BBM:BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules","[SDV:BBM:BC] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biochimie","[SDV:BBM:BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics","[SDV:BBM:BP] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biophysique"]},"trust":{"type":"FLOAT","value":0.31758803},"target_publication_title":{"type":"STRING","value":"UTILISATION DIGESTIVE DE L\u0027AMIDON DU MAÏS CHEZ LE RUMINANT"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1970-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00896529\",\"titles\":[\"UTILISATION DIGESTIVE DE L\\u0027AMIDON DU MAÏS CHEZ LE RUMINANT\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:BA] Life Sciences/Animal biology\",\"[SDV:BA] Sciences du Vivant/Biologie animale\",\"[SDV:BBM:BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules\",\"[SDV:BBM:BC] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biochimie\",\"[SDV:BBM:BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics\",\"[SDV:BBM:BP] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biophysique\"],\"creators\":[\"Thivend, P.\",\"Journet, M.\"],\"publicationdate\":\"1970-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00896529\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"International audience\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00896529\",\"id\":\"oai:HAL:hal-00896529v1\"},\"trust\":0.23137343}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00896529"},"target_publication_author_list":{"type":"LIST_STRING","value":["Thivend, P.","Journet, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00896529v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BA] Life Sciences/Animal biology","[SDV:BA] Sciences du Vivant/Biologie animale","[SDV:BBM:BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules","[SDV:BBM:BC] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biochimie","[SDV:BBM:BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics","[SDV:BBM:BP] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biophysique"]},"trust":{"type":"FLOAT","value":0.23137343},"target_publication_title":{"type":"STRING","value":"UTILISATION DIGESTIVE DE L\u0027AMIDON DU MAÏS CHEZ LE RUMINANT"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1970-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00684625\",\"titles\":[\"Persistency of wellposedness of Ventcel\\u0027s boundary value problem under shape deformations\"],\"abstracts\":[\"Ventcel boundary conditions are second order di erential conditions that appear in asymptotic models. Like Robin boundary conditions, they lead to well-posed variational problems under a sign condition of the coe cient. This is achieved when physical situations are considered. Nevertheless, situations where this condition is violated appeared in several recent works where absorbing boundary conditions or equivalent boundary conditions on rough surface are sought for numerical purposes. The well-posedness of such problems was recently investigated : up to a countable set of parameters, existence and uniqueness of the solution for the Ventcel boundary value problem holds without the sign condition. However, the values to be avoided depend on the domain where the boundary value problem is set. In this work, we address the question of the persistency of the solvability of the boundary value problem under domain deformation.\"],\"language\":\"eng\",\"subjects\":[\"[MATH:MATH_AP] Mathematics/Analysis of PDEs\",\"[MATH:MATH_AP] Mathématiques/Equations aux dérivées partielles\"],\"creators\":[\"Dambrine, Marc\",\"Kateb, Djalil\"],\"publicationdate\":\"2012-04-02\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00684625\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00684625\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00684625\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00684625\",\"id\":\"oai:HAL:hal-00684625v1\"},\"trust\":0.6143341}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00684625"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dambrine, Marc","Kateb, Djalil"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00684625v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH:MATH_AP] Mathematics/Analysis of PDEs","[MATH:MATH_AP] Mathématiques/Equations aux dérivées partielles"]},"trust":{"type":"FLOAT","value":0.6143341},"target_publication_title":{"type":"STRING","value":"Persistency of wellposedness of Ventcel\u0027s boundary value problem under shape deformations"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-04-02"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00684625v1\",\"titles\":[\"Persistency of wellposedness of Ventcel\\u0027s boundary value problem under shape deformations\"],\"abstracts\":[\"Ventcel boundary conditions are second order di erential conditions that appear in asymptotic models. Like Robin boundary conditions, they lead to well-posed variational problems under a sign condition of the coe cient. This is achieved when physical situations are considered. Nevertheless, situations where this condition is violated appeared in several recent works where absorbing boundary conditions or equivalent boundary conditions on rough surface are sought for numerical purposes. The well-posedness of such problems was recently investigated : up to a countable set of parameters, existence and uniqueness of the solution for the Ventcel boundary value problem holds without the sign condition. However, the values to be avoided depend on the domain where the boundary value problem is set. In this work, we address the question of the persistency of the solvability of the boundary value problem under domain deformation.\"],\"language\":\"eng\",\"subjects\":[\"[MATH.MATH-AP] Mathematics/Analysis of PDEs\"],\"creators\":[\"Dambrine, Marc\",\"Kateb, Djalil\"],\"publicationdate\":\"2012-04-02\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire de Mathématiques et de leurs Applications [Pau] (LMAP) ; Université de Pau et des Pays de l\\u0027Adour [UPPA] - CNRS\",\"Laboratoire de Mathématiques Appliquées de Compiègne - EA2222 (LMAC) ; Université de Technologie de Compiègne\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00684625\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00684625\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00684625\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00684625\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00684625\"},\"trust\":0.14192116}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00684625v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dambrine, Marc","Kateb, Djalil"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00684625"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH.MATH-AP] Mathematics/Analysis of PDEs"]},"trust":{"type":"FLOAT","value":0.14192116},"target_publication_title":{"type":"STRING","value":"Persistency of wellposedness of Ventcel\u0027s boundary value problem under shape deformations"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-04-02"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:eprints.soas.ac.uk:13567\",\"titles\":[\"From Corporate Playground to Family Resort: Golf as Commodity in Postwar Japan\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Department of History\"],\"creators\":[\"Lockyer, Angus\"],\"publicationdate\":\"2011-12-01\",\"publisher\":\"Palgrave Macmillan\",\"embargoenddate\":\"\",\"contributor\":[\"Francks, Penelope\",\"Hunter, Janet\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"SOAS Research Online\"],\"pids\":[],\"instances\":[{\"url\":\"http://eprints.soas.ac.uk/13567/\",\"license\":\"OPEN\",\"hostedby\":\"SOAS Research Online\",\"instancetype\":\"Unknown\"},{\"url\":\"http://eprints.soas.ac.uk/13567/1/Lockyer%2C_Golf_as_commodity%2C_pre-publication_draft.pdf\",\"license\":\"OPEN\",\"hostedby\":\"SOAS Research Online\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.soas.ac.uk/13567/1/Lockyer%2C_Golf_as_commodity%2C_pre-publication_draft.pdf\",\"license\":\"OPEN\",\"hostedby\":\"SOAS Research Online\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.soas.ac.uk/13567/1/Lockyer%2C_Golf_as_commodity%2C_pre-publication_draft.pdf\",\"id\":\"oai:eprints.soas.ac.uk:13567\"},\"trust\":0.59847933}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"SOAS Research Online"},"target_publication_id":{"type":"STRING","value":"oai:eprints.soas.ac.uk:13567"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lockyer, Angus"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.soas.ac.uk:13567"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Department of History"]},"trust":{"type":"FLOAT","value":0.59847933},"target_publication_title":{"type":"STRING","value":"From Corporate Playground to Family Resort: Golf as Commodity in Postwar Japan"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2011-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0e01938fc48a2cfb5f2217fbfb00722d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00082673v1\",\"titles\":[\"Mechanical alloying of Cu and Fe induced by severe plastic deformation of a Cu-Fe composite.\"],\"abstracts\":[\"20 pages\",\"A filamentary composite elaborated by cold drawing was processed by High Pressure Torsion (HPT). The nanostructure resulting from this severe plastic deformation (SPD) was investigated thanks to scanning electron microscopy, transmission electron microscopy, X-ray diffraction and 3D atom probe. Although the mutual solubility of Cu and Fe is extremely low at room temperature in equilibrium conditions, it is shown that nanoscaled Fe clusters dissolve in the Cu matrix. The non-equilibrium copper supersaturated solid solutions contain up to 20at.% Fe. The driving force of the dissolution is attributed to capillary pressures and mechanisms which could enhanced the atomic mobility during HPT are discussed. We conclude that the interdiffusion is the result of a dramatic increase of the vacancy concentration during SPD.\"],\"language\":\"eng\",\"subjects\":[\"Severe plastic deformation\",\"nanocrystalline microstructure\",\"atom-probe field ion microscopy\",\"vacancies\",\"bulk diffusion\",\"[PHYS.COND.CM-MS] Physics/Condensed Matter/Materials Science\"],\"creators\":[\"Sauvage, Xavier\",\"Wetscher, Florian\",\"Pareige, Philippe\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[\"Groupe de physique des matériaux (GPM) ; CNRS - Université de Rouen - Institut National des Sciences Appliquées [INSA] - Rouen\",\"Erich Schmid Institute of Material Sciences, CD-Laboratory for Local Analysis of Deformation and Fracture (ERICH SCHMID) ; Austrian Academy of Sciences\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00082673\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/cond-mat/0606723\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/cond-mat/0606723\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/cond-mat/0606723\",\"id\":\"oai:arXiv.org:cond-mat/0606723\"},\"trust\":0.027739167}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00082673v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sauvage, Xavier","Wetscher, Florian","Pareige, Philippe"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:cond-mat/0606723"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Severe plastic deformation","nanocrystalline microstructure","atom-probe field ion microscopy","vacancies","bulk diffusion","[PHYS.COND.CM-MS] Physics/Condensed Matter/Materials Science"]},"trust":{"type":"FLOAT","value":0.027739167},"target_publication_title":{"type":"STRING","value":"Mechanical alloying of Cu and Fe induced by severe plastic deformation of a Cu-Fe composite."},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00082673v1\",\"titles\":[\"Mechanical alloying of Cu and Fe induced by severe plastic deformation of a Cu-Fe composite.\"],\"abstracts\":[\"20 pages\",\"A filamentary composite elaborated by cold drawing was processed by High Pressure Torsion (HPT). The nanostructure resulting from this severe plastic deformation (SPD) was investigated thanks to scanning electron microscopy, transmission electron microscopy, X-ray diffraction and 3D atom probe. Although the mutual solubility of Cu and Fe is extremely low at room temperature in equilibrium conditions, it is shown that nanoscaled Fe clusters dissolve in the Cu matrix. The non-equilibrium copper supersaturated solid solutions contain up to 20at.% Fe. The driving force of the dissolution is attributed to capillary pressures and mechanisms which could enhanced the atomic mobility during HPT are discussed. We conclude that the interdiffusion is the result of a dramatic increase of the vacancy concentration during SPD.\"],\"language\":\"eng\",\"subjects\":[\"Severe plastic deformation\",\"nanocrystalline microstructure\",\"atom-probe field ion microscopy\",\"vacancies\",\"bulk diffusion\",\"[PHYS.COND.CM-MS] Physics/Condensed Matter/Materials Science\"],\"creators\":[\"Sauvage, Xavier\",\"Wetscher, Florian\",\"Pareige, Philippe\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[\"Groupe de physique des matériaux (GPM) ; CNRS - Université de Rouen - Institut National des Sciences Appliquées [INSA] - Rouen\",\"Erich Schmid Institute of Material Sciences, CD-Laboratory for Local Analysis of Deformation and Fracture (ERICH SCHMID) ; Austrian Academy of Sciences\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00082673\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00082673\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00082673\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00082673\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00082673\"},\"trust\":0.47187507}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00082673v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sauvage, Xavier","Wetscher, Florian","Pareige, Philippe"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00082673"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Severe plastic deformation","nanocrystalline microstructure","atom-probe field ion microscopy","vacancies","bulk diffusion","[PHYS.COND.CM-MS] Physics/Condensed Matter/Materials Science"]},"trust":{"type":"FLOAT","value":0.47187507},"target_publication_title":{"type":"STRING","value":"Mechanical alloying of Cu and Fe induced by severe plastic deformation of a Cu-Fe composite."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:cond-mat/0606723\",\"titles\":[\"Mechanical alloying of Cu and Fe induced by severe plastic deformation of a Cu-Fe composite\"],\"abstracts\":[\" A filamentary composite elaborated by cold drawing was processed by High\\nPressure Torsion (HPT). The nanostructure resulting from this severe plastic\\ndeformation (SPD) was investigated thanks to scanning electron microscopy,\\ntransmission electron microscopy, X-ray diffraction and 3D atom probe. Although\\nthe mutual solubility of Cu and Fe is extremely low at room temperature in\\nequilibrium conditions, it is shown that nanoscaled Fe clusters dissolve in the\\nCu matrix. The non-equilibrium copper supersaturated solid solutions contain up\\nto 20at.% Fe. The driving force of the dissolution is attributed to capillary\\npressures and mechanisms which could enhanced the atomic mobility during HPT\\nare discussed. We conclude that the interdiffusion is the result of a dramatic\\nincrease of the vacancy concentration during SPD.\\n\",\"Comment: 20 pages\"],\"language\":\"eng\",\"subjects\":[\"Condensed Matter - Materials Science\"],\"creators\":[\"Sauvage, Xavier\",\"Wetscher, Florian\",\"Pareige, Philippe\"],\"publicationdate\":\"2006-06-28\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/cond-mat/0606723\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00082673\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00082673\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00082673\",\"id\":\"oai:HAL:hal-00082673v1\"},\"trust\":0.29356915}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:cond-mat/0606723"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sauvage, Xavier","Wetscher, Florian","Pareige, Philippe"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00082673v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Condensed Matter - Materials Science"]},"trust":{"type":"FLOAT","value":0.29356915},"target_publication_title":{"type":"STRING","value":"Mechanical alloying of Cu and Fe induced by severe plastic deformation of a Cu-Fe composite"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2006-06-28"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:cond-mat/0606723\",\"titles\":[\"Mechanical alloying of Cu and Fe induced by severe plastic deformation of a Cu-Fe composite\"],\"abstracts\":[\" A filamentary composite elaborated by cold drawing was processed by High\\nPressure Torsion (HPT). The nanostructure resulting from this severe plastic\\ndeformation (SPD) was investigated thanks to scanning electron microscopy,\\ntransmission electron microscopy, X-ray diffraction and 3D atom probe. Although\\nthe mutual solubility of Cu and Fe is extremely low at room temperature in\\nequilibrium conditions, it is shown that nanoscaled Fe clusters dissolve in the\\nCu matrix. The non-equilibrium copper supersaturated solid solutions contain up\\nto 20at.% Fe. The driving force of the dissolution is attributed to capillary\\npressures and mechanisms which could enhanced the atomic mobility during HPT\\nare discussed. We conclude that the interdiffusion is the result of a dramatic\\nincrease of the vacancy concentration during SPD.\\n\",\"Comment: 20 pages\"],\"language\":\"eng\",\"subjects\":[\"Condensed Matter - Materials Science\"],\"creators\":[\"Sauvage, Xavier\",\"Wetscher, Florian\",\"Pareige, Philippe\"],\"publicationdate\":\"2006-06-28\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/cond-mat/0606723\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00082673\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00082673\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00082673\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00082673\"},\"trust\":0.9644616}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:cond-mat/0606723"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sauvage, Xavier","Wetscher, Florian","Pareige, Philippe"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00082673"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Condensed Matter - Materials Science"]},"trust":{"type":"FLOAT","value":0.9644616},"target_publication_title":{"type":"STRING","value":"Mechanical alloying of Cu and Fe induced by severe plastic deformation of a Cu-Fe composite"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2006-06-28"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00082673\",\"titles\":[\"Mechanical alloying of Cu and Fe induced by severe plastic deformation of a Cu-Fe composite.\"],\"abstracts\":[\"A filamentary composite elaborated by cold drawing was processed by High Pressure Torsion (HPT). The nanostructure resulting from this severe plastic deformation (SPD) was investigated thanks to scanning electron microscopy, transmission electron microscopy, X-ray diffraction and 3D atom probe. Although the mutual solubility of Cu and Fe is extremely low at room temperature in equilibrium conditions, it is shown that nanoscaled Fe clusters dissolve in the Cu matrix. The non-equilibrium copper supersaturated solid solutions contain up to 20at.% Fe. The driving force of the dissolution is attributed to capillary pressures and mechanisms which could enhanced the atomic mobility during HPT are discussed. We conclude that the interdiffusion is the result of a dramatic increase of the vacancy concentration during SPD.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:COND:CM_MS] Physics/Condensed Matter/Materials Science\",\"[PHYS:COND:CM_MS] Physique/Matière Condensée/Science des matériaux\",\"Severe plastic deformation\",\"nanocrystalline microstructure\",\"atom-probe field ion microscopy\",\"vacancies\",\"bulk diffusion\"],\"creators\":[\"Sauvage, Xavier\",\"Wetscher, Florian\",\"Pareige, Philippe\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00082673\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00082673\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00082673\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00082673\",\"id\":\"oai:HAL:hal-00082673v1\"},\"trust\":0.38908416}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00082673"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sauvage, Xavier","Wetscher, Florian","Pareige, Philippe"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00082673v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:COND:CM_MS] Physics/Condensed Matter/Materials Science","[PHYS:COND:CM_MS] Physique/Matière Condensée/Science des matériaux","Severe plastic deformation","nanocrystalline microstructure","atom-probe field ion microscopy","vacancies","bulk diffusion"]},"trust":{"type":"FLOAT","value":0.38908416},"target_publication_title":{"type":"STRING","value":"Mechanical alloying of Cu and Fe induced by severe plastic deformation of a Cu-Fe composite."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00082673\",\"titles\":[\"Mechanical alloying of Cu and Fe induced by severe plastic deformation of a Cu-Fe composite.\"],\"abstracts\":[\"A filamentary composite elaborated by cold drawing was processed by High Pressure Torsion (HPT). The nanostructure resulting from this severe plastic deformation (SPD) was investigated thanks to scanning electron microscopy, transmission electron microscopy, X-ray diffraction and 3D atom probe. Although the mutual solubility of Cu and Fe is extremely low at room temperature in equilibrium conditions, it is shown that nanoscaled Fe clusters dissolve in the Cu matrix. The non-equilibrium copper supersaturated solid solutions contain up to 20at.% Fe. The driving force of the dissolution is attributed to capillary pressures and mechanisms which could enhanced the atomic mobility during HPT are discussed. We conclude that the interdiffusion is the result of a dramatic increase of the vacancy concentration during SPD.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:COND:CM_MS] Physics/Condensed Matter/Materials Science\",\"[PHYS:COND:CM_MS] Physique/Matière Condensée/Science des matériaux\",\"Severe plastic deformation\",\"nanocrystalline microstructure\",\"atom-probe field ion microscopy\",\"vacancies\",\"bulk diffusion\"],\"creators\":[\"Sauvage, Xavier\",\"Wetscher, Florian\",\"Pareige, Philippe\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00082673\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/cond-mat/0606723\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/cond-mat/0606723\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/cond-mat/0606723\",\"id\":\"oai:arXiv.org:cond-mat/0606723\"},\"trust\":0.8106871}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00082673"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sauvage, Xavier","Wetscher, Florian","Pareige, Philippe"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:cond-mat/0606723"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:COND:CM_MS] Physics/Condensed Matter/Materials Science","[PHYS:COND:CM_MS] Physique/Matière Condensée/Science des matériaux","Severe plastic deformation","nanocrystalline microstructure","atom-probe field ion microscopy","vacancies","bulk diffusion"]},"trust":{"type":"FLOAT","value":0.8106871},"target_publication_title":{"type":"STRING","value":"Mechanical alloying of Cu and Fe induced by severe plastic deformation of a Cu-Fe composite."},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"\",\"titles\":[\"Omdømme i kriminalomsorgen – hvilket omdømme? :en kvalitativ studie av interne og eksterne effekter av kriminalomsorgens kommunikasjonsstrategi\"],\"abstracts\":[\"Omdømme har blitt et sentralt begrep også for offentlige organisasjoner, og de fleste virksomheter har i dag et mer bevisst forhold til begrepet og til hvordan man fremstår blant befolkningen enn tidligere. Ikke minst er dette viktig for offentlige organisasjoner som har sitt oppdrag i nettopp å tjene folket. Kriminalomsorgen har en viktig samfunnsoppgave i å bidra til å trygge samfunnet, men tidligere undersøkelser i regi at etaten selv viser at det er liten kjennskap til kriminalomsorgens virksomhet. I denne oppgaven har jeg sett på iverksettingen av kriminalomsorgens kommunikasjonsstrategi (2006‐2007). Formålet var å se på om forhold ved deler av iverksettingsprosessen har innvirkning på den effekten strategien eventuelt har hatt. Problemstillingen for oppgaven er: “Har kriminalomsorgen nådd målene i kommunikasjonsstrategien?” I den grad det er mulig å måle effekt med et kvalitativt forskningsdesign, har spørsmålet om effekt av strategien vært avhengig variabel for undersøkelsen. Effekt av strategien er forsøkt målt i forhold til begrepene omdømme, tillit og legitimitet, som alle er sentrale når det kommer til det å oppnå det Kriminalomsorgens sentrale forvaltning (KSF) kalte sine “kommunikasjonsmål”. På bakgrunn av en oppfatning om at kriminalomsorgen også sju år etter iverksettingen av strategien er en “lukket” og lite kjent etat, var antakelsen at målene for strategien ikke har blitt nådd, dessuten at forhold ved etatens struktur, ledelse og organisasjonskultur kan forklare noe av dette utfallet. Ved bruk av Van Meter og Van Horns modell for iverksetting har jeg funnet indikasjoner på at det er hold i antakelsene om at forhold ved kriminalomsorgens struktur, ledelse og organisasjonskultur har virket hemmende på graden av effekt av kommunikasjonsstrategien. Intervjuer av sju personer med lang erfaring fra kriminalomsorgen på både arbeidsgiver‐ og arbeidstakersiden, dokumentanalyse og en kvantitativ spørreundersøkelse blant fengselsaspiranter har gitt meg data til å konkludere med at det overordnede kommunikasjonsmålet for kriminalomsorgen kan synes ikke å ha blitt nådd så langt.\",\"Reputation has become a central concept also for public organizations , and most businesses currently have a more clear understanding of the concept and how to stand among the population than previous. This is particularly important for public organizations whose mission is just to serve the people . Correctional Services has an important social role in helping to secure the community, but previous studies in directing the agency shows that there is little knowledge of correctional operations . In this paper I have seen the implementation of the Correctional Services communications strategy (2006‐2007 ). The purpose was to examine whether conditions in parts of the implementation process affects the impact strategy may have had. The problem of the thesis is: \\u0026quot;Has the objectives of the Correctional Services communication strategy been achieved?\\u0026quot; To the extent it is possible to measure the effect of a qualitative research design, the question of efficacy of the strategy was the dependent variable for the study. Performance of the strategy has been attempted in relation to the concepts of reputation, trust and legitimacy, all of which are key when it comes to achieving the \\u0026quot;communication goals”. Based on the belief that correctional also seven years after the implementation of the strategy is a \\u0026quot;closed\\u0026quot; and little‐known agency , the assumption that the objectives of the strategy has not been reached, moreover, that the conditions of the agency\\u0027s structure , leadership and organizational culture may explain some of this outcome . Using the Van Meter and Van Horn model for implementation I have found indications that it is hold in assumptions about the conditions at correctional structure, leadership and organizational culture has hindered the degree of effectiveness of the Communication Strategy. Interviews, document analysis and a quantitative survey have given me data to conclude that the overall communication goal for correctional seem not to have been reached so far.\",\"Master i styring og ledelse\"],\"language\":\"nor\",\"subjects\":[\"Social science:Sociology:\",\"Samfunnsvitenskap:Sosiologi:\",\"Social science:Political science and organizational theory:\",\"Samfunnsvitenskap:Statsvitenskap og organisasjonsteori:\",\"Kriminalomsorgen\",\"Kommuniksjon\",\"Omdømme\",\"Organisasjonsutvikling\",\"Organisasjonskultur\",\"Ledelse\"],\"creators\":[\"Wærum, Erlend\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"Høgskolen i Oslo og Akershus. Fakultet for samfunnsfag\",\"embargoenddate\":\"\",\"contributor\":[\"Stigen, Inger Marie\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Norwegian Open Research Archives\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10642/1987\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.nb.no/idtjeneste/URN:NBN:no-bibsys_brage_47123\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.nb.no/idtjeneste/URN:NBN:no-bibsys_brage_47123\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Norwegian Open Research Archives\",\"url\":\"http://www.nb.no/idtjeneste/URN:NBN:no-bibsys_brage_47123\",\"id\":\"\"},\"trust\":0.23607731}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_publication_id":{"type":"STRING","value":""},"target_publication_author_list":{"type":"LIST_STRING","value":["Wærum, Erlend"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Social science:Sociology:","Samfunnsvitenskap:Sosiologi:","Social science:Political science and organizational theory:","Samfunnsvitenskap:Statsvitenskap og organisasjonsteori:","Kriminalomsorgen","Kommuniksjon","Omdømme","Organisasjonsutvikling","Organisasjonskultur","Ledelse"]},"trust":{"type":"FLOAT","value":0.23607731},"target_publication_title":{"type":"STRING","value":"Omdømme i kriminalomsorgen – hvilket omdømme? :en kvalitativ studie av interne og eksterne effekter av kriminalomsorgens kommunikasjonsstrategi"},"provenance_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"\",\"titles\":[\"Omdømme i kriminalomsorgen – hvilket omdømme?:En kvalitativ studie av interne og eksterne effekter av kriminalomsorgens kommunikasjonsstrategi\"],\"abstracts\":[\"Omdømme har blitt et sentralt begrep også for offentlige organisasjoner, og de fleste virksomheter har i dag et mer bevisst forhold til begrepet og til hvordan man fremstår blant befolkningen enn tidligere. Ikke minst er dette viktig for offentlige organisasjoner som har sitt oppdrag i nettopp å tjene folket. Kriminalomsorgen har en viktig samfunnsoppgave i å bidra til å trygge samfunnet, men tidligere undersøkelser i regi at etaten selv viser at det er liten kjennskap til kriminalomsorgens virksomhet. I denne oppgaven har jeg sett på iverksettingen av kriminalomsorgens kommunikasjonsstrategi (2006-2007). Formålet var å se på om forhold ved deler av iverksettingsprosessen har innvirkning på den effekten strategien eventuelt har hatt. Problemstillingen for oppgaven er: “Har kriminalomsorgen nådd målene i kommunikasjonsstrategien?” I den grad det er mulig å måle effekt med et kvalitativt forskningsdesign, har spørsmålet om effekt av strategien vært avhengig variabel for undersøkelsen. Effekt av strategien er forsøkt målt i forhold til begrepene omdømme, tillit og legitimitet, som alle er sentrale når det kommer til det å oppnå det Kriminalomsorgens sentrale forvaltning (KSF) kalte sine “kommunikasjonsmål”. På bakgrunn av en oppfatning om at kriminalomsorgen også sju år etter iverksettingen av strategien er en “lukket” og lite kjent etat, var antakelsen at målene for strategien ikke har blitt nådd, dessuten at forhold ved etatens struktur, ledelse og organisasjonskultur kan forklare noe av dette utfallet. Ved bruk av Van Meter og Van Horns modell for iverksetting har jeg funnet indikasjoner på at det er hold i antakelsene om at forhold ved kriminalomsorgens struktur, ledelse og organisasjonskultur har virket hemmende på graden av effekt av kommunikasjons-strategien. Intervjuer av sju personer med lang erfaring fra kriminalomsorgen på både arbeidsgiver- og arbeidstakersiden, dokumentanalyse og en kvantitativ spørreundersøkelse blant fengselsaspiranter har gitt meg data til å konkludere med at det overordnede kommunikasjonsmålet for kriminalomsorgen kan synes ikke å ha blitt nådd så langt.\",\"Reputation has become a central concept also for public organizations , and most businesses currently have a more clear understanding of the concept and how to stand among the population than previous. This is particularly important for public organizations whose mission is just to serve the people . Correctional Services has an important social role in helping to secure the community, but previous studies in directing the agency shows that there is little knowledge of correctional operations . In this paper I have seen the implementation of the Correctional Services communications strategy (2006-2007 ). The purpose was to examine whether conditions in parts of the implementation process affects the impact strategy may have had. The problem of the thesis is: \\u0026quot;Has the objectives of the Correctional Services communication strategy been achieved?\\u0026quot; To the extent it is possible to measure the effect of a qualitative research design, the question of efficacy of the strategy was the dependent variable for the study. Performance of the strategy has been attempted in relation to the concepts of reputation, trust and legitimacy, all of which are key when it comes to achieving the \\u0026quot;communication goals”. Based on the belief that correctional also seven years after the implementation of the strategy is a \\u0026quot;closed\\u0026quot; and little-known agency , the assumption that the objectives of the strategy has not been reached, moreover, that the conditions of the agency\\u0027s structure , leadership and organizational culture may explain some of this outcome . Using the Van Meter and Van Horn model for implementation I have found indications that it is hold in assumptions about the conditions at correctional structure, leadership and organizational culture has hindered the degree of effectiveness of the Communication Strategy. Interviews, document analysis and a quantitative survey have given me data to conclude that the overall communication goal for correctional seem not to have been reached so far.\"],\"language\":\"nor\",\"subjects\":[\"Omdømme\",\"Reputation\"],\"creators\":[\"Wærum, Erlend\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"Høgskolen i Oslo og Aksershus\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Norwegian Open Research Archives\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nb.no/idtjeneste/URN:NBN:no-bibsys_brage_47123\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hdl.handle.net/10642/1987\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10642/1987\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Norwegian Open Research Archives\",\"url\":\"http://hdl.handle.net/10642/1987\",\"id\":\"\"},\"trust\":0.40680975}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_publication_id":{"type":"STRING","value":""},"target_publication_author_list":{"type":"LIST_STRING","value":["Wærum, Erlend"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Omdømme","Reputation"]},"trust":{"type":"FLOAT","value":0.40680975},"target_publication_title":{"type":"STRING","value":"Omdømme i kriminalomsorgen – hvilket omdømme?:En kvalitativ studie av interne og eksterne effekter av kriminalomsorgens kommunikasjonsstrategi"},"provenance_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/59904\",\"titles\":[\"Metropolitan Governance: Institutionelle Strategien, Dilemmas und Variationsmöglichkeiten für die Steuerung von Metropolregionen\"],\"abstracts\":[],\"language\":\"deu/ger\",\"subjects\":[\"ddc:330\"],\"creators\":[\"Knieling, Jörg\",\"Blatter, Joachim K.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"Verlag der ARL - Akademie für Raumforschung und Landesplanung Hannover\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/59904\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"http://econstor.eu/bitstream/10419/59904/1/718292308.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/59904/1/718292308.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econstor.eu/bitstream/10419/59904/1/718292308.pdf\",\"id\":\"oai:RePEc:zbw:arlfsa:59904\"},\"trust\":0.2480908}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/59904"},"target_publication_author_list":{"type":"LIST_STRING","value":["Knieling, Jörg","Blatter, Joachim K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:zbw:arlfsa:59904"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330"]},"trust":{"type":"FLOAT","value":0.2480908},"target_publication_title":{"type":"STRING","value":"Metropolitan Governance: Institutionelle Strategien, Dilemmas und Variationsmöglichkeiten für die Steuerung von Metropolregionen"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:zbw:arlfsa:59904\",\"titles\":[\"Metropolitan Governance: Institutionelle Strategien, Dilemmas und Variationsmöglichkeiten für die Steuerung von Metropolregionen\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Knieling, Jörg\",\"Blatter, Joachim K.\"],\"publicationdate\":\"\",\"publisher\":\"Verlag der ARL - Akademie für Raumforschung und Landesplanung — Hannover\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/59904/1/718292308.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"},{\"url\":\"http://hdl.handle.net/10419/59904\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/59904\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/59904\",\"id\":\"oai:econstor.eu:10419/59904\"},\"trust\":0.6369222}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:zbw:arlfsa:59904"},"target_publication_author_list":{"type":"LIST_STRING","value":["Knieling, Jörg","Blatter, Joachim K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/59904"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"trust":{"type":"FLOAT","value":0.6369222},"target_publication_title":{"type":"STRING","value":"Metropolitan Governance: Institutionelle Strategien, Dilemmas und Variationsmöglichkeiten für die Steuerung von Metropolregionen"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:zbw:arlfsa:59904\",\"titles\":[\"Metropolitan Governance: Institutionelle Strategien, Dilemmas und Variationsmöglichkeiten für die Steuerung von Metropolregionen\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Knieling, Jörg\",\"Blatter, Joachim K.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"Verlag der ARL - Akademie für Raumforschung und Landesplanung — Hannover\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/59904/1/718292308.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"2009-01-01\"},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/59904\",\"id\":\"oai:econstor.eu:10419/59904\"},\"trust\":0.42796838}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:zbw:arlfsa:59904"},"target_publication_author_list":{"type":"LIST_STRING","value":["Knieling, Jörg","Blatter, Joachim K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/59904"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"trust":{"type":"FLOAT","value":0.42796838},"target_publication_title":{"type":"STRING","value":"Metropolitan Governance: Institutionelle Strategien, Dilemmas und Variationsmöglichkeiten für die Steuerung von Metropolregionen"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:23118\",\"titles\":[\"Institutions and Economic Performance: Cross-Country Tests Using Alternative Institutional Indicators\"],\"abstracts\":[\"This paper compares more direct measures of the institutional environment with both the instability proxies used by Barro (1991) and the Gastil indices, by comparing their effects both on growth and private investment. The results provide substantial support for the position that the institutional roots of growth and convergence are significant. The marked improvement that these new variables represent over existing proxies also suggests that there are substantial returns to future research into variables that reflect the security of property rights and the efficiency with which states determine economic policies and allocate public goods.\"],\"language\":\"eng\",\"subjects\":[\"O11 - Macroeconomic Analyses of Economic Development\",\"O17 - Formal and Informal Sectors ; Shadow Economy ; Institutional Arrangements\",\"O43 - Institutions and Growth\"],\"creators\":[\"Knack, Stephen\",\"Keefer, Philip\"],\"publicationdate\":\"1995-11-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/23118/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/23118/1/MPRA_paper_23118.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/23118/1/MPRA_paper_23118.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/23118/1/MPRA_paper_23118.pdf\",\"id\":\"oai:RePEc:pra:mprapa:23118\"},\"trust\":0.2678659}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:23118"},"target_publication_author_list":{"type":"LIST_STRING","value":["Knack, Stephen","Keefer, Philip"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:23118"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["O11 - Macroeconomic Analyses of Economic Development","O17 - Formal and Informal Sectors ; Shadow Economy ; Institutional Arrangements","O43 - Institutions and Growth"]},"trust":{"type":"FLOAT","value":0.2678659},"target_publication_title":{"type":"STRING","value":"Institutions and Economic Performance: Cross-Country Tests Using Alternative Institutional Indicators"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1995-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:23118\",\"titles\":[\"Institutions and Economic Performance: Cross-Country Tests Using Alternative Institutional Indicators\"],\"abstracts\":[\"This paper compares more direct measures of the institutional environment with both the instability proxies used by Barro (1991) and the Gastil indices, by comparing their effects both on growth and private investment. The results provide substantial support for the position that the institutional roots of growth and convergence are significant. The marked improvement that these new variables represent over existing proxies also suggests that there are substantial returns to future research into variables that reflect the security of property rights and the efficiency with which states determine economic policies and allocate public goods.\"],\"language\":\"und\",\"subjects\":[\"governance, institutions, growth, property rights\"],\"creators\":[\"Knack, Stephen\",\"Keefer, Philip\"],\"publicationdate\":\"1995-11-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/23118/1/MPRA_paper_23118.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/23118/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/23118/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/23118/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:23118\"},\"trust\":0.4569605}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:23118"},"target_publication_author_list":{"type":"LIST_STRING","value":["Knack, Stephen","Keefer, Philip"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:23118"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["governance, institutions, growth, property rights"]},"trust":{"type":"FLOAT","value":0.4569605},"target_publication_title":{"type":"STRING","value":"Institutions and Economic Performance: Cross-Country Tests Using Alternative Institutional Indicators"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"1995-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00250827v1\",\"titles\":[\"COLLISIONAL RELAXATION OF XeF MOLECULES AND XeF LASER SPECTRA\"],\"abstracts\":[\"The spectra of the short pumping electric discharge XeF laser are determined by the collisional relaxation in a B-state of the XeF molecule, the multi-quantum relaxations being substantial. The composition of the lasing spectrum may be essentially changed by the buffer gas pressure. The lasing from high rotational levels is sensitive to the concentration of xenon.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Zubrilin, N.\",\"Korenyuk, P.\",\"Chernomorets, M.\"],\"publicationdate\":\"1991-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jp4:19917152\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00250827\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00250827\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00250827\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00250827\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00250827\"},\"trust\":0.33853734}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00250827v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zubrilin, N.","Korenyuk, P.","Chernomorets, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00250827"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.33853734},"target_publication_title":{"type":"STRING","value":"COLLISIONAL RELAXATION OF XeF MOLECULES AND XeF LASER SPECTRA"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1991-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00250827\",\"titles\":[\"COLLISIONAL RELAXATION OF XeF MOLECULES AND XeF LASER SPECTRA\"],\"abstracts\":[\"The spectra of the short pumping electric discharge XeF laser are determined by the collisional relaxation in a B-state of the XeF molecule, the multi-quantum relaxations being substantial. The composition of the lasing spectrum may be essentially changed by the buffer gas pressure. The lasing from high rotational levels is sensitive to the concentration of xenon.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\"],\"creators\":[\"Zubrilin, N.\",\"Korenyuk, P.\",\"Chernomorets, M.\"],\"publicationdate\":\"1991-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jp4:19917152\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00250827\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00250827\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00250827\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00250827\",\"id\":\"oai:HAL:jpa-00250827v1\"},\"trust\":0.08084488}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00250827"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zubrilin, N.","Korenyuk, P.","Chernomorets, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00250827v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens"]},"trust":{"type":"FLOAT","value":0.08084488},"target_publication_title":{"type":"STRING","value":"COLLISIONAL RELAXATION OF XeF MOLECULES AND XeF LASER SPECTRA"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1991-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:prs:reveco:reco_0035-2764_1964_num_15_1_407595_t1_0148_0000_002\",\"titles\":[\"Meyer (F.V.) - The terms of trade.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Denis Henri\"],\"publicationdate\":\"1964-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Revue économique\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.persee.fr/web/revues/home/prescript/article/reco_0035-2764_1964_num_15_1_407595_t1_0148_0000_002\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.persee.fr/web/revues/home/prescript/article/reco_0035-2764_1965_num_16_4_407673_t1_0672_0000_001\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.persee.fr/web/revues/home/prescript/article/reco_0035-2764_1965_num_16_4_407673_t1_0672_0000_001\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.persee.fr/web/revues/home/prescript/article/reco_0035-2764_1965_num_16_4_407673_t1_0672_0000_001\",\"id\":\"oai:RePEc:prs:reveco:reco_0035-2764_1965_num_16_4_407673_t1_0672_0000_001\"},\"trust\":0.30750567}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:prs:reveco:reco_0035-2764_1964_num_15_1_407595_t1_0148_0000_002"},"target_publication_author_list":{"type":"LIST_STRING","value":["Denis Henri"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:prs:reveco:reco_0035-2764_1965_num_16_4_407673_t1_0672_0000_001"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.30750567},"target_publication_title":{"type":"STRING","value":"Meyer (F.V.) - The terms of trade."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1964-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:prs:reveco:reco_0035-2764_1965_num_16_4_407673_t1_0672_0000_001\",\"titles\":[\"Meyer (F.V.) - The terms of trade.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Saint Marc Michèle\"],\"publicationdate\":\"1965-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Revue économique\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.persee.fr/web/revues/home/prescript/article/reco_0035-2764_1965_num_16_4_407673_t1_0672_0000_001\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.persee.fr/web/revues/home/prescript/article/reco_0035-2764_1964_num_15_1_407595_t1_0148_0000_002\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.persee.fr/web/revues/home/prescript/article/reco_0035-2764_1964_num_15_1_407595_t1_0148_0000_002\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.persee.fr/web/revues/home/prescript/article/reco_0035-2764_1964_num_15_1_407595_t1_0148_0000_002\",\"id\":\"oai:RePEc:prs:reveco:reco_0035-2764_1964_num_15_1_407595_t1_0148_0000_002\"},\"trust\":0.7740324}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:prs:reveco:reco_0035-2764_1965_num_16_4_407673_t1_0672_0000_001"},"target_publication_author_list":{"type":"LIST_STRING","value":["Saint Marc Michèle"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:prs:reveco:reco_0035-2764_1964_num_15_1_407595_t1_0148_0000_002"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.7740324},"target_publication_title":{"type":"STRING","value":"Meyer (F.V.) - The terms of trade."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1965-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3312925\",\"titles\":[\"Mapping Splicing Quantitative Trait Loci in RNA-Seq\"],\"abstracts\":[\"BACKGROUND One of the major mechanisms of generating mRNA diversity is alternative splicing, a regulated process that allows for the flexibility of producing functionally different proteins from the same genomic sequences. This process is often altered in cancer cells to produce aberrant proteins that drive the progression of cancer. A better understanding of the misregulation of alternative splicing will shed light on the development of novel targets for pharmacological interventions of cancer. METHODS In this study, we evaluated three statistical methods, random effects meta-regression, beta regression, and generalized linear mixed effects model, for the analysis of splicing quantitative trait loci (sQTL) using RNA-Seq data. All the three methods use exon-inclusion levels estimated by the PennSeq algorithm, a statistical method that utilizes paired-end reads and accounts for non-uniform sequencing coverage. RESULTS Using both simulated and real RNA-Seq datasets, we compared these three methods with GLiMMPS, a recently developed method for sQTL analysis. Our results indicate that the most reliable and powerful method was the random effects meta-regression approach, which identified sQTLs at low false discovery rates but higher power when compared to GLiMMPS. CONCLUSIONS We have evaluated three statistical methods for the analysis of sQTLs in RNA-Seq. Results from our study will be instructive for researchers in selecting the appropriate statistical methods for sQTL analysis.\"],\"language\":\"eng\",\"subjects\":[\"Original Research\",\"alternative splicing\",\"quantitative trait loci\",\"RNA-Seq\"],\"creators\":[\"Jia, Cheng\",\"Hu, Yu\",\"Liu, Yichuan\",\"Li, Mingyao\"],\"publicationdate\":\"2015-02-01\",\"publisher\":\"Libertas Academica\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Cancer Informatics\",\"issn\":\"\",\"eissn\":\"1176-9351\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4137/CIN.S24832\",\"type\":\"doi\"},{\"value\":\"PMC4333812\",\"type\":\"pmc\"},{\"value\":\"25733796\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4333812\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.la-press.com/mapping-splicing-quantitative-trait-loci-in-rna-seq-article-a4669\",\"license\":\"OPEN\",\"hostedby\":\"Cancer Informatics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.la-press.com/mapping-splicing-quantitative-trait-loci-in-rna-seq-article-a4669\",\"license\":\"OPEN\",\"hostedby\":\"Cancer Informatics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.la-press.com/mapping-splicing-quantitative-trait-loci-in-rna-seq-article-a4669\",\"id\":\"oai:doaj.org/article:a34a16e25be04b88b47f6d6a89937b3f\"},\"trust\":0.7511749}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3312925"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jia, Cheng","Hu, Yu","Liu, Yichuan","Li, Mingyao"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:a34a16e25be04b88b47f6d6a89937b3f"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Research","alternative splicing","quantitative trait loci","RNA-Seq"]},"trust":{"type":"FLOAT","value":0.7511749},"target_publication_title":{"type":"STRING","value":"Mapping Splicing Quantitative Trait Loci in RNA-Seq"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2015-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3312925\",\"titles\":[\"Mapping Splicing Quantitative Trait Loci in RNA-Seq\"],\"abstracts\":[\"BACKGROUND One of the major mechanisms of generating mRNA diversity is alternative splicing, a regulated process that allows for the flexibility of producing functionally different proteins from the same genomic sequences. This process is often altered in cancer cells to produce aberrant proteins that drive the progression of cancer. A better understanding of the misregulation of alternative splicing will shed light on the development of novel targets for pharmacological interventions of cancer. METHODS In this study, we evaluated three statistical methods, random effects meta-regression, beta regression, and generalized linear mixed effects model, for the analysis of splicing quantitative trait loci (sQTL) using RNA-Seq data. All the three methods use exon-inclusion levels estimated by the PennSeq algorithm, a statistical method that utilizes paired-end reads and accounts for non-uniform sequencing coverage. RESULTS Using both simulated and real RNA-Seq datasets, we compared these three methods with GLiMMPS, a recently developed method for sQTL analysis. Our results indicate that the most reliable and powerful method was the random effects meta-regression approach, which identified sQTLs at low false discovery rates but higher power when compared to GLiMMPS. CONCLUSIONS We have evaluated three statistical methods for the analysis of sQTLs in RNA-Seq. Results from our study will be instructive for researchers in selecting the appropriate statistical methods for sQTL analysis.\"],\"language\":\"eng\",\"subjects\":[\"Original Research\",\"alternative splicing\",\"quantitative trait loci\",\"RNA-Seq\"],\"creators\":[\"Jia, Cheng\",\"Hu, Yu\",\"Liu, Yichuan\",\"Li, Mingyao\"],\"publicationdate\":\"2015-02-01\",\"publisher\":\"Libertas Academica\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Cancer Informatics\",\"issn\":\"\",\"eissn\":\"1176-9351\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4137/CIN.S24832\",\"type\":\"doi\"},{\"value\":\"PMC4333812\",\"type\":\"pmc\"},{\"value\":\"25733796\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4333812\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.la-press.com/mapping-splicing-quantitative-trait-loci-in-rna-seq-article-a4446\",\"license\":\"OPEN\",\"hostedby\":\"Cancer Informatics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.la-press.com/mapping-splicing-quantitative-trait-loci-in-rna-seq-article-a4446\",\"license\":\"OPEN\",\"hostedby\":\"Cancer Informatics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.la-press.com/mapping-splicing-quantitative-trait-loci-in-rna-seq-article-a4446\",\"id\":\"oai:doaj.org/article:90c65107845f413d9c1125e57ecc04ea\"},\"trust\":0.32714266}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3312925"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jia, Cheng","Hu, Yu","Liu, Yichuan","Li, Mingyao"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:90c65107845f413d9c1125e57ecc04ea"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Research","alternative splicing","quantitative trait loci","RNA-Seq"]},"trust":{"type":"FLOAT","value":0.32714266},"target_publication_title":{"type":"STRING","value":"Mapping Splicing Quantitative Trait Loci in RNA-Seq"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2015-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3312925\",\"titles\":[\"Mapping Splicing Quantitative Trait Loci in RNA-Seq\"],\"abstracts\":[\"BACKGROUND One of the major mechanisms of generating mRNA diversity is alternative splicing, a regulated process that allows for the flexibility of producing functionally different proteins from the same genomic sequences. This process is often altered in cancer cells to produce aberrant proteins that drive the progression of cancer. A better understanding of the misregulation of alternative splicing will shed light on the development of novel targets for pharmacological interventions of cancer. METHODS In this study, we evaluated three statistical methods, random effects meta-regression, beta regression, and generalized linear mixed effects model, for the analysis of splicing quantitative trait loci (sQTL) using RNA-Seq data. All the three methods use exon-inclusion levels estimated by the PennSeq algorithm, a statistical method that utilizes paired-end reads and accounts for non-uniform sequencing coverage. RESULTS Using both simulated and real RNA-Seq datasets, we compared these three methods with GLiMMPS, a recently developed method for sQTL analysis. Our results indicate that the most reliable and powerful method was the random effects meta-regression approach, which identified sQTLs at low false discovery rates but higher power when compared to GLiMMPS. CONCLUSIONS We have evaluated three statistical methods for the analysis of sQTLs in RNA-Seq. Results from our study will be instructive for researchers in selecting the appropriate statistical methods for sQTL analysis.\"],\"language\":\"eng\",\"subjects\":[\"Original Research\",\"alternative splicing\",\"quantitative trait loci\",\"RNA-Seq\"],\"creators\":[\"Jia, Cheng\",\"Hu, Yu\",\"Liu, Yichuan\",\"Li, Mingyao\"],\"publicationdate\":\"2015-02-01\",\"publisher\":\"Libertas Academica\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Cancer Informatics\",\"issn\":\"\",\"eissn\":\"1176-9351\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4137/CIN.S24832\",\"type\":\"doi\"},{\"value\":\"PMC4333812\",\"type\":\"pmc\"},{\"value\":\"25733796\",\"type\":\"pmid\"},{\"value\":\"10.4137/CIN.S13971\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4333812\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.4137/CIN.S13971\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4218654\",\"id\":\"oai:europepmc.org:3220406\"},\"trust\":0.3234403}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3312925"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jia, Cheng","Hu, Yu","Liu, Yichuan","Li, Mingyao"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3220406"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Research","alternative splicing","quantitative trait loci","RNA-Seq"]},"trust":{"type":"FLOAT","value":0.3234403},"target_publication_title":{"type":"STRING","value":"Mapping Splicing Quantitative Trait Loci in RNA-Seq"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2015-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3312925\",\"titles\":[\"Mapping Splicing Quantitative Trait Loci in RNA-Seq\"],\"abstracts\":[\"BACKGROUND One of the major mechanisms of generating mRNA diversity is alternative splicing, a regulated process that allows for the flexibility of producing functionally different proteins from the same genomic sequences. This process is often altered in cancer cells to produce aberrant proteins that drive the progression of cancer. A better understanding of the misregulation of alternative splicing will shed light on the development of novel targets for pharmacological interventions of cancer. METHODS In this study, we evaluated three statistical methods, random effects meta-regression, beta regression, and generalized linear mixed effects model, for the analysis of splicing quantitative trait loci (sQTL) using RNA-Seq data. All the three methods use exon-inclusion levels estimated by the PennSeq algorithm, a statistical method that utilizes paired-end reads and accounts for non-uniform sequencing coverage. RESULTS Using both simulated and real RNA-Seq datasets, we compared these three methods with GLiMMPS, a recently developed method for sQTL analysis. Our results indicate that the most reliable and powerful method was the random effects meta-regression approach, which identified sQTLs at low false discovery rates but higher power when compared to GLiMMPS. CONCLUSIONS We have evaluated three statistical methods for the analysis of sQTLs in RNA-Seq. Results from our study will be instructive for researchers in selecting the appropriate statistical methods for sQTL analysis.\"],\"language\":\"eng\",\"subjects\":[\"Original Research\",\"alternative splicing\",\"quantitative trait loci\",\"RNA-Seq\"],\"creators\":[\"Jia, Cheng\",\"Hu, Yu\",\"Liu, Yichuan\",\"Li, Mingyao\"],\"publicationdate\":\"2015-02-01\",\"publisher\":\"Libertas Academica\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Cancer Informatics\",\"issn\":\"\",\"eissn\":\"1176-9351\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4137/CIN.S24832\",\"type\":\"doi\"},{\"value\":\"PMC4333812\",\"type\":\"pmc\"},{\"value\":\"25733796\",\"type\":\"pmid\"},{\"value\":\"PMC4218654\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4333812\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC4218654\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4218654\",\"id\":\"oai:europepmc.org:3220406\"},\"trust\":0.3234403}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3312925"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jia, Cheng","Hu, Yu","Liu, Yichuan","Li, Mingyao"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3220406"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Research","alternative splicing","quantitative trait loci","RNA-Seq"]},"trust":{"type":"FLOAT","value":0.3234403},"target_publication_title":{"type":"STRING","value":"Mapping Splicing Quantitative Trait Loci in RNA-Seq"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2015-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3312925\",\"titles\":[\"Mapping Splicing Quantitative Trait Loci in RNA-Seq\"],\"abstracts\":[\"BACKGROUND One of the major mechanisms of generating mRNA diversity is alternative splicing, a regulated process that allows for the flexibility of producing functionally different proteins from the same genomic sequences. This process is often altered in cancer cells to produce aberrant proteins that drive the progression of cancer. A better understanding of the misregulation of alternative splicing will shed light on the development of novel targets for pharmacological interventions of cancer. METHODS In this study, we evaluated three statistical methods, random effects meta-regression, beta regression, and generalized linear mixed effects model, for the analysis of splicing quantitative trait loci (sQTL) using RNA-Seq data. All the three methods use exon-inclusion levels estimated by the PennSeq algorithm, a statistical method that utilizes paired-end reads and accounts for non-uniform sequencing coverage. RESULTS Using both simulated and real RNA-Seq datasets, we compared these three methods with GLiMMPS, a recently developed method for sQTL analysis. Our results indicate that the most reliable and powerful method was the random effects meta-regression approach, which identified sQTLs at low false discovery rates but higher power when compared to GLiMMPS. CONCLUSIONS We have evaluated three statistical methods for the analysis of sQTLs in RNA-Seq. Results from our study will be instructive for researchers in selecting the appropriate statistical methods for sQTL analysis.\"],\"language\":\"eng\",\"subjects\":[\"Original Research\",\"alternative splicing\",\"quantitative trait loci\",\"RNA-Seq\"],\"creators\":[\"Jia, Cheng\",\"Hu, Yu\",\"Liu, Yichuan\",\"Li, Mingyao\"],\"publicationdate\":\"2015-02-01\",\"publisher\":\"Libertas Academica\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Cancer Informatics\",\"issn\":\"\",\"eissn\":\"1176-9351\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4137/CIN.S24832\",\"type\":\"doi\"},{\"value\":\"PMC4333812\",\"type\":\"pmc\"},{\"value\":\"25733796\",\"type\":\"pmid\"},{\"value\":\"25452687\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4333812\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"25452687\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4218654\",\"id\":\"oai:europepmc.org:3220406\"},\"trust\":0.3234403}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3312925"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jia, Cheng","Hu, Yu","Liu, Yichuan","Li, Mingyao"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3220406"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Research","alternative splicing","quantitative trait loci","RNA-Seq"]},"trust":{"type":"FLOAT","value":0.3234403},"target_publication_title":{"type":"STRING","value":"Mapping Splicing Quantitative Trait Loci in RNA-Seq"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2015-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3220406\",\"titles\":[\"Mapping Splicing Quantitative Trait Loci in RNA-Seq\"],\"abstracts\":[\"BACKGROUND One of the major mechanisms of generating mRNA diversity is alternative splicing, a regulated process that allows for the flexibility of producing functionally different proteins from the same genomic sequences. This process is often altered in cancer cells to produce aberrant proteins that drive the progression of cancer. A better understanding of the misregulation of alternative splicing will shed light on the development of novel targets for pharmacological interventions of cancer. METHODS In this study, we evaluated three statistical methods, random effects meta-regression, beta regression, and generalized linear mixed effects model, for the analysis of splicing quantitative trait loci (sQTL) using RNA-Seq data. All the three methods use exon-inclusion levels estimated by the PennSeq algorithm, a statistical method that utilizes paired-end reads and accounts for non-uniform sequencing coverage. RESULTS Using both simulated and real RNA-Seq datasets, we compared these three methods with GLiMMPS, a recently developed method for sQTL analysis. Our results indicate that the most reliable and powerful method was the random effects meta-regression approach, which identified sQTLs at low false discovery rates but higher power when compared to GLiMMPS. CONCLUSIONS We have evaluated three statistical methods for the analysis of sQTLs in RNA-Seq. Results from our study will be instructive for researchers in selecting the appropriate statistical methods for sQTL analysis.\"],\"language\":\"eng\",\"subjects\":[\"Original Research\",\"alternative splicing\",\"quantitative trait loci\",\"RNA-Seq\"],\"creators\":[\"Jia, Cheng\",\"Hu, Yu\",\"Liu, Yichuan\",\"Li, Mingyao\"],\"publicationdate\":\"2014-10-01\",\"publisher\":\"Libertas Academica\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Cancer Informatics\",\"issn\":\"\",\"eissn\":\"1176-9351\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4137/CIN.S13971\",\"type\":\"doi\"},{\"value\":\"PMC4218654\",\"type\":\"pmc\"},{\"value\":\"25452687\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4218654\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.la-press.com/mapping-splicing-quantitative-trait-loci-in-rna-seq-article-a4669\",\"license\":\"OPEN\",\"hostedby\":\"Cancer Informatics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.la-press.com/mapping-splicing-quantitative-trait-loci-in-rna-seq-article-a4669\",\"license\":\"OPEN\",\"hostedby\":\"Cancer Informatics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.la-press.com/mapping-splicing-quantitative-trait-loci-in-rna-seq-article-a4669\",\"id\":\"oai:doaj.org/article:a34a16e25be04b88b47f6d6a89937b3f\"},\"trust\":0.25595284}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3220406"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jia, Cheng","Hu, Yu","Liu, Yichuan","Li, Mingyao"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:a34a16e25be04b88b47f6d6a89937b3f"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Research","alternative splicing","quantitative trait loci","RNA-Seq"]},"trust":{"type":"FLOAT","value":0.25595284},"target_publication_title":{"type":"STRING","value":"Mapping Splicing Quantitative Trait Loci in RNA-Seq"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3220406\",\"titles\":[\"Mapping Splicing Quantitative Trait Loci in RNA-Seq\"],\"abstracts\":[\"BACKGROUND One of the major mechanisms of generating mRNA diversity is alternative splicing, a regulated process that allows for the flexibility of producing functionally different proteins from the same genomic sequences. This process is often altered in cancer cells to produce aberrant proteins that drive the progression of cancer. A better understanding of the misregulation of alternative splicing will shed light on the development of novel targets for pharmacological interventions of cancer. METHODS In this study, we evaluated three statistical methods, random effects meta-regression, beta regression, and generalized linear mixed effects model, for the analysis of splicing quantitative trait loci (sQTL) using RNA-Seq data. All the three methods use exon-inclusion levels estimated by the PennSeq algorithm, a statistical method that utilizes paired-end reads and accounts for non-uniform sequencing coverage. RESULTS Using both simulated and real RNA-Seq datasets, we compared these three methods with GLiMMPS, a recently developed method for sQTL analysis. Our results indicate that the most reliable and powerful method was the random effects meta-regression approach, which identified sQTLs at low false discovery rates but higher power when compared to GLiMMPS. CONCLUSIONS We have evaluated three statistical methods for the analysis of sQTLs in RNA-Seq. Results from our study will be instructive for researchers in selecting the appropriate statistical methods for sQTL analysis.\"],\"language\":\"eng\",\"subjects\":[\"Original Research\",\"alternative splicing\",\"quantitative trait loci\",\"RNA-Seq\"],\"creators\":[\"Jia, Cheng\",\"Hu, Yu\",\"Liu, Yichuan\",\"Li, Mingyao\"],\"publicationdate\":\"2014-10-01\",\"publisher\":\"Libertas Academica\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Cancer Informatics\",\"issn\":\"\",\"eissn\":\"1176-9351\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4137/CIN.S13971\",\"type\":\"doi\"},{\"value\":\"PMC4218654\",\"type\":\"pmc\"},{\"value\":\"25452687\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4218654\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.la-press.com/mapping-splicing-quantitative-trait-loci-in-rna-seq-article-a4446\",\"license\":\"OPEN\",\"hostedby\":\"Cancer Informatics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.la-press.com/mapping-splicing-quantitative-trait-loci-in-rna-seq-article-a4446\",\"license\":\"OPEN\",\"hostedby\":\"Cancer Informatics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.la-press.com/mapping-splicing-quantitative-trait-loci-in-rna-seq-article-a4446\",\"id\":\"oai:doaj.org/article:90c65107845f413d9c1125e57ecc04ea\"},\"trust\":0.17908621}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3220406"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jia, Cheng","Hu, Yu","Liu, Yichuan","Li, Mingyao"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:90c65107845f413d9c1125e57ecc04ea"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Research","alternative splicing","quantitative trait loci","RNA-Seq"]},"trust":{"type":"FLOAT","value":0.17908621},"target_publication_title":{"type":"STRING","value":"Mapping Splicing Quantitative Trait Loci in RNA-Seq"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3220406\",\"titles\":[\"Mapping Splicing Quantitative Trait Loci in RNA-Seq\"],\"abstracts\":[\"BACKGROUND One of the major mechanisms of generating mRNA diversity is alternative splicing, a regulated process that allows for the flexibility of producing functionally different proteins from the same genomic sequences. This process is often altered in cancer cells to produce aberrant proteins that drive the progression of cancer. A better understanding of the misregulation of alternative splicing will shed light on the development of novel targets for pharmacological interventions of cancer. METHODS In this study, we evaluated three statistical methods, random effects meta-regression, beta regression, and generalized linear mixed effects model, for the analysis of splicing quantitative trait loci (sQTL) using RNA-Seq data. All the three methods use exon-inclusion levels estimated by the PennSeq algorithm, a statistical method that utilizes paired-end reads and accounts for non-uniform sequencing coverage. RESULTS Using both simulated and real RNA-Seq datasets, we compared these three methods with GLiMMPS, a recently developed method for sQTL analysis. Our results indicate that the most reliable and powerful method was the random effects meta-regression approach, which identified sQTLs at low false discovery rates but higher power when compared to GLiMMPS. CONCLUSIONS We have evaluated three statistical methods for the analysis of sQTLs in RNA-Seq. Results from our study will be instructive for researchers in selecting the appropriate statistical methods for sQTL analysis.\"],\"language\":\"eng\",\"subjects\":[\"Original Research\",\"alternative splicing\",\"quantitative trait loci\",\"RNA-Seq\"],\"creators\":[\"Jia, Cheng\",\"Hu, Yu\",\"Liu, Yichuan\",\"Li, Mingyao\"],\"publicationdate\":\"2014-10-01\",\"publisher\":\"Libertas Academica\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Cancer Informatics\",\"issn\":\"\",\"eissn\":\"1176-9351\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4137/CIN.S13971\",\"type\":\"doi\"},{\"value\":\"PMC4218654\",\"type\":\"pmc\"},{\"value\":\"25452687\",\"type\":\"pmid\"},{\"value\":\"10.4137/CIN.S24832\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4218654\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.4137/CIN.S24832\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4333812\",\"id\":\"oai:europepmc.org:3312925\"},\"trust\":0.372559}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3220406"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jia, Cheng","Hu, Yu","Liu, Yichuan","Li, Mingyao"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3312925"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Research","alternative splicing","quantitative trait loci","RNA-Seq"]},"trust":{"type":"FLOAT","value":0.372559},"target_publication_title":{"type":"STRING","value":"Mapping Splicing Quantitative Trait Loci in RNA-Seq"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3220406\",\"titles\":[\"Mapping Splicing Quantitative Trait Loci in RNA-Seq\"],\"abstracts\":[\"BACKGROUND One of the major mechanisms of generating mRNA diversity is alternative splicing, a regulated process that allows for the flexibility of producing functionally different proteins from the same genomic sequences. This process is often altered in cancer cells to produce aberrant proteins that drive the progression of cancer. A better understanding of the misregulation of alternative splicing will shed light on the development of novel targets for pharmacological interventions of cancer. METHODS In this study, we evaluated three statistical methods, random effects meta-regression, beta regression, and generalized linear mixed effects model, for the analysis of splicing quantitative trait loci (sQTL) using RNA-Seq data. All the three methods use exon-inclusion levels estimated by the PennSeq algorithm, a statistical method that utilizes paired-end reads and accounts for non-uniform sequencing coverage. RESULTS Using both simulated and real RNA-Seq datasets, we compared these three methods with GLiMMPS, a recently developed method for sQTL analysis. Our results indicate that the most reliable and powerful method was the random effects meta-regression approach, which identified sQTLs at low false discovery rates but higher power when compared to GLiMMPS. CONCLUSIONS We have evaluated three statistical methods for the analysis of sQTLs in RNA-Seq. Results from our study will be instructive for researchers in selecting the appropriate statistical methods for sQTL analysis.\"],\"language\":\"eng\",\"subjects\":[\"Original Research\",\"alternative splicing\",\"quantitative trait loci\",\"RNA-Seq\"],\"creators\":[\"Jia, Cheng\",\"Hu, Yu\",\"Liu, Yichuan\",\"Li, Mingyao\"],\"publicationdate\":\"2014-10-01\",\"publisher\":\"Libertas Academica\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Cancer Informatics\",\"issn\":\"\",\"eissn\":\"1176-9351\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4137/CIN.S13971\",\"type\":\"doi\"},{\"value\":\"PMC4218654\",\"type\":\"pmc\"},{\"value\":\"25452687\",\"type\":\"pmid\"},{\"value\":\"PMC4333812\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4218654\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC4333812\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4333812\",\"id\":\"oai:europepmc.org:3312925\"},\"trust\":0.372559}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3220406"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jia, Cheng","Hu, Yu","Liu, Yichuan","Li, Mingyao"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3312925"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Research","alternative splicing","quantitative trait loci","RNA-Seq"]},"trust":{"type":"FLOAT","value":0.372559},"target_publication_title":{"type":"STRING","value":"Mapping Splicing Quantitative Trait Loci in RNA-Seq"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3220406\",\"titles\":[\"Mapping Splicing Quantitative Trait Loci in RNA-Seq\"],\"abstracts\":[\"BACKGROUND One of the major mechanisms of generating mRNA diversity is alternative splicing, a regulated process that allows for the flexibility of producing functionally different proteins from the same genomic sequences. This process is often altered in cancer cells to produce aberrant proteins that drive the progression of cancer. A better understanding of the misregulation of alternative splicing will shed light on the development of novel targets for pharmacological interventions of cancer. METHODS In this study, we evaluated three statistical methods, random effects meta-regression, beta regression, and generalized linear mixed effects model, for the analysis of splicing quantitative trait loci (sQTL) using RNA-Seq data. All the three methods use exon-inclusion levels estimated by the PennSeq algorithm, a statistical method that utilizes paired-end reads and accounts for non-uniform sequencing coverage. RESULTS Using both simulated and real RNA-Seq datasets, we compared these three methods with GLiMMPS, a recently developed method for sQTL analysis. Our results indicate that the most reliable and powerful method was the random effects meta-regression approach, which identified sQTLs at low false discovery rates but higher power when compared to GLiMMPS. CONCLUSIONS We have evaluated three statistical methods for the analysis of sQTLs in RNA-Seq. Results from our study will be instructive for researchers in selecting the appropriate statistical methods for sQTL analysis.\"],\"language\":\"eng\",\"subjects\":[\"Original Research\",\"alternative splicing\",\"quantitative trait loci\",\"RNA-Seq\"],\"creators\":[\"Jia, Cheng\",\"Hu, Yu\",\"Liu, Yichuan\",\"Li, Mingyao\"],\"publicationdate\":\"2014-10-01\",\"publisher\":\"Libertas Academica\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Cancer Informatics\",\"issn\":\"\",\"eissn\":\"1176-9351\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4137/CIN.S13971\",\"type\":\"doi\"},{\"value\":\"PMC4218654\",\"type\":\"pmc\"},{\"value\":\"25452687\",\"type\":\"pmid\"},{\"value\":\"25733796\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4218654\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"25733796\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4333812\",\"id\":\"oai:europepmc.org:3312925\"},\"trust\":0.372559}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3220406"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jia, Cheng","Hu, Yu","Liu, Yichuan","Li, Mingyao"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3312925"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Research","alternative splicing","quantitative trait loci","RNA-Seq"]},"trust":{"type":"FLOAT","value":0.372559},"target_publication_title":{"type":"STRING","value":"Mapping Splicing Quantitative Trait Loci in RNA-Seq"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ner:tilbur:urn:nbn:nl:ui:12-171672\",\"titles\":[\"The global digital divide in the Internet: Developed countries constructs and third world realities.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"James, M. J.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://arno.uvt.nl/show.cgi?fid\\u003d69726\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://pure.uvt.nl/portal/files/690366/Global.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://pure.uvt.nl/portal/files/690366/Global.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://pure.uvt.nl/portal/files/690366/Global.pdf\",\"id\":\"oai:RePEc:tiu:tiutis:2892aa29-8966-409c-a3ff-382bea4ab754\"},\"trust\":0.96843755}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ner:tilbur:urn:nbn:nl:ui:12-171672"},"target_publication_author_list":{"type":"LIST_STRING","value":["James, M. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:tiu:tiutis:2892aa29-8966-409c-a3ff-382bea4ab754"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.96843755},"target_publication_title":{"type":"STRING","value":"The global digital divide in the Internet: Developed countries constructs and third world realities."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ner:tilbur:urn:nbn:nl:ui:12-171672\",\"titles\":[\"The global digital divide in the Internet: Developed countries constructs and third world realities.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"James, M. J.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://arno.uvt.nl/show.cgi?fid\\u003d69726\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://pure.uvt.nl/portal/en/publications/the-global-digital-divide-in-the-internet(2892aa29-8966-409c-a3ff-382bea4ab754).html\",\"license\":\"OPEN\",\"hostedby\":\"Tilburg University Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://pure.uvt.nl/portal/en/publications/the-global-digital-divide-in-the-internet(2892aa29-8966-409c-a3ff-382bea4ab754).html\",\"license\":\"OPEN\",\"hostedby\":\"Tilburg University Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"https://pure.uvt.nl/portal/en/publications/the-global-digital-divide-in-the-internet(2892aa29-8966-409c-a3ff-382bea4ab754).html\",\"id\":\"uvt:oai:tilburguniversity.edu:publications/2892aa29-8966-409c-a3ff-382bea4ab754\"},\"trust\":0.40967906}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ner:tilbur:urn:nbn:nl:ui:12-171672"},"target_publication_author_list":{"type":"LIST_STRING","value":["James, M. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uvt:oai:tilburguniversity.edu:publications/2892aa29-8966-409c-a3ff-382bea4ab754"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.40967906},"target_publication_title":{"type":"STRING","value":"The global digital divide in the Internet: Developed countries constructs and third world realities."},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ner:tilbur:urn:nbn:nl:ui:12-171672\",\"titles\":[\"The global digital divide in the Internet: Developed countries constructs and third world realities.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"James, M. J.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://arno.uvt.nl/show.cgi?fid\\u003d69726\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://repository.uvt.nl/id/ir-uvt-nl:oai:wo.uvt.nl:171672\",\"license\":\"OPEN\",\"hostedby\":\"Tilburg University Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.uvt.nl/id/ir-uvt-nl:oai:wo.uvt.nl:171672\",\"license\":\"OPEN\",\"hostedby\":\"Tilburg University Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Tilburg University Repository\",\"url\":\"http://repository.uvt.nl/id/ir-uvt-nl:oai:wo.uvt.nl:171672\",\"id\":\"oai:wo.uvt.nl:171672\"},\"trust\":0.73952085}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ner:tilbur:urn:nbn:nl:ui:12-171672"},"target_publication_author_list":{"type":"LIST_STRING","value":["James, M. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:wo.uvt.nl:171672"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::01f78be6f7cad02658508fe4616098a9"},"trust":{"type":"FLOAT","value":0.73952085},"target_publication_title":{"type":"STRING","value":"The global digital divide in the Internet: Developed countries constructs and third world realities."},"provenance_datasource_name":{"type":"STRING","value":"Tilburg University Repository"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:tiu:tiutis:2892aa29-8966-409c-a3ff-382bea4ab754\",\"titles\":[\"The global digital divide in the Internet : Developed countries constructs and third world realities\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"James, M. J.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://pure.uvt.nl/portal/files/690366/Global.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://arno.uvt.nl/show.cgi?fid\\u003d69726\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arno.uvt.nl/show.cgi?fid\\u003d69726\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://arno.uvt.nl/show.cgi?fid\\u003d69726\",\"id\":\"oai:RePEc:ner:tilbur:urn:nbn:nl:ui:12-171672\"},\"trust\":0.19379604}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:tiu:tiutis:2892aa29-8966-409c-a3ff-382bea4ab754"},"target_publication_author_list":{"type":"LIST_STRING","value":["James, M. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ner:tilbur:urn:nbn:nl:ui:12-171672"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.19379604},"target_publication_title":{"type":"STRING","value":"The global digital divide in the Internet : Developed countries constructs and third world realities"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:tiu:tiutis:2892aa29-8966-409c-a3ff-382bea4ab754\",\"titles\":[\"The global digital divide in the Internet : Developed countries constructs and third world realities\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"James, M. J.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://pure.uvt.nl/portal/files/690366/Global.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://pure.uvt.nl/portal/en/publications/the-global-digital-divide-in-the-internet(2892aa29-8966-409c-a3ff-382bea4ab754).html\",\"license\":\"OPEN\",\"hostedby\":\"Tilburg University Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://pure.uvt.nl/portal/en/publications/the-global-digital-divide-in-the-internet(2892aa29-8966-409c-a3ff-382bea4ab754).html\",\"license\":\"OPEN\",\"hostedby\":\"Tilburg University Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"https://pure.uvt.nl/portal/en/publications/the-global-digital-divide-in-the-internet(2892aa29-8966-409c-a3ff-382bea4ab754).html\",\"id\":\"uvt:oai:tilburguniversity.edu:publications/2892aa29-8966-409c-a3ff-382bea4ab754\"},\"trust\":0.94742775}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:tiu:tiutis:2892aa29-8966-409c-a3ff-382bea4ab754"},"target_publication_author_list":{"type":"LIST_STRING","value":["James, M. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uvt:oai:tilburguniversity.edu:publications/2892aa29-8966-409c-a3ff-382bea4ab754"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.94742775},"target_publication_title":{"type":"STRING","value":"The global digital divide in the Internet : Developed countries constructs and third world realities"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:tiu:tiutis:2892aa29-8966-409c-a3ff-382bea4ab754\",\"titles\":[\"The global digital divide in the Internet : Developed countries constructs and third world realities\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"James, M. J.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://pure.uvt.nl/portal/files/690366/Global.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://repository.uvt.nl/id/ir-uvt-nl:oai:wo.uvt.nl:171672\",\"license\":\"OPEN\",\"hostedby\":\"Tilburg University Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.uvt.nl/id/ir-uvt-nl:oai:wo.uvt.nl:171672\",\"license\":\"OPEN\",\"hostedby\":\"Tilburg University Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Tilburg University Repository\",\"url\":\"http://repository.uvt.nl/id/ir-uvt-nl:oai:wo.uvt.nl:171672\",\"id\":\"oai:wo.uvt.nl:171672\"},\"trust\":0.21879452}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:tiu:tiutis:2892aa29-8966-409c-a3ff-382bea4ab754"},"target_publication_author_list":{"type":"LIST_STRING","value":["James, M. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:wo.uvt.nl:171672"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::01f78be6f7cad02658508fe4616098a9"},"trust":{"type":"FLOAT","value":0.21879452},"target_publication_title":{"type":"STRING","value":"The global digital divide in the Internet : Developed countries constructs and third world realities"},"provenance_datasource_name":{"type":"STRING","value":"Tilburg University Repository"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:wo.uvt.nl:171672\",\"titles\":[\"The global digital divide in the Internet: Developed countries constructs and third world realities\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"James, M. J.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Tilburg University Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.uvt.nl/id/ir-uvt-nl:oai:wo.uvt.nl:171672\",\"license\":\"OPEN\",\"hostedby\":\"Tilburg University Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://arno.uvt.nl/show.cgi?fid\\u003d69726\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arno.uvt.nl/show.cgi?fid\\u003d69726\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://arno.uvt.nl/show.cgi?fid\\u003d69726\",\"id\":\"oai:RePEc:ner:tilbur:urn:nbn:nl:ui:12-171672\"},\"trust\":0.4229893}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Tilburg University Repository"},"target_publication_id":{"type":"STRING","value":"oai:wo.uvt.nl:171672"},"target_publication_author_list":{"type":"LIST_STRING","value":["James, M. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ner:tilbur:urn:nbn:nl:ui:12-171672"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.4229893},"target_publication_title":{"type":"STRING","value":"The global digital divide in the Internet: Developed countries constructs and third world realities"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::01f78be6f7cad02658508fe4616098a9"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:wo.uvt.nl:171672\",\"titles\":[\"The global digital divide in the Internet: Developed countries constructs and third world realities\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"James, M. J.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Tilburg University Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.uvt.nl/id/ir-uvt-nl:oai:wo.uvt.nl:171672\",\"license\":\"OPEN\",\"hostedby\":\"Tilburg University Repository\",\"instancetype\":\"Article\"},{\"url\":\"https://pure.uvt.nl/portal/files/690366/Global.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://pure.uvt.nl/portal/files/690366/Global.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://pure.uvt.nl/portal/files/690366/Global.pdf\",\"id\":\"oai:RePEc:tiu:tiutis:2892aa29-8966-409c-a3ff-382bea4ab754\"},\"trust\":0.27997172}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Tilburg University Repository"},"target_publication_id":{"type":"STRING","value":"oai:wo.uvt.nl:171672"},"target_publication_author_list":{"type":"LIST_STRING","value":["James, M. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:tiu:tiutis:2892aa29-8966-409c-a3ff-382bea4ab754"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.27997172},"target_publication_title":{"type":"STRING","value":"The global digital divide in the Internet: Developed countries constructs and third world realities"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::01f78be6f7cad02658508fe4616098a9"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:wo.uvt.nl:171672\",\"titles\":[\"The global digital divide in the Internet: Developed countries constructs and third world realities\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"James, M. J.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Tilburg University Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.uvt.nl/id/ir-uvt-nl:oai:wo.uvt.nl:171672\",\"license\":\"OPEN\",\"hostedby\":\"Tilburg University Repository\",\"instancetype\":\"Article\"},{\"url\":\"https://pure.uvt.nl/portal/en/publications/the-global-digital-divide-in-the-internet(2892aa29-8966-409c-a3ff-382bea4ab754).html\",\"license\":\"OPEN\",\"hostedby\":\"Tilburg University Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://pure.uvt.nl/portal/en/publications/the-global-digital-divide-in-the-internet(2892aa29-8966-409c-a3ff-382bea4ab754).html\",\"license\":\"OPEN\",\"hostedby\":\"Tilburg University Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"https://pure.uvt.nl/portal/en/publications/the-global-digital-divide-in-the-internet(2892aa29-8966-409c-a3ff-382bea4ab754).html\",\"id\":\"uvt:oai:tilburguniversity.edu:publications/2892aa29-8966-409c-a3ff-382bea4ab754\"},\"trust\":0.6230482}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Tilburg University Repository"},"target_publication_id":{"type":"STRING","value":"oai:wo.uvt.nl:171672"},"target_publication_author_list":{"type":"LIST_STRING","value":["James, M. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uvt:oai:tilburguniversity.edu:publications/2892aa29-8966-409c-a3ff-382bea4ab754"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.6230482},"target_publication_title":{"type":"STRING","value":"The global digital divide in the Internet: Developed countries constructs and third world realities"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::01f78be6f7cad02658508fe4616098a9"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:908411\",\"titles\":[\"Measuring Structural and Tecnological Change from Tecnically Autarkic Subsystems : a Study of Danish Industries 1966-2005\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Fredholm, Thomas\",\"Zambelli, Stefano\"],\"publicationdate\":\"2009-12-03\",\"publisher\":\"Department of Economic, Politics and Public Administration, Aalborg University\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[],\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/18814870/2009-4-Fredholm-endelig_1_.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Research\"},{\"url\":\"http://vbn.aau.dk/ws/files/18814870/2009-4-Fredholm-endelig_1_.pdf\",\"license\":\"OPEN\",\"hostedby\":\"VBN\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/18814870/2009-4-Fredholm-endelig_1_.pdf\",\"license\":\"OPEN\",\"hostedby\":\"VBN\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"VBN\",\"url\":\"http://vbn.aau.dk/ws/files/18814870/2009-4-Fredholm-endelig_1_.pdf\",\"id\":\"oai:oai.forksningsdatabasen.dk:908411\"},\"trust\":0.9967629}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:908411"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fredholm, Thomas","Zambelli, Stefano"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:908411"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8e2cfdc275761edc592f73a076197c33"},"trust":{"type":"FLOAT","value":0.9967629},"target_publication_title":{"type":"STRING","value":"Measuring Structural and Tecnological Change from Tecnically Autarkic Subsystems : a Study of Danish Industries 1966-2005"},"provenance_datasource_name":{"type":"STRING","value":"VBN"},"target_dateofacceptance":{"type":"DATE","value":"2009-12-03"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:908411\",\"titles\":[\"Measuring Structural and Tecnological Change from Tecnically Autarkic Subsystems : a Study of Danish Industries 1966-2005\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Fredholm, Thomas\",\"Zambelli, Stefano\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"Department of Economic, Politics and Public Administration, Aalborg University\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"VBN\"],\"pids\":[],\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/18814870/2009-4-Fredholm-endelig_1_.pdf\",\"license\":\"OPEN\",\"hostedby\":\"VBN\",\"instancetype\":\"Research\"},{\"url\":\"http://vbn.aau.dk/ws/files/18814870/2009-4-Fredholm-endelig_1_.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/18814870/2009-4-Fredholm-endelig_1_.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://vbn.aau.dk/ws/files/18814870/2009-4-Fredholm-endelig_1_.pdf\",\"id\":\"oai:oai.forksningsdatabasen.dk:908411\"},\"trust\":0.47039622}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"VBN"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:908411"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fredholm, Thomas","Zambelli, Stefano"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:908411"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"trust":{"type":"FLOAT","value":0.47039622},"target_publication_title":{"type":"STRING","value":"Measuring Structural and Tecnological Change from Tecnically Autarkic Subsystems : a Study of Danish Industries 1966-2005"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8e2cfdc275761edc592f73a076197c33"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"\",\"titles\":[\"A correction of a common error in truncated second order nonlinear filters\"],\"abstracts\":[\"A rederivation of the truncated second-order non-linear filter reveals that a significant error appears in previous derivations of this filter. What has previously been termed the modified truncated second-order filter will be shown to be, provided a small correction is made in the discrete-time case, the correct form of the truncated second-order filter.\"],\"language\":\"eng\",\"subjects\":[\"Estimation, non-linear filtering,\"],\"creators\":[\"Henriksen, Rolf\"],\"publicationdate\":\"1980-01-01\",\"publisher\":\"Norwegian Society of Automatic Control\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Norwegian Open Research Archives\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.mic-journal.no/ABS/MIC-1980-3-3.asp\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Article\"},{\"url\":\"http://www.mic-journal.no/PDF/1980/MIC-1980-3-3.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Modeling, Identification and Control\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.mic-journal.no/PDF/1980/MIC-1980-3-3.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Modeling, Identification and Control\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.mic-journal.no/PDF/1980/MIC-1980-3-3.pdf\",\"id\":\"oai:doaj.org/article:10681b6378b44c639e92eafd66c96969\"},\"trust\":0.49123937}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_publication_id":{"type":"STRING","value":""},"target_publication_author_list":{"type":"LIST_STRING","value":["Henriksen, Rolf"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:10681b6378b44c639e92eafd66c96969"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Estimation, non-linear filtering,"]},"trust":{"type":"FLOAT","value":0.49123937},"target_publication_title":{"type":"STRING","value":"A correction of a common error in truncated second order nonlinear filters"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"1980-01-01"},"target_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1312.0533\",\"titles\":[\"Convergence of Ising interfaces to Schramm\\u0027s SLE curves\"],\"abstracts\":[\" We show how to combine our earlier results to deduce strong convergence of\\nthe interfaces in the planar critical Ising model and its random-cluster\\nrepresentation to Schramm\\u0027s SLE curves with parameter $\\\\kappa\\u003d3$ and\\n$\\\\kappa\\u003d16/3$ respectively.\\n\",\"Comment: 7 pages\"],\"language\":\"eng\",\"subjects\":[\"Mathematical Physics\",\"Mathematics - Complex Variables\",\"Mathematics - Probability\"],\"creators\":[\"Chelkak, Dmitry\",\"Duminil-Copin, Hugo\",\"Hongler, Clément\",\"Kemppainen, Antti\",\"Smirnov, Stanislav\"],\"publicationdate\":\"2013-12-02\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/1312.0533\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://infoscience.epfl.ch/record/200329\",\"license\":\"OPEN\",\"hostedby\":\"Infoscience - École polytechnique fédérale de Lausanne\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://infoscience.epfl.ch/record/200329\",\"license\":\"OPEN\",\"hostedby\":\"Infoscience - École polytechnique fédérale de Lausanne\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Infoscience - École polytechnique fédérale de Lausanne\",\"url\":\"http://infoscience.epfl.ch/record/200329\",\"id\":\"oai:infoscience.epfl.ch:200329\"},\"trust\":0.9561375}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1312.0533"},"target_publication_author_list":{"type":"LIST_STRING","value":["Chelkak, Dmitry","Duminil-Copin, Hugo","Hongler, Clément","Kemppainen, Antti","Smirnov, Stanislav"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:infoscience.epfl.ch:200329"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::eecca5b6365d9607ee5a9d336962c534"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematical Physics","Mathematics - Complex Variables","Mathematics - Probability"]},"trust":{"type":"FLOAT","value":0.9561375},"target_publication_title":{"type":"STRING","value":"Convergence of Ising interfaces to Schramm\u0027s SLE curves"},"provenance_datasource_name":{"type":"STRING","value":"Infoscience - École polytechnique fédérale de Lausanne"},"target_dateofacceptance":{"type":"DATE","value":"2013-12-02"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1312.0533\",\"titles\":[\"Convergence of Ising interfaces to Schramm\\u0027s SLE curves\"],\"abstracts\":[\" We show how to combine our earlier results to deduce strong convergence of\\nthe interfaces in the planar critical Ising model and its random-cluster\\nrepresentation to Schramm\\u0027s SLE curves with parameter $\\\\kappa\\u003d3$ and\\n$\\\\kappa\\u003d16/3$ respectively.\\n\",\"Comment: 7 pages\"],\"language\":\"eng\",\"subjects\":[\"Mathematical Physics\",\"Mathematics - Complex Variables\",\"Mathematics - Probability\"],\"creators\":[\"Chelkak, Dmitry\",\"Duminil-Copin, Hugo\",\"Hongler, Clément\",\"Kemppainen, Antti\",\"Smirnov, Stanislav\"],\"publicationdate\":\"2013-12-02\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1016/j.crma.2013.12.002\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1312.0533\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.crma.2013.12.002\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Crossref\",\"url\":\"http://dx.doi.org/10.1016/j.crma.2013.12.002\",\"id\":\"WOS:000330822400016\"},\"trust\":0.59810126}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1312.0533"},"target_publication_author_list":{"type":"LIST_STRING","value":["Chelkak, Dmitry","Duminil-Copin, Hugo","Hongler, Clément","Kemppainen, Antti","Smirnov, Stanislav"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["WOS:000330822400016"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::081b82f96300b6a6e3d282bad31cb6e2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematical Physics","Mathematics - Complex Variables","Mathematics - Probability"]},"trust":{"type":"FLOAT","value":0.59810126},"target_publication_title":{"type":"STRING","value":"Convergence of Ising interfaces to Schramm\u0027s SLE curves"},"provenance_datasource_name":{"type":"STRING","value":"Crossref"},"target_dateofacceptance":{"type":"DATE","value":"2013-12-02"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1312.0533\",\"titles\":[\"Convergence of Ising interfaces to Schramm\\u0027s SLE curves\"],\"abstracts\":[\" We show how to combine our earlier results to deduce strong convergence of\\nthe interfaces in the planar critical Ising model and its random-cluster\\nrepresentation to Schramm\\u0027s SLE curves with parameter $\\\\kappa\\u003d3$ and\\n$\\\\kappa\\u003d16/3$ respectively.\\n\",\"Comment: 7 pages\"],\"language\":\"eng\",\"subjects\":[\"Mathematical Physics\",\"Mathematics - Complex Variables\",\"Mathematics - Probability\"],\"creators\":[\"Chelkak, Dmitry\",\"Duminil-Copin, Hugo\",\"Hongler, Clément\",\"Kemppainen, Antti\",\"Smirnov, Stanislav\"],\"publicationdate\":\"2013-12-02\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1016/j.crma.2013.12.002\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1312.0533\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.crma.2013.12.002\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Crossref\",\"url\":\"http://dx.doi.org/10.1016/j.crma.2013.12.002\",\"id\":\"WOS:000330822400016\"},\"trust\":0.59810126}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1312.0533"},"target_publication_author_list":{"type":"LIST_STRING","value":["Chelkak, Dmitry","Duminil-Copin, Hugo","Hongler, Clément","Kemppainen, Antti","Smirnov, Stanislav"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["WOS:000330822400016"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::081b82f96300b6a6e3d282bad31cb6e2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematical Physics","Mathematics - Complex Variables","Mathematics - Probability"]},"trust":{"type":"FLOAT","value":0.59810126},"target_publication_title":{"type":"STRING","value":"Convergence of Ising interfaces to Schramm\u0027s SLE curves"},"provenance_datasource_name":{"type":"STRING","value":"Crossref"},"target_dateofacceptance":{"type":"DATE","value":"2013-12-02"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:infoscience.epfl.ch:200329\",\"titles\":[\"Convergence of Ising Interfaces to Schramm\\u0027s SLE Curves\"],\"abstracts\":[\"We show how to combine our earlier results to deduce strong convergence of the interfaces in the planar critical Ising model and its random-cluster representation to Schramm’s SLE curves with parameter κ \\u003d 3 and κ \\u003d 16 / 3 respectively.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Chelkak, Dmitry\",\"Duminil-Copin, Hugo\",\"Hongler, Clément\",\"Kemppainen, Antti\",\"Smirnov, Stanislav\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Infoscience - École polytechnique fédérale de Lausanne\"],\"pids\":[],\"instances\":[{\"url\":\"http://infoscience.epfl.ch/record/200329\",\"license\":\"OPEN\",\"hostedby\":\"Infoscience - École polytechnique fédérale de Lausanne\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/1312.0533\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1312.0533\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1312.0533\",\"id\":\"oai:arXiv.org:1312.0533\"},\"trust\":0.22899455}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Infoscience - École polytechnique fédérale de Lausanne"},"target_publication_id":{"type":"STRING","value":"oai:infoscience.epfl.ch:200329"},"target_publication_author_list":{"type":"LIST_STRING","value":["Chelkak, Dmitry","Duminil-Copin, Hugo","Hongler, Clément","Kemppainen, Antti","Smirnov, Stanislav"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1312.0533"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.22899455},"target_publication_title":{"type":"STRING","value":"Convergence of Ising Interfaces to Schramm\u0027s SLE Curves"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::eecca5b6365d9607ee5a9d336962c534"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:infoscience.epfl.ch:200329\",\"titles\":[\"Convergence of Ising Interfaces to Schramm\\u0027s SLE Curves\"],\"abstracts\":[\"We show how to combine our earlier results to deduce strong convergence of the interfaces in the planar critical Ising model and its random-cluster representation to Schramm’s SLE curves with parameter κ \\u003d 3 and κ \\u003d 16 / 3 respectively.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Chelkak, Dmitry\",\"Duminil-Copin, Hugo\",\"Hongler, Clément\",\"Kemppainen, Antti\",\"Smirnov, Stanislav\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Infoscience - École polytechnique fédérale de Lausanne\"],\"pids\":[{\"value\":\"10.1016/j.crma.2013.12.002\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://infoscience.epfl.ch/record/200329\",\"license\":\"OPEN\",\"hostedby\":\"Infoscience - École polytechnique fédérale de Lausanne\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.crma.2013.12.002\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Crossref\",\"url\":\"http://dx.doi.org/10.1016/j.crma.2013.12.002\",\"id\":\"WOS:000330822400016\"},\"trust\":0.058061898}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Infoscience - École polytechnique fédérale de Lausanne"},"target_publication_id":{"type":"STRING","value":"oai:infoscience.epfl.ch:200329"},"target_publication_author_list":{"type":"LIST_STRING","value":["Chelkak, Dmitry","Duminil-Copin, Hugo","Hongler, Clément","Kemppainen, Antti","Smirnov, Stanislav"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["WOS:000330822400016"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::081b82f96300b6a6e3d282bad31cb6e2"},"trust":{"type":"FLOAT","value":0.058061898},"target_publication_title":{"type":"STRING","value":"Convergence of Ising Interfaces to Schramm\u0027s SLE Curves"},"provenance_datasource_name":{"type":"STRING","value":"Crossref"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::eecca5b6365d9607ee5a9d336962c534"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:infoscience.epfl.ch:200329\",\"titles\":[\"Convergence of Ising Interfaces to Schramm\\u0027s SLE Curves\"],\"abstracts\":[\"We show how to combine our earlier results to deduce strong convergence of the interfaces in the planar critical Ising model and its random-cluster representation to Schramm’s SLE curves with parameter κ \\u003d 3 and κ \\u003d 16 / 3 respectively.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Chelkak, Dmitry\",\"Duminil-Copin, Hugo\",\"Hongler, Clément\",\"Kemppainen, Antti\",\"Smirnov, Stanislav\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Infoscience - École polytechnique fédérale de Lausanne\"],\"pids\":[{\"value\":\"10.1016/j.crma.2013.12.002\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://infoscience.epfl.ch/record/200329\",\"license\":\"OPEN\",\"hostedby\":\"Infoscience - École polytechnique fédérale de Lausanne\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.crma.2013.12.002\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Crossref\",\"url\":\"http://dx.doi.org/10.1016/j.crma.2013.12.002\",\"id\":\"WOS:000330822400016\"},\"trust\":0.058061898}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Infoscience - École polytechnique fédérale de Lausanne"},"target_publication_id":{"type":"STRING","value":"oai:infoscience.epfl.ch:200329"},"target_publication_author_list":{"type":"LIST_STRING","value":["Chelkak, Dmitry","Duminil-Copin, Hugo","Hongler, Clément","Kemppainen, Antti","Smirnov, Stanislav"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["WOS:000330822400016"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::081b82f96300b6a6e3d282bad31cb6e2"},"trust":{"type":"FLOAT","value":0.058061898},"target_publication_title":{"type":"STRING","value":"Convergence of Ising Interfaces to Schramm\u0027s SLE Curves"},"provenance_datasource_name":{"type":"STRING","value":"Crossref"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::eecca5b6365d9607ee5a9d336962c534"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/49468\",\"titles\":[\"Formal contracts, relational contracts, and the threat-point effect\"],\"abstracts\":[\"Can formal contracts help resolving the holdup problem? We address this important question by studying the holdup problem in repeated transactions between a seller and a buyer in which the seller can make relation-specific investments in each period. In contrast to previous findings, we demonstrate that writing a simple fixed-price contract based on product delivery is of value even when relation-specific investment is purely cooperative. In particular, there is a range of parameter values in which a higher investment can be implemented only if a formal fixed-price contract is written and combined with an informal agreement on additional payments or termination of future trade, contingent upon investments. Furthermore, we show that under an additional natural assumption, focusing our attention on fixed-price contracts as a form of formal contracts is without loss of generality. The key driving force of our result is a possibility that the threat-point effect is negative, i.e., the relation-specific investment decreases the surplus under no trade. This possibility, although very plausible, has been largely ignored in previous theoretical/empirical analyses of the holdup problem.\"],\"language\":\"eng\",\"subjects\":[\"D23\",\"D86\",\"L14\",\"L22\",\"L24\",\"ddc:330\",\"holdup problem\",\"formal contract\",\"relational contract\",\"cooperative investment\",\"fixed-price contract\",\"relation-specific investment\",\"repeated transactions\",\"long-term relationships\",\"Unvollständiger Vertrag\",\"Vertragstheorie\",\"Sunk Costs\",\"Wiederholte Spiele\",\"Theorie\"],\"creators\":[\"Itoh, Hideshi\",\"Morita, Hodaka\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Center for Economic Studies and Ifo Institute (CESifo) Munich\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/49468\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2011/wp-cesifo-2011-07/cesifo1_wp3533.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2011/wp-cesifo-2011-07/cesifo1_wp3533.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2011/wp-cesifo-2011-07/cesifo1_wp3533.pdf\",\"id\":\"oai:RePEc:ces:ceswps:_3533\"},\"trust\":0.8540836}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/49468"},"target_publication_author_list":{"type":"LIST_STRING","value":["Itoh, Hideshi","Morita, Hodaka"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ces:ceswps:_3533"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D23","D86","L14","L22","L24","ddc:330","holdup problem","formal contract","relational contract","cooperative investment","fixed-price contract","relation-specific investment","repeated transactions","long-term relationships","Unvollständiger Vertrag","Vertragstheorie","Sunk Costs","Wiederholte Spiele","Theorie"]},"trust":{"type":"FLOAT","value":0.8540836},"target_publication_title":{"type":"STRING","value":"Formal contracts, relational contracts, and the threat-point effect"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ces:ceswps:_3533\",\"titles\":[\"Formal Contracts, Relational Contracts, and the Threat-Point Effect\"],\"abstracts\":[\"Can formal contracts help resolving the holdup problem? We address this important question by studying the holdup problem in repeated transactions between a seller and a buyer in which the seller can make relation-specific investments in each period. In contrast to previous findings, we demonstrate that writing a simple fixed-price contract based on product delivery is of value even when relation-specific investment is purely cooperative. In particular, there is a range of parameter values in which a higher investment can be implemented only if a formal fixed-price contract is written and combined with an informal agreement on additional payments or termination of future trade, contingent upon investments. Furthermore, we show that under an additional natural assumption, focusing our attention on fixed-price contracts as a form of formal contracts is without loss of generality. The key driving force of our result is a possibility that the threat-point effect is negative, i.e., the relation-specific investment decreases the surplus under no trade. This possibility, although very plausible, has been largely ignored in previous theoretical/empirical analyses of the holdup problem.\"],\"language\":\"und\",\"subjects\":[\"holdup problem, formal contract, relational contract, cooperative investment, fixed-price contract, relation-specific investment, repeated transactions, long-term relationships\"],\"creators\":[\"Hideshi Itoh\",\"Hodaka Morita\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cesifo-group.de/portal/page/portal/DocBase_Content/WP/WP-CESifo_Working_Papers/wp-cesifo-2011/wp-cesifo-2011-07/cesifo1_wp3533.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/49468\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/49468\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/49468\",\"id\":\"oai:econstor.eu:10419/49468\"},\"trust\":0.53787833}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ces:ceswps:_3533"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hideshi Itoh","Hodaka Morita"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/49468"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["holdup problem, formal contract, relational contract, cooperative investment, fixed-price contract, relation-specific investment, repeated transactions, long-term relationships"]},"trust":{"type":"FLOAT","value":0.53787833},"target_publication_title":{"type":"STRING","value":"Formal Contracts, Relational Contracts, and the Threat-Point Effect"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00216860v1\",\"titles\":[\"PLANAR DEFECTS IN PLASTICALLY DEFORMED SPINEL SINGLE CRYSTALS\"],\"abstracts\":[\"Planar defects as observed when plastic deformation of nickel ferrite single crystals involves second phase production are studied. They lie within spinel matrix lamellae and are bounded by partial dislocations. Examples are studied, the determinations of displacement vectors and stabilization planes are compared with previous stacking fault energy calculations. From determination of partial Burgers vectors it seems possible that these defects could be related to partial dislocations involved in stress assisted second phase production.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Veyssiere, P.\",\"Rabier, J.\",\"Garem, H.\",\"Grilhe, J.\"],\"publicationdate\":\"1976-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphyscol:19767136\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00216860\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00216860\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00216860\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00216860\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00216860\"},\"trust\":0.28794193}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00216860v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Veyssiere, P.","Rabier, J.","Garem, H.","Grilhe, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00216860"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.28794193},"target_publication_title":{"type":"STRING","value":"PLANAR DEFECTS IN PLASTICALLY DEFORMED SPINEL SINGLE CRYSTALS"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1976-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00216860\",\"titles\":[\"PLANAR DEFECTS IN PLASTICALLY DEFORMED SPINEL SINGLE CRYSTALS\"],\"abstracts\":[\"Planar defects as observed when plastic deformation of nickel ferrite single crystals involves second phase production are studied. They lie within spinel matrix lamellae and are bounded by partial dislocations. Examples are studied, the determinations of displacement vectors and stabilization planes are compared with previous stacking fault energy calculations. From determination of partial Burgers vectors it seems possible that these defects could be related to partial dislocations involved in stress assisted second phase production.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\"],\"creators\":[\"Veyssiere, P.\",\"Rabier, J.\",\"Garem, H.\",\"Grilhe, J.\"],\"publicationdate\":\"1976-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphyscol:19767136\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00216860\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00216860\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00216860\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00216860\",\"id\":\"oai:HAL:jpa-00216860v1\"},\"trust\":0.14665943}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00216860"},"target_publication_author_list":{"type":"LIST_STRING","value":["Veyssiere, P.","Rabier, J.","Garem, H.","Grilhe, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00216860v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens"]},"trust":{"type":"FLOAT","value":0.14665943},"target_publication_title":{"type":"STRING","value":"PLANAR DEFECTS IN PLASTICALLY DEFORMED SPINEL SINGLE CRYSTALS"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1976-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:lev:wrkpap:wp_309\",\"titles\":[\"\\\"Profits: The Views of Jerome Levy and Michal Kalecki\\\"\"],\"abstracts\":[\"Profits are the incentive for production and therefore employment in almost all of the world\\u0027s economies; they also may represent exploitation of workers and consumers. Jerome Levy, using a complex process, derived the profits identity during the years 1908-1914. Michal Kalecki, taking advantage of the development of national accounting, derived it in the 1930s. Levy viewed the equation as a tool for developing policies that would enable capitalist economies to achieve high rates of employment. Recent American experience gives weight to his views. Kalecki\\u0027s insights from the identity strengthened his belief that unemployment was inescapable under capitalism. He would find empirical support in Europe\\u0027s high unemployment rates during the past two decades.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Jay Levy, S.\"],\"publicationdate\":\"2000-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.levyinstitute.org/pubs/wp309.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://econwpa.repec.org/eps/mac/papers/0004/0004056.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econwpa.repec.org/eps/mac/papers/0004/0004056.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econwpa.repec.org/eps/mac/papers/0004/0004056.pdf\",\"id\":\"oai:RePEc:wpa:wuwpma:0004056\"},\"trust\":0.3870989}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:lev:wrkpap:wp_309"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jay Levy, S."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wpa:wuwpma:0004056"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.3870989},"target_publication_title":{"type":"STRING","value":"\"Profits: The Views of Jerome Levy and Michal Kalecki\""},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2000-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:wpa:wuwpma:0004056\",\"titles\":[\"Profits: The Views of Jerome Levy and Michal Kalecki\"],\"abstracts\":[\"Profits are the incentive for production and therefore employment in almost all of the world\\u0027s economies; they also may represent exploitation of workers and consumers. Jerome Levy, using a complex process, derived the profits identity during the years 1908–1914. Michal Kalecki, taking advantage of the development of national accounting, derived it in the 1930s. Levy viewed the equation as a tool for developing policies that would enable capitalist economies to achieve high rates of employment. Recent American experience gives weight to his views. Kalecki\\u0027s insights from the identity strengthened his belief that unemployment was inescapable under capitalism. He would find empirical support in Europe\\u0027s high unemployment rates during the past two decades.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Jay Levy, S.\"],\"publicationdate\":\"2000-10-27\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econwpa.repec.org/eps/mac/papers/0004/0004056.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.levyinstitute.org/pubs/wp309.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.levyinstitute.org/pubs/wp309.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.levyinstitute.org/pubs/wp309.pdf\",\"id\":\"oai:RePEc:lev:wrkpap:wp_309\"},\"trust\":0.5714512}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:wpa:wuwpma:0004056"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jay Levy, S."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:lev:wrkpap:wp_309"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.5714512},"target_publication_title":{"type":"STRING","value":"Profits: The Views of Jerome Levy and Michal Kalecki"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2000-10-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:works.bepress.com:daniel_householder-1153\",\"titles\":[\"Technology: Its influence in the secondary school upon achievement in academic subjects and upon students\\u0027 attitude toward technology\"],\"abstracts\":[\"Many programs in the United States have undertaken to show the benefits to students of integrating academic disciplines. The TEC-Lab project, however, is unique among them because of its innovative approach. First, the TEC-Lab students are in senior high school, grades 9 to 12, while most innovative efforts are concentrated at the elementary and middle school levels. Second, the TEC-Lab approach uses technology as a means of meeting the usual academic requirements, rather than attempting to integrate the other academic areas into technology. The difference between these two approaches is subtle but profound. The first semester of the project was fraught with problems as equipment deliveries were late and installation difficulties delayed implementation even further. There was too little time to provide adequate teacher preparation. The students\\u0027 lack of familiarity with the technologies in the TEC-Lab complicated implementation. It is actually remarkable that these serious implementation problems apparently had little negative effect on the achievement levels of the students in the project. The lack of significant differences between the TEC-Lab and comparison classes in physical science and geometry in January, 1992 gave an early indication that immersion in the TEC-Lab environment was not disadvantageous to students. The comparisons made in May, 1992 of all TEC-Lab and comparison classes identified only one significant difference in achievement levels, when the TEC-Lab technology class achieved significantly better than the comparison technology class. This difference may well be explained by the overlap between the subject matter of the course and the technologies in use in the TEC-Lab. The changes in student attitudes towards technology during the academic year are particularly provocative. Participation in the TEC-Lab project, whether in one of the TEC-Lab classes or in one of the comparison classes taught by the TEC-Lab teachers, resulted in positive changes in attitude toward technology. The shift was consistent, appearing in each of the factors as well as the overall attitude scale.\"],\"language\":\"und\",\"subjects\":[\"technology\",\"secondary school\",\"achievement\",\"academic\",\"student\",\"attitude\"],\"creators\":[\"Householder, Dan L.\",\"Bolin, Barbara\"],\"publicationdate\":\"1993-01-01\",\"publisher\":\"SelectedWorks\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DigitalCommons@USU\"],\"pids\":[],\"instances\":[{\"url\":\"http://works.bepress.com/daniel_householder/154\",\"license\":\"OPEN\",\"hostedby\":\"DigitalCommons@USU\",\"instancetype\":\"Article\"},{\"url\":\"http://digitalcommons.usu.edu/ete_facpub/29\",\"license\":\"OPEN\",\"hostedby\":\"DigitalCommons@USU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://digitalcommons.usu.edu/ete_facpub/29\",\"license\":\"OPEN\",\"hostedby\":\"DigitalCommons@USU\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DigitalCommons@USU\",\"url\":\"http://digitalcommons.usu.edu/ete_facpub/29\",\"id\":\"oai:digitalcommons.usu.edu:ete_facpub-1028\"},\"trust\":0.9442399}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DigitalCommons@USU"},"target_publication_id":{"type":"STRING","value":"oai:works.bepress.com:daniel_householder-1153"},"target_publication_author_list":{"type":"LIST_STRING","value":["Householder, Dan L.","Bolin, Barbara"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:digitalcommons.usu.edu:ete_facpub-1028"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1abb1e1ea5f481b589da52303b091cbb"},"target_publication_subject_list":{"type":"LIST_STRING","value":["technology","secondary school","achievement","academic","student","attitude"]},"trust":{"type":"FLOAT","value":0.9442399},"target_publication_title":{"type":"STRING","value":"Technology: Its influence in the secondary school upon achievement in academic subjects and upon students\u0027 attitude toward technology"},"provenance_datasource_name":{"type":"STRING","value":"DigitalCommons@USU"},"target_dateofacceptance":{"type":"DATE","value":"1993-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1abb1e1ea5f481b589da52303b091cbb"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:digitalcommons.usu.edu:ete_facpub-1028\",\"titles\":[\"Technology: Its influence in the secondary school upon achievement in academic subjects and upon students\\u0027 attitude toward technology\"],\"abstracts\":[\"Many programs in the United States have undertaken to show the benefits to students of integrating academic disciplines. The TEC-Lab project, however, is unique among them because of its innovative approach. First, the TEC-Lab students are in senior high school, grades 9 to 12, while most innovative efforts are concentrated at the elementary and middle school levels. Second, the TEC-Lab approach uses technology as a means of meeting the usual academic requirements, rather than attempting to integrate the other academic areas into technology. The difference between these two approaches is subtle but profound. The first semester of the project was fraught with problems as equipment deliveries were late and installation difficulties delayed implementation even further. There was too little time to provide adequate teacher preparation. The students\\u0027 lack of familiarity with the technologies in the TEC-Lab complicated implementation. It is actually remarkable that these serious implementation problems apparently had little negative effect on the achievement levels of the students in the project. The lack of significant differences between the TEC-Lab and comparison classes in physical science and geometry in January, 1992 gave an early indication that immersion in the TEC-Lab environment was not disadvantageous to students. The comparisons made in May, 1992 of all TEC-Lab and comparison classes identified only one significant difference in achievement levels, when the TEC-Lab technology class achieved significantly better than the comparison technology class. This difference may well be explained by the overlap between the subject matter of the course and the technologies in use in the TEC-Lab. The changes in student attitudes towards technology during the academic year are particularly provocative. Participation in the TEC-Lab project, whether in one of the TEC-Lab classes or in one of the comparison classes taught by the TEC-Lab teachers, resulted in positive changes in attitude toward technology. The shift was consistent, appearing in each of the factors as well as the overall attitude scale.\"],\"language\":\"und\",\"subjects\":[\"technology\",\"secondary school\",\"achievement\",\"academic\",\"student\",\"attitude\"],\"creators\":[\"Householder, Dan L.\",\"Bolin, Barbara\"],\"publicationdate\":\"1993-01-01\",\"publisher\":\"Hosted by Utah State University Libraries\",\"embargoenddate\":\"\",\"contributor\":[\"Springer\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DigitalCommons@USU\"],\"pids\":[],\"instances\":[{\"url\":\"http://digitalcommons.usu.edu/ete_facpub/29\",\"license\":\"OPEN\",\"hostedby\":\"DigitalCommons@USU\",\"instancetype\":\"Article\"},{\"url\":\"http://works.bepress.com/daniel_householder/154\",\"license\":\"OPEN\",\"hostedby\":\"DigitalCommons@USU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://works.bepress.com/daniel_householder/154\",\"license\":\"OPEN\",\"hostedby\":\"DigitalCommons@USU\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DigitalCommons@USU\",\"url\":\"http://works.bepress.com/daniel_householder/154\",\"id\":\"oai:works.bepress.com:daniel_householder-1153\"},\"trust\":0.17451787}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DigitalCommons@USU"},"target_publication_id":{"type":"STRING","value":"oai:digitalcommons.usu.edu:ete_facpub-1028"},"target_publication_author_list":{"type":"LIST_STRING","value":["Householder, Dan L.","Bolin, Barbara"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:works.bepress.com:daniel_householder-1153"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1abb1e1ea5f481b589da52303b091cbb"},"target_publication_subject_list":{"type":"LIST_STRING","value":["technology","secondary school","achievement","academic","student","attitude"]},"trust":{"type":"FLOAT","value":0.17451787},"target_publication_title":{"type":"STRING","value":"Technology: Its influence in the secondary school upon achievement in academic subjects and upon students\u0027 attitude toward technology"},"provenance_datasource_name":{"type":"STRING","value":"DigitalCommons@USU"},"target_dateofacceptance":{"type":"DATE","value":"1993-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1abb1e1ea5f481b589da52303b091cbb"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1963261\",\"titles\":[\"Are brace prescribers following standards?\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Oral Presentation\"],\"creators\":[\"Fall, Aïssatou\",\"Beauséjour, Marie\",\"Roy-Beaudry, Marjolaine\",\"Goulet, Lise\",\"Labelle, Hubert\"],\"publicationdate\":\"2010-09-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Scoliosis\",\"issn\":\"\",\"eissn\":\"1748-7161\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1748-7161-5-S1-O40\",\"type\":\"doi\"},{\"value\":\"PMC2938672\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2938672\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.scoliosisjournal.com/content/5/S1/O40\",\"license\":\"OPEN\",\"hostedby\":\"Scoliosis\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.scoliosisjournal.com/content/5/S1/O40\",\"license\":\"OPEN\",\"hostedby\":\"Scoliosis\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.scoliosisjournal.com/content/5/S1/O40\",\"id\":\"oai:doaj.org/article:74178f42c7c642e881e26e3f530e8d65\"},\"trust\":0.82901937}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1963261"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fall, Aïssatou","Beauséjour, Marie","Roy-Beaudry, Marjolaine","Goulet, Lise","Labelle, Hubert"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:74178f42c7c642e881e26e3f530e8d65"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Oral Presentation"]},"trust":{"type":"FLOAT","value":0.82901937},"target_publication_title":{"type":"STRING","value":"Are brace prescribers following standards?"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2010-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:shf:wpaper:2013011\",\"titles\":[\"Fertility and Financial Development: Evidence from U.S. Counties in the 19th Century\"],\"abstracts\":[\"This paper uses data on fertility and financial development in 19th century U.S. to test the hypothesis that more developed local financial markets reduce the incentives for families to have a large offspring to provide for them at old age, the so-called old-age security hypothesis. We find that the presence of banks is associated to lower children-to-women ratios and crude birth rates even after controlling for a large set of socio-economic factors. To account for possible endogeneity of bank location we instrument for the presence of some banking activity in a given county in 1840 with the existence of at least a bank in that county in 1820. The results of using this identification strategy are in line with the OLS ones, namely that fertility in 1850 is negatively affected by financial development. Next we explore the relationship between banking activity and fertility in the state of Pennsylvania, where, by law, most banks were created before 1820. This allows us to treat banks in 1840 as exogenous and confirm the existence of a strong negative causal effect from financial development to fertility. Finally, we show that our results are robust to measuring banking activity with the number of cities with at least a bank in a given county.\"],\"language\":\"und\",\"subjects\":[\"fertility; old-age security hypothesis; financial development; 19th century U.S.\"],\"creators\":[\"Alberto Basso\",\"David Cuberes\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.shef.ac.uk/economics/research/serps/articles/2013_011.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://eprints.whiterose.ac.uk/76621/\",\"license\":\"OPEN\",\"hostedby\":\"White Rose Research Online\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.whiterose.ac.uk/76621/\",\"license\":\"OPEN\",\"hostedby\":\"White Rose Research Online\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"White Rose Research Online\",\"url\":\"http://eprints.whiterose.ac.uk/76621/\",\"id\":\"oai:eprints.whiterose.ac.uk:76621\"},\"trust\":0.03333229}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:shf:wpaper:2013011"},"target_publication_author_list":{"type":"LIST_STRING","value":["Alberto Basso","David Cuberes"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.whiterose.ac.uk:76621"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ffd52f3c7e12435a724a8f30fddadd9c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["fertility; old-age security hypothesis; financial development; 19th century U.S."]},"trust":{"type":"FLOAT","value":0.03333229},"target_publication_title":{"type":"STRING","value":"Fertility and Financial Development: Evidence from U.S. Counties in the 19th Century"},"provenance_datasource_name":{"type":"STRING","value":"White Rose Research Online"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:eprints.whiterose.ac.uk:76621\",\"titles\":[\"Fertility and financial development: evidence from U.S. counties in the 19th century\"],\"abstracts\":[\"This paper uses data on fertility and financial development in 19th century U.S. to test the hypothesis that more developed local financial markets reduce the incentives for families to have a large offspring to provide for them at old age, the so-called old-age security hypothesis. We find that the presence of banks is associated to lower children-to-women ratios and crude birth rates even after controlling for a large set of socio-economic factors. To account for possible endogeneity of bank location we instrument for the presence of some banking activity in a given county in 1840 with the existence of at least a bank in that county in 1820. The results of using this identification strategy are in line with the OLS ones, namely that fertility in 1850 is negatively affected by financial development. Next we explore the relationship between banking activity and fertility in the state of Pennsylvania, where, by law, most banks were created before 1820. This allows us to treat banks in 1840 as exogenous and confirm the existence of a strong negative causal effect from financial development to fertility. Finally, we show that our results are robust to measuring banking activity with the number of cities with at least a bank in a given county.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Basso, A.\",\"Cuberes, D.\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"Department of Economics, University of Sheffield\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"White Rose Research Online\"],\"pids\":[],\"instances\":[{\"url\":\"http://eprints.whiterose.ac.uk/76621/\",\"license\":\"OPEN\",\"hostedby\":\"White Rose Research Online\",\"instancetype\":\"Book\"},{\"url\":\"http://www.shef.ac.uk/economics/research/serps/articles/2013_011.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.shef.ac.uk/economics/research/serps/articles/2013_011.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.shef.ac.uk/economics/research/serps/articles/2013_011.html\",\"id\":\"oai:RePEc:shf:wpaper:2013011\"},\"trust\":0.29983842}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"White Rose Research Online"},"target_publication_id":{"type":"STRING","value":"oai:eprints.whiterose.ac.uk:76621"},"target_publication_author_list":{"type":"LIST_STRING","value":["Basso, A.","Cuberes, D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:shf:wpaper:2013011"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.29983842},"target_publication_title":{"type":"STRING","value":"Fertility and financial development: evidence from U.S. counties in the 19th century"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ffd52f3c7e12435a724a8f30fddadd9c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1406681\",\"titles\":[\"Multiple imputation for an incomplete covariate that is a ratio\"],\"abstracts\":[\"We are concerned with multiple imputation of the ratio of two variables, which is to be used as a covariate in a regression analysis. If the numerator and denominator are not missing simultaneously, it seems sensible to make use of the observed variable in the imputation model. One such strategy is to impute missing values for the numerator and denominator, or the log-transformed numerator and denominator, and then calculate the ratio of interest; we call this \\u0027passive\\u0027 imputation. Alternatively, missing ratio values might be imputed directly, with or without the numerator and/or the denominator in the imputation model; we call this \\u0027active\\u0027 imputation. In two motivating datasets, one involving body mass index as a covariate and the other involving the ratio of total to high-density lipoprotein cholesterol, we assess the sensitivity of results to the choice of imputation model and, as an alternative, explore fully Bayesian joint models for the outcome and incomplete ratio. Fully Bayesian approaches using Winbugs were unusable in both datasets because of computational problems. In our first dataset, multiple imputation results are similar regardless of the imputation model; in the second, results are sensitive to the choice of imputation model. Sensitivity depends strongly on the coefficient of variation of the ratio\\u0027s denominator. A simulation study demonstrates that passive imputation without transformation is risky because it can lead to downward bias when the coefficient of variation of the ratio\\u0027s denominator is larger than about 0.1. Active imputation or passive imputation after log-transformation is preferable.\"],\"language\":\"und\",\"subjects\":[\"compatibility, missing data, multiple imputation, ratios\"],\"creators\":[\"Morris, T. P.\",\"White, I. R.\",\"Royston, P.\",\"Seaman, S. R.\",\"Wood, A. M.\"],\"publicationdate\":\"2014-01-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"10.1002/sim.5935\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1406681/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1002/sim.5935\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3920636\",\"id\":\"oai:europepmc.org:2911270\"},\"trust\":0.15664172}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1406681"},"target_publication_author_list":{"type":"LIST_STRING","value":["Morris, T. P.","White, I. R.","Royston, P.","Seaman, S. R.","Wood, A. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2911270"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["compatibility, missing data, multiple imputation, ratios"]},"trust":{"type":"FLOAT","value":0.15664172},"target_publication_title":{"type":"STRING","value":"Multiple imputation for an incomplete covariate that is a ratio"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1406681\",\"titles\":[\"Multiple imputation for an incomplete covariate that is a ratio\"],\"abstracts\":[\"We are concerned with multiple imputation of the ratio of two variables, which is to be used as a covariate in a regression analysis. If the numerator and denominator are not missing simultaneously, it seems sensible to make use of the observed variable in the imputation model. One such strategy is to impute missing values for the numerator and denominator, or the log-transformed numerator and denominator, and then calculate the ratio of interest; we call this \\u0027passive\\u0027 imputation. Alternatively, missing ratio values might be imputed directly, with or without the numerator and/or the denominator in the imputation model; we call this \\u0027active\\u0027 imputation. In two motivating datasets, one involving body mass index as a covariate and the other involving the ratio of total to high-density lipoprotein cholesterol, we assess the sensitivity of results to the choice of imputation model and, as an alternative, explore fully Bayesian joint models for the outcome and incomplete ratio. Fully Bayesian approaches using Winbugs were unusable in both datasets because of computational problems. In our first dataset, multiple imputation results are similar regardless of the imputation model; in the second, results are sensitive to the choice of imputation model. Sensitivity depends strongly on the coefficient of variation of the ratio\\u0027s denominator. A simulation study demonstrates that passive imputation without transformation is risky because it can lead to downward bias when the coefficient of variation of the ratio\\u0027s denominator is larger than about 0.1. Active imputation or passive imputation after log-transformation is preferable.\"],\"language\":\"und\",\"subjects\":[\"compatibility, missing data, multiple imputation, ratios\"],\"creators\":[\"Morris, T. P.\",\"White, I. R.\",\"Royston, P.\",\"Seaman, S. R.\",\"Wood, A. M.\"],\"publicationdate\":\"2014-01-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"PMC3920636\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1406681/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3920636\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3920636\",\"id\":\"oai:europepmc.org:2911270\"},\"trust\":0.15664172}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1406681"},"target_publication_author_list":{"type":"LIST_STRING","value":["Morris, T. P.","White, I. R.","Royston, P.","Seaman, S. R.","Wood, A. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2911270"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["compatibility, missing data, multiple imputation, ratios"]},"trust":{"type":"FLOAT","value":0.15664172},"target_publication_title":{"type":"STRING","value":"Multiple imputation for an incomplete covariate that is a ratio"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1406681\",\"titles\":[\"Multiple imputation for an incomplete covariate that is a ratio\"],\"abstracts\":[\"We are concerned with multiple imputation of the ratio of two variables, which is to be used as a covariate in a regression analysis. If the numerator and denominator are not missing simultaneously, it seems sensible to make use of the observed variable in the imputation model. One such strategy is to impute missing values for the numerator and denominator, or the log-transformed numerator and denominator, and then calculate the ratio of interest; we call this \\u0027passive\\u0027 imputation. Alternatively, missing ratio values might be imputed directly, with or without the numerator and/or the denominator in the imputation model; we call this \\u0027active\\u0027 imputation. In two motivating datasets, one involving body mass index as a covariate and the other involving the ratio of total to high-density lipoprotein cholesterol, we assess the sensitivity of results to the choice of imputation model and, as an alternative, explore fully Bayesian joint models for the outcome and incomplete ratio. Fully Bayesian approaches using Winbugs were unusable in both datasets because of computational problems. In our first dataset, multiple imputation results are similar regardless of the imputation model; in the second, results are sensitive to the choice of imputation model. Sensitivity depends strongly on the coefficient of variation of the ratio\\u0027s denominator. A simulation study demonstrates that passive imputation without transformation is risky because it can lead to downward bias when the coefficient of variation of the ratio\\u0027s denominator is larger than about 0.1. Active imputation or passive imputation after log-transformation is preferable.\"],\"language\":\"und\",\"subjects\":[\"compatibility, missing data, multiple imputation, ratios\"],\"creators\":[\"Morris, T. P.\",\"White, I. R.\",\"Royston, P.\",\"Seaman, S. R.\",\"Wood, A. M.\"],\"publicationdate\":\"2014-01-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"23922236\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1406681/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"23922236\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3920636\",\"id\":\"oai:europepmc.org:2911270\"},\"trust\":0.15664172}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1406681"},"target_publication_author_list":{"type":"LIST_STRING","value":["Morris, T. P.","White, I. R.","Royston, P.","Seaman, S. R.","Wood, A. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2911270"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["compatibility, missing data, multiple imputation, ratios"]},"trust":{"type":"FLOAT","value":0.15664172},"target_publication_title":{"type":"STRING","value":"Multiple imputation for an incomplete covariate that is a ratio"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1406681\",\"titles\":[\"Multiple imputation for an incomplete covariate that is a ratio\"],\"abstracts\":[\"We are concerned with multiple imputation of the ratio of two variables, which is to be used as a covariate in a regression analysis. If the numerator and denominator are not missing simultaneously, it seems sensible to make use of the observed variable in the imputation model. One such strategy is to impute missing values for the numerator and denominator, or the log-transformed numerator and denominator, and then calculate the ratio of interest; we call this \\u0027passive\\u0027 imputation. Alternatively, missing ratio values might be imputed directly, with or without the numerator and/or the denominator in the imputation model; we call this \\u0027active\\u0027 imputation. In two motivating datasets, one involving body mass index as a covariate and the other involving the ratio of total to high-density lipoprotein cholesterol, we assess the sensitivity of results to the choice of imputation model and, as an alternative, explore fully Bayesian joint models for the outcome and incomplete ratio. Fully Bayesian approaches using Winbugs were unusable in both datasets because of computational problems. In our first dataset, multiple imputation results are similar regardless of the imputation model; in the second, results are sensitive to the choice of imputation model. Sensitivity depends strongly on the coefficient of variation of the ratio\\u0027s denominator. A simulation study demonstrates that passive imputation without transformation is risky because it can lead to downward bias when the coefficient of variation of the ratio\\u0027s denominator is larger than about 0.1. Active imputation or passive imputation after log-transformation is preferable.\"],\"language\":\"und\",\"subjects\":[\"compatibility, missing data, multiple imputation, ratios\"],\"creators\":[\"Morris, T. P.\",\"White, I. R.\",\"Royston, P.\",\"Seaman, S. R.\",\"Wood, A. M.\"],\"publicationdate\":\"2014-01-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"10.1002/sim.5935\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1406681/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1002/sim.5935\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3920636\",\"id\":\"oai:europepmc.org:2911270\"},\"trust\":0.15664172}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1406681"},"target_publication_author_list":{"type":"LIST_STRING","value":["Morris, T. P.","White, I. R.","Royston, P.","Seaman, S. R.","Wood, A. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2911270"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["compatibility, missing data, multiple imputation, ratios"]},"trust":{"type":"FLOAT","value":0.15664172},"target_publication_title":{"type":"STRING","value":"Multiple imputation for an incomplete covariate that is a ratio"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1406681\",\"titles\":[\"Multiple imputation for an incomplete covariate that is a ratio\"],\"abstracts\":[\"We are concerned with multiple imputation of the ratio of two variables, which is to be used as a covariate in a regression analysis. If the numerator and denominator are not missing simultaneously, it seems sensible to make use of the observed variable in the imputation model. One such strategy is to impute missing values for the numerator and denominator, or the log-transformed numerator and denominator, and then calculate the ratio of interest; we call this \\u0027passive\\u0027 imputation. Alternatively, missing ratio values might be imputed directly, with or without the numerator and/or the denominator in the imputation model; we call this \\u0027active\\u0027 imputation. In two motivating datasets, one involving body mass index as a covariate and the other involving the ratio of total to high-density lipoprotein cholesterol, we assess the sensitivity of results to the choice of imputation model and, as an alternative, explore fully Bayesian joint models for the outcome and incomplete ratio. Fully Bayesian approaches using Winbugs were unusable in both datasets because of computational problems. In our first dataset, multiple imputation results are similar regardless of the imputation model; in the second, results are sensitive to the choice of imputation model. Sensitivity depends strongly on the coefficient of variation of the ratio\\u0027s denominator. A simulation study demonstrates that passive imputation without transformation is risky because it can lead to downward bias when the coefficient of variation of the ratio\\u0027s denominator is larger than about 0.1. Active imputation or passive imputation after log-transformation is preferable.\"],\"language\":\"und\",\"subjects\":[\"compatibility, missing data, multiple imputation, ratios\"],\"creators\":[\"Morris, T. P.\",\"White, I. R.\",\"Royston, P.\",\"Seaman, S. R.\",\"Wood, A. M.\"],\"publicationdate\":\"2014-01-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"PMC3920636\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1406681/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3920636\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3920636\",\"id\":\"oai:europepmc.org:2911270\"},\"trust\":0.15664172}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1406681"},"target_publication_author_list":{"type":"LIST_STRING","value":["Morris, T. P.","White, I. R.","Royston, P.","Seaman, S. R.","Wood, A. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2911270"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["compatibility, missing data, multiple imputation, ratios"]},"trust":{"type":"FLOAT","value":0.15664172},"target_publication_title":{"type":"STRING","value":"Multiple imputation for an incomplete covariate that is a ratio"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1406681\",\"titles\":[\"Multiple imputation for an incomplete covariate that is a ratio\"],\"abstracts\":[\"We are concerned with multiple imputation of the ratio of two variables, which is to be used as a covariate in a regression analysis. If the numerator and denominator are not missing simultaneously, it seems sensible to make use of the observed variable in the imputation model. One such strategy is to impute missing values for the numerator and denominator, or the log-transformed numerator and denominator, and then calculate the ratio of interest; we call this \\u0027passive\\u0027 imputation. Alternatively, missing ratio values might be imputed directly, with or without the numerator and/or the denominator in the imputation model; we call this \\u0027active\\u0027 imputation. In two motivating datasets, one involving body mass index as a covariate and the other involving the ratio of total to high-density lipoprotein cholesterol, we assess the sensitivity of results to the choice of imputation model and, as an alternative, explore fully Bayesian joint models for the outcome and incomplete ratio. Fully Bayesian approaches using Winbugs were unusable in both datasets because of computational problems. In our first dataset, multiple imputation results are similar regardless of the imputation model; in the second, results are sensitive to the choice of imputation model. Sensitivity depends strongly on the coefficient of variation of the ratio\\u0027s denominator. A simulation study demonstrates that passive imputation without transformation is risky because it can lead to downward bias when the coefficient of variation of the ratio\\u0027s denominator is larger than about 0.1. Active imputation or passive imputation after log-transformation is preferable.\"],\"language\":\"und\",\"subjects\":[\"compatibility, missing data, multiple imputation, ratios\"],\"creators\":[\"Morris, T. P.\",\"White, I. R.\",\"Royston, P.\",\"Seaman, S. R.\",\"Wood, A. M.\"],\"publicationdate\":\"2014-01-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"23922236\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1406681/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"23922236\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3920636\",\"id\":\"oai:europepmc.org:2911270\"},\"trust\":0.15664172}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1406681"},"target_publication_author_list":{"type":"LIST_STRING","value":["Morris, T. P.","White, I. R.","Royston, P.","Seaman, S. R.","Wood, A. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2911270"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["compatibility, missing data, multiple imputation, ratios"]},"trust":{"type":"FLOAT","value":0.15664172},"target_publication_title":{"type":"STRING","value":"Multiple imputation for an incomplete covariate that is a ratio"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2911270\",\"titles\":[\"Multiple imputation for an incomplete covariate that is a ratio\"],\"abstracts\":[\"We are concerned with multiple imputation of the ratio of two variables, which is to be used as a covariate in a regression analysis. If the numerator and denominator are not missing simultaneously, it seems sensible to make use of the observed variable in the imputation model. One such strategy is to impute missing values for the numerator and denominator, or the log-transformed numerator and denominator, and then calculate the ratio of interest; we call this ‘passive’ imputation. Alternatively, missing ratio values might be imputed directly, with or without the numerator and/or the denominator in the imputation model; we call this ‘active’ imputation. In two motivating datasets, one involving body mass index as a covariate and the other involving the ratio of total to high-density lipoprotein cholesterol, we assess the sensitivity of results to the choice of imputation model and, as an alternative, explore fully Bayesian joint models for the outcome and incomplete ratio. Fully Bayesian approaches using Winbugs were unusable in both datasets because of computational problems. In our first dataset, multiple imputation results are similar regardless of the imputation model; in the second, results are sensitive to the choice of imputation model. Sensitivity depends strongly on the coefficient of variation of the ratio\\u0027s denominator. A simulation study demonstrates that passive imputation without transformation is risky because it can lead to downward bias when the coefficient of variation of the ratio\\u0027s denominator is larger than about 0.1. Active imputation or passive imputation after log-transformation is preferable. © 2013 The Authors. Statistics in Medicine published by John Wiley \\u0026 Sons, Ltd.\"],\"language\":\"eng\",\"subjects\":[\"Research Articles\",\"missing data\",\"multiple imputation\",\"ratios\",\"compatibility\"],\"creators\":[\"Morris, Tim P.\",\"White, Ian R.\",\"Royston, Patrick\",\"Seaman, Shaun R.\",\"Wood, Angela M.\"],\"publicationdate\":\"2013-08-01\",\"publisher\":\"John Wiley \\u0026 Sons Ltd\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Statistics in Medicine\",\"issn\":\"0277-6715\",\"eissn\":\"1097-0258\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1002/sim.5935\",\"type\":\"doi\"},{\"value\":\"PMC3920636\",\"type\":\"pmc\"},{\"value\":\"23922236\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3920636\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://discovery.ucl.ac.uk/1406681/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1406681/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"UCL Discovery\",\"url\":\"http://discovery.ucl.ac.uk/1406681/\",\"id\":\"oai:eprints.ucl.ac.uk.OAI2:1406681\"},\"trust\":0.44840896}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2911270"},"target_publication_author_list":{"type":"LIST_STRING","value":["Morris, Tim P.","White, Ian R.","Royston, Patrick","Seaman, Shaun R.","Wood, Angela M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.ucl.ac.uk.OAI2:1406681"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Articles","missing data","multiple imputation","ratios","compatibility"]},"trust":{"type":"FLOAT","value":0.44840896},"target_publication_title":{"type":"STRING","value":"Multiple imputation for an incomplete covariate that is a ratio"},"provenance_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_dateofacceptance":{"type":"DATE","value":"2013-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/356049\",\"titles\":[\"Geschikte organische mest voor de containerteelt\"],\"abstracts\":[\"Met de komst van meer natuurlijke teeltwijzen zijn de organische messtoffen weer terug. PPO beproefde de werking van deze meststoffen in de containerteelt. Gegevens in bijgaande tabellen: 1) Eindbeoordeling van de groei van Thuja occidentalis \\u0027Smaragd\\u0027 in diverse organische meststoffen (beendermeel, EKO-kippenmest, DCM-ECO-mix 1, BIOFeed, Bloedmeel); 2) Geadviseerde organische meststoffen (per liter potgrond) als basisbemesting en bijbemesting voor een buitenteelt.\"],\"language\":\"dut/nld\",\"subjects\":[\"houtachtige planten als sierplanten\",\"ornamental woody plants\",\"plantenvoeding\",\"plant nutrition\",\"potcultuur\",\"pot culture\",\"organische meststoffen\",\"organic fertilizers\",\"mestbehoeftebepaling\",\"fertilizer requirement determination\",\"onderzoek\",\"research\",\"Houtachtige siergewassen\",\"Plant Nutrition Physiology\",\"Fysiologie van de plantenvoeding\"],\"creators\":[\"Aendekerk, T. G. L.\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/31351\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/356049\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Contribution for newspaper or weekly magazine\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/356049\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Contribution for newspaper or weekly magazine\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/356049\",\"id\":\"wur:oai:library.wur.nl:wurpubs/356049\"},\"trust\":0.86285794}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/356049"},"target_publication_author_list":{"type":"LIST_STRING","value":["Aendekerk, T. G. L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/356049"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["houtachtige planten als sierplanten","ornamental woody plants","plantenvoeding","plant nutrition","potcultuur","pot culture","organische meststoffen","organic fertilizers","mestbehoeftebepaling","fertilizer requirement determination","onderzoek","research","Houtachtige siergewassen","Plant Nutrition Physiology","Fysiologie van de plantenvoeding"]},"trust":{"type":"FLOAT","value":0.86285794},"target_publication_title":{"type":"STRING","value":"Geschikte organische mest voor de containerteelt"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190\",\"titles\":[\"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile\"],\"abstracts\":[\"Estudiamos la propiedad de costo-efectividad de un sistema de permisos de emisión transferibles (SPET) frente un sistema de estándares de emisión. Nuestro análisis agrega a los costos de abatimiento, los costos de fiscalización para inducir cumplimiento. Consideramos, además, escenarios de información completa e incompleta. Las simulaciones numéricas se basan en datos de las fuentes fijas que operan en el Programa de Compensación de Emisiones (PCE) en Santiago de Chile. Los resultados muestran que un SPET no permite obtener mejoras en calidad del aire al mínimo costo de fiscalización, pero mantiene su costo-efectividad en términos de los costos totales de cumplimiento.\"],\"language\":\"und\",\"subjects\":[\"Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta\"],\"creators\":[\"Gaspard Clerger\",\"Carlos Chávez\",\"Mauricio Villena\",\"Walter Gómez\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Estudios de Economia\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.econ.uchile.cl/uploads/publicacion/035632b2778f90e9f3dc6c9a720d32432b23213b.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://educacion.facea.udec.cl/economia/?q\\u003dnode/134\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://educacion.facea.udec.cl/economia/?q\\u003dnode/134\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://educacion.facea.udec.cl/economia/?q\\u003dnode/134\",\"id\":\"oai:RePEc:cnc:wpaper:05-2008\"},\"trust\":0.54068524}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gaspard Clerger","Carlos Chávez","Mauricio Villena","Walter Gómez"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cnc:wpaper:05-2008"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta"]},"trust":{"type":"FLOAT","value":0.54068524},"target_publication_title":{"type":"STRING","value":"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190\",\"titles\":[\"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile\"],\"abstracts\":[\"Estudiamos la propiedad de costo-efectividad de un sistema de permisos de emisión transferibles (SPET) frente un sistema de estándares de emisión. Nuestro análisis agrega a los costos de abatimiento, los costos de fiscalización para inducir cumplimiento. Consideramos, además, escenarios de información completa e incompleta. Las simulaciones numéricas se basan en datos de las fuentes fijas que operan en el Programa de Compensación de Emisiones (PCE) en Santiago de Chile. Los resultados muestran que un SPET no permite obtener mejoras en calidad del aire al mínimo costo de fiscalización, pero mantiene su costo-efectividad en términos de los costos totales de cumplimiento.\"],\"language\":\"und\",\"subjects\":[\"Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta\"],\"creators\":[\"Gaspard Clerger\",\"Carlos Chávez\",\"Mauricio Villena\",\"Walter Gómez\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Estudios de Economia\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.econ.uchile.cl/uploads/publicacion/035632b2778f90e9f3dc6c9a720d32432b23213b.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"2008-01-01\"},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://educacion.facea.udec.cl/economia/?q\\u003dnode/134\",\"id\":\"oai:RePEc:cnc:wpaper:05-2008\"},\"trust\":0.2791047}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gaspard Clerger","Carlos Chávez","Mauricio Villena","Walter Gómez"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cnc:wpaper:05-2008"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta"]},"trust":{"type":"FLOAT","value":0.2791047},"target_publication_title":{"type":"STRING","value":"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190\",\"titles\":[\"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile\"],\"abstracts\":[\"Estudiamos la propiedad de costo-efectividad de un sistema de permisos de emisión transferibles (SPET) frente un sistema de estándares de emisión. Nuestro análisis agrega a los costos de abatimiento, los costos de fiscalización para inducir cumplimiento. Consideramos, además, escenarios de información completa e incompleta. Las simulaciones numéricas se basan en datos de las fuentes fijas que operan en el Programa de Compensación de Emisiones (PCE) en Santiago de Chile. Los resultados muestran que un SPET no permite obtener mejoras en calidad del aire al mínimo costo de fiscalización, pero mantiene su costo-efectividad en términos de los costos totales de cumplimiento.\"],\"language\":\"und\",\"subjects\":[\"Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta\"],\"creators\":[\"Gaspard Clerger\",\"Carlos Chávez\",\"Mauricio Villena\",\"Walter Gómez\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Estudios de Economia\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.econ.uchile.cl/uploads/publicacion/035632b2778f90e9f3dc6c9a720d32432b23213b.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10419/66699\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/66699\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/66699\",\"id\":\"oai:econstor.eu:10419/66699\"},\"trust\":0.34097958}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gaspard Clerger","Carlos Chávez","Mauricio Villena","Walter Gómez"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/66699"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta"]},"trust":{"type":"FLOAT","value":0.34097958},"target_publication_title":{"type":"STRING","value":"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190\",\"titles\":[\"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile\"],\"abstracts\":[\"Estudiamos la propiedad de costo-efectividad de un sistema de permisos de emisión transferibles (SPET) frente un sistema de estándares de emisión. Nuestro análisis agrega a los costos de abatimiento, los costos de fiscalización para inducir cumplimiento. Consideramos, además, escenarios de información completa e incompleta. Las simulaciones numéricas se basan en datos de las fuentes fijas que operan en el Programa de Compensación de Emisiones (PCE) en Santiago de Chile. Los resultados muestran que un SPET no permite obtener mejoras en calidad del aire al mínimo costo de fiscalización, pero mantiene su costo-efectividad en términos de los costos totales de cumplimiento.\"],\"language\":\"und\",\"subjects\":[\"Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta\"],\"creators\":[\"Gaspard Clerger\",\"Carlos Chávez\",\"Mauricio Villena\",\"Walter Gómez\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Estudios de Economia\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.econ.uchile.cl/uploads/publicacion/035632b2778f90e9f3dc6c9a720d32432b23213b.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"2009-01-01\"},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/66699\",\"id\":\"oai:econstor.eu:10419/66699\"},\"trust\":0.94369614}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gaspard Clerger","Carlos Chávez","Mauricio Villena","Walter Gómez"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/66699"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta"]},"trust":{"type":"FLOAT","value":0.94369614},"target_publication_title":{"type":"STRING","value":"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190\",\"titles\":[\"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile\"],\"abstracts\":[\"Estudiamos la propiedad de costo-efectividad de un sistema de permisos de emisión transferibles (SPET) frente un sistema de estándares de emisión. Nuestro análisis agrega a los costos de abatimiento, los costos de fiscalización para inducir cumplimiento. Consideramos, además, escenarios de información completa e incompleta. Las simulaciones numéricas se basan en datos de las fuentes fijas que operan en el Programa de Compensación de Emisiones (PCE) en Santiago de Chile. Los resultados muestran que un SPET no permite obtener mejoras en calidad del aire al mínimo costo de fiscalización, pero mantiene su costo-efectividad en términos de los costos totales de cumplimiento.\"],\"language\":\"und\",\"subjects\":[\"Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta\"],\"creators\":[\"Gaspard Clerger\",\"Carlos Chávez\",\"Mauricio Villena\",\"Walter Gómez\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Estudios de Economia\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.econ.uchile.cl/uploads/publicacion/035632b2778f90e9f3dc6c9a720d32432b23213b.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.redalyc.org/articulo.oa?id\\u003d22111975002\",\"license\":\"OPEN\",\"hostedby\":\"Estudios de Economia\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.redalyc.org/articulo.oa?id\\u003d22111975002\",\"license\":\"OPEN\",\"hostedby\":\"Estudios de Economia\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.redalyc.org/articulo.oa?id\\u003d22111975002\",\"id\":\"oai:doaj.org/article:2955f3627bc74571ac7f4f092a9244fa\"},\"trust\":0.22575021}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gaspard Clerger","Carlos Chávez","Mauricio Villena","Walter Gómez"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:2955f3627bc74571ac7f4f092a9244fa"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta"]},"trust":{"type":"FLOAT","value":0.22575021},"target_publication_title":{"type":"STRING","value":"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190\",\"titles\":[\"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile\"],\"abstracts\":[\"Estudiamos la propiedad de costo-efectividad de un sistema de permisos de emisión transferibles (SPET) frente un sistema de estándares de emisión. Nuestro análisis agrega a los costos de abatimiento, los costos de fiscalización para inducir cumplimiento. Consideramos, además, escenarios de información completa e incompleta. Las simulaciones numéricas se basan en datos de las fuentes fijas que operan en el Programa de Compensación de Emisiones (PCE) en Santiago de Chile. Los resultados muestran que un SPET no permite obtener mejoras en calidad del aire al mínimo costo de fiscalización, pero mantiene su costo-efectividad en términos de los costos totales de cumplimiento.\"],\"language\":\"und\",\"subjects\":[\"Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta\"],\"creators\":[\"Gaspard Clerger\",\"Carlos Chávez\",\"Mauricio Villena\",\"Walter Gómez\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Estudios de Economia\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.econ.uchile.cl/uploads/publicacion/035632b2778f90e9f3dc6c9a720d32432b23213b.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"2009-01-01\"},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.redalyc.org/articulo.oa?id\\u003d22111975002\",\"id\":\"oai:doaj.org/article:2955f3627bc74571ac7f4f092a9244fa\"},\"trust\":0.92779416}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gaspard Clerger","Carlos Chávez","Mauricio Villena","Walter Gómez"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:2955f3627bc74571ac7f4f092a9244fa"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta"]},"trust":{"type":"FLOAT","value":0.92779416},"target_publication_title":{"type":"STRING","value":"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cnc:wpaper:05-2008\",\"titles\":[\"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\": Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta.\"],\"creators\":[\"Gaspard Clerger\",\"Carlos Chávez\",\"Mauricio Villena\",\"Walter Gómez\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://educacion.facea.udec.cl/economia/?q\\u003dnode/134\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.econ.uchile.cl/uploads/publicacion/035632b2778f90e9f3dc6c9a720d32432b23213b.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.econ.uchile.cl/uploads/publicacion/035632b2778f90e9f3dc6c9a720d32432b23213b.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.econ.uchile.cl/uploads/publicacion/035632b2778f90e9f3dc6c9a720d32432b23213b.pdf\",\"id\":\"oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190\"},\"trust\":0.99130625}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cnc:wpaper:05-2008"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gaspard Clerger","Carlos Chávez","Mauricio Villena","Walter Gómez"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":[": Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta."]},"trust":{"type":"FLOAT","value":0.99130625},"target_publication_title":{"type":"STRING","value":"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cnc:wpaper:05-2008\",\"titles\":[\"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile\"],\"abstracts\":[\"Estudiamos la propiedad de costo-efectividad de un sistema de permisos de emisión transferibles (SPET) frente un sistema de estándares de emisión. Nuestro análisis agrega a los costos de abatimiento, los costos de fiscalización para inducir cumplimiento. Consideramos, además, escenarios de información completa e incompleta. Las simulaciones numéricas se basan en datos de las fuentes fijas que operan en el Programa de Compensación de Emisiones (PCE) en Santiago de Chile. Los resultados muestran que un SPET no permite obtener mejoras en calidad del aire al mínimo costo de fiscalización, pero mantiene su costo-efectividad en términos de los costos totales de cumplimiento.\"],\"language\":\"und\",\"subjects\":[\": Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta.\"],\"creators\":[\"Gaspard Clerger\",\"Carlos Chávez\",\"Mauricio Villena\",\"Walter Gómez\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://educacion.facea.udec.cl/economia/?q\\u003dnode/134\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"Estudiamos la propiedad de costo-efectividad de un sistema de permisos de emisión transferibles (SPET) frente un sistema de estándares de emisión. Nuestro análisis agrega a los costos de abatimiento, los costos de fiscalización para inducir cumplimiento. Consideramos, además, escenarios de información completa e incompleta. Las simulaciones numéricas se basan en datos de las fuentes fijas que operan en el Programa de Compensación de Emisiones (PCE) en Santiago de Chile. Los resultados muestran que un SPET no permite obtener mejoras en calidad del aire al mínimo costo de fiscalización, pero mantiene su costo-efectividad en términos de los costos totales de cumplimiento.\"]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.econ.uchile.cl/uploads/publicacion/035632b2778f90e9f3dc6c9a720d32432b23213b.pdf\",\"id\":\"oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190\"},\"trust\":0.7999965}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cnc:wpaper:05-2008"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gaspard Clerger","Carlos Chávez","Mauricio Villena","Walter Gómez"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":[": Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta."]},"trust":{"type":"FLOAT","value":0.7999965},"target_publication_title":{"type":"STRING","value":"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cnc:wpaper:05-2008\",\"titles\":[\"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\": Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta.\"],\"creators\":[\"Gaspard Clerger\",\"Carlos Chávez\",\"Mauricio Villena\",\"Walter Gómez\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://educacion.facea.udec.cl/economia/?q\\u003dnode/134\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/66699\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/66699\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/66699\",\"id\":\"oai:econstor.eu:10419/66699\"},\"trust\":0.19850326}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cnc:wpaper:05-2008"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gaspard Clerger","Carlos Chávez","Mauricio Villena","Walter Gómez"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/66699"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":[": Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta."]},"trust":{"type":"FLOAT","value":0.19850326},"target_publication_title":{"type":"STRING","value":"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cnc:wpaper:05-2008\",\"titles\":[\"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile\"],\"abstracts\":[\"We study the cost-effectiveness of a transferable emissions permit system (TEPS) vis a vis a system of emissions standards. Our analysis includes along with abatement costs, the costs of enforcing the system to induce compliance. Further, the analysis considers complete and incomplete information. The numerical simulations are performed for the case of fixed sources operating under the Emissions Compensation Program (ECP) in Santiago, Chile. The results suggest that a TEPS is not able to induce compliance at minimum enforcement costs, but this regulatory system allow the regulator to achieve the environmental target with minimum aggregate compliance costs.\"],\"language\":\"und\",\"subjects\":[\": Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta.\"],\"creators\":[\"Gaspard Clerger\",\"Carlos Chávez\",\"Mauricio Villena\",\"Walter Gómez\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://educacion.facea.udec.cl/economia/?q\\u003dnode/134\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"We study the cost-effectiveness of a transferable emissions permit system (TEPS) vis a vis a system of emissions standards. Our analysis includes along with abatement costs, the costs of enforcing the system to induce compliance. Further, the analysis considers complete and incomplete information. The numerical simulations are performed for the case of fixed sources operating under the Emissions Compensation Program (ECP) in Santiago, Chile. The results suggest that a TEPS is not able to induce compliance at minimum enforcement costs, but this regulatory system allow the regulator to achieve the environmental target with minimum aggregate compliance costs.\"]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/66699\",\"id\":\"oai:econstor.eu:10419/66699\"},\"trust\":0.3925752}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cnc:wpaper:05-2008"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gaspard Clerger","Carlos Chávez","Mauricio Villena","Walter Gómez"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/66699"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":[": Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta."]},"trust":{"type":"FLOAT","value":0.3925752},"target_publication_title":{"type":"STRING","value":"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cnc:wpaper:05-2008\",\"titles\":[\"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\": Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta.\"],\"creators\":[\"Gaspard Clerger\",\"Carlos Chávez\",\"Mauricio Villena\",\"Walter Gómez\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://educacion.facea.udec.cl/economia/?q\\u003dnode/134\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.redalyc.org/articulo.oa?id\\u003d22111975002\",\"license\":\"OPEN\",\"hostedby\":\"Estudios de Economia\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.redalyc.org/articulo.oa?id\\u003d22111975002\",\"license\":\"OPEN\",\"hostedby\":\"Estudios de Economia\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.redalyc.org/articulo.oa?id\\u003d22111975002\",\"id\":\"oai:doaj.org/article:2955f3627bc74571ac7f4f092a9244fa\"},\"trust\":0.2219407}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cnc:wpaper:05-2008"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gaspard Clerger","Carlos Chávez","Mauricio Villena","Walter Gómez"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:2955f3627bc74571ac7f4f092a9244fa"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":[": Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta."]},"trust":{"type":"FLOAT","value":0.2219407},"target_publication_title":{"type":"STRING","value":"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cnc:wpaper:05-2008\",\"titles\":[\"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile\"],\"abstracts\":[\"Estudiamos la propiedad de costo-efectividad de un sistema de permisos de emisión transferibles (SPET) frente un sistema de estándares de emisión. Nuestro análisis agrega a los costos de abatimiento, los costos de fiscalización para inducir cumplimiento. Consideramos, además, escenarios de información completa e incompleta. Las simulaciones numéricas se basan en datos de las fuentes fijas que operan en el Programa de Compensación de Emisiones (PCE) en Santiago de Chile. Los resultados muestran que un SPET no permite obtener mejoras en calidad del aire al mínimo costo de fiscalización, pero mantiene su costo-efectividad en términos de los costos totales de cumplimiento.\"],\"language\":\"und\",\"subjects\":[\": Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta.\"],\"creators\":[\"Gaspard Clerger\",\"Carlos Chávez\",\"Mauricio Villena\",\"Walter Gómez\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://educacion.facea.udec.cl/economia/?q\\u003dnode/134\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"Estudiamos la propiedad de costo-efectividad de un sistema de permisos de emisión transferibles (SPET) frente un sistema de estándares de emisión. Nuestro análisis agrega a los costos de abatimiento, los costos de fiscalización para inducir cumplimiento. Consideramos, además, escenarios de información completa e incompleta. Las simulaciones numéricas se basan en datos de las fuentes fijas que operan en el Programa de Compensación de Emisiones (PCE) en Santiago de Chile. Los resultados muestran que un SPET no permite obtener mejoras en calidad del aire al mínimo costo de fiscalización, pero mantiene su costo-efectividad en términos de los costos totales de cumplimiento.\"]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.redalyc.org/articulo.oa?id\\u003d22111975002\",\"id\":\"oai:doaj.org/article:2955f3627bc74571ac7f4f092a9244fa\"},\"trust\":0.52841985}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cnc:wpaper:05-2008"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gaspard Clerger","Carlos Chávez","Mauricio Villena","Walter Gómez"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:2955f3627bc74571ac7f4f092a9244fa"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":[": Política Ambiental, costo-efectividad, costos de fiscalización, información incompleta."]},"trust":{"type":"FLOAT","value":0.52841985},"target_publication_title":{"type":"STRING","value":"Costos de Cumplimiento de Regulación Ambiental con Información Incompleta. Aplicación a fuentes fijas del PCE de Santiago, Chile"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/66699\",\"titles\":[\"Costos de cumplimiento de regulación ambiental con información incompleta: Aplicación a fuentes fijas del PCE de Santiago, Chile\"],\"abstracts\":[\"We study the cost-effectiveness of a transferable emissions permit system (TEPS) vis a vis a system of emissions standards. Our analysis includes along with abatement costs, the costs of enforcing the system to induce compliance. Further, the analysis considers complete and incomplete information. The numerical simulations are performed for the case of fixed sources operating under the Emissions Compensation Program (ECP) in Santiago, Chile. The results suggest that a TEPS is not able to induce compliance at minimum enforcement costs, but this regulatory system allow the regulator to achieve the environmental target with minimum aggregate compliance costs.\"],\"language\":\"spa\",\"subjects\":[\"L51\",\"Q28\",\"K42\",\"K32\",\"ddc:330\",\"environmental policy\",\"cost-effectiveness\",\"enforcement costs incomplete information\",\"Umweltpolitik\",\"Emissionshandel\",\"Kosten-Wirksamkeits-Analyse\",\"Unvollkommene Information\",\"Santiago (Chile)\"],\"creators\":[\"Clerger, Gaspard\",\"Chávez, Carlos\",\"Villena, Mauricio\",\"Gómez, Walter\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"Universidad de Chile, Departamento de Economía Santiago de Chile\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/66699\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Article\"},{\"url\":\"http://www.econ.uchile.cl/uploads/publicacion/035632b2778f90e9f3dc6c9a720d32432b23213b.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.econ.uchile.cl/uploads/publicacion/035632b2778f90e9f3dc6c9a720d32432b23213b.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.econ.uchile.cl/uploads/publicacion/035632b2778f90e9f3dc6c9a720d32432b23213b.pdf\",\"id\":\"oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190\"},\"trust\":0.92250276}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/66699"},"target_publication_author_list":{"type":"LIST_STRING","value":["Clerger, Gaspard","Chávez, Carlos","Villena, Mauricio","Gómez, Walter"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:udc:esteco:v:36:y:2009:i:2:p:165-190"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["L51","Q28","K42","K32","ddc:330","environmental policy","cost-effectiveness","enforcement costs incomplete information","Umweltpolitik","Emissionshandel","Kosten-Wirksamkeits-Analyse","Unvollkommene Information","Santiago (Chile)"]},"trust":{"type":"FLOAT","value":0.92250276},"target_publication_title":{"type":"STRING","value":"Costos de cumplimiento de regulación ambiental con información incompleta: Aplicación a fuentes fijas del PCE de Santiago, Chile"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/66699\",\"titles\":[\"Costos de cumplimiento de regulación ambiental con información incompleta: Aplicación a fuentes fijas del PCE de Santiago, Chile\"],\"abstracts\":[\"We study the cost-effectiveness of a transferable emissions permit system (TEPS) vis a vis a system of emissions standards. Our analysis includes along with abatement costs, the costs of enforcing the system to induce compliance. Further, the analysis considers complete and incomplete information. The numerical simulations are performed for the case of fixed sources operating under the Emissions Compensation Program (ECP) in Santiago, Chile. The results suggest that a TEPS is not able to induce compliance at minimum enforcement costs, but this regulatory system allow the regulator to achieve the environmental target with minimum aggregate compliance costs.\"],\"language\":\"spa\",\"subjects\":[\"L51\",\"Q28\",\"K42\",\"K32\",\"ddc:330\",\"environmental policy\",\"cost-effectiveness\",\"enforcement costs incomplete information\",\"Umweltpolitik\",\"Emissionshandel\",\"Kosten-Wirksamkeits-Analyse\",\"Unvollkommene Information\",\"Santiago (Chile)\"],\"creators\":[\"Clerger, Gaspard\",\"Chávez, Carlos\",\"Villena, Mauricio\",\"Gómez, Walter\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"Universidad de Chile, Departamento de Economía Santiago de Chile\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/66699\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Article\"},{\"url\":\"http://educacion.facea.udec.cl/economia/?q\\u003dnode/134\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://educacion.facea.udec.cl/economia/?q\\u003dnode/134\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://educacion.facea.udec.cl/economia/?q\\u003dnode/134\",\"id\":\"oai:RePEc:cnc:wpaper:05-2008\"},\"trust\":0.76662225}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/66699"},"target_publication_author_list":{"type":"LIST_STRING","value":["Clerger, Gaspard","Chávez, Carlos","Villena, Mauricio","Gómez, Walter"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cnc:wpaper:05-2008"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["L51","Q28","K42","K32","ddc:330","environmental policy","cost-effectiveness","enforcement costs incomplete information","Umweltpolitik","Emissionshandel","Kosten-Wirksamkeits-Analyse","Unvollkommene Information","Santiago (Chile)"]},"trust":{"type":"FLOAT","value":0.76662225},"target_publication_title":{"type":"STRING","value":"Costos de cumplimiento de regulación ambiental con información incompleta: Aplicación a fuentes fijas del PCE de Santiago, Chile"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/66699\",\"titles\":[\"Costos de cumplimiento de regulación ambiental con información incompleta: Aplicación a fuentes fijas del PCE de Santiago, Chile\"],\"abstracts\":[\"We study the cost-effectiveness of a transferable emissions permit system (TEPS) vis a vis a system of emissions standards. Our analysis includes along with abatement costs, the costs of enforcing the system to induce compliance. Further, the analysis considers complete and incomplete information. The numerical simulations are performed for the case of fixed sources operating under the Emissions Compensation Program (ECP) in Santiago, Chile. The results suggest that a TEPS is not able to induce compliance at minimum enforcement costs, but this regulatory system allow the regulator to achieve the environmental target with minimum aggregate compliance costs.\"],\"language\":\"spa\",\"subjects\":[\"L51\",\"Q28\",\"K42\",\"K32\",\"ddc:330\",\"environmental policy\",\"cost-effectiveness\",\"enforcement costs incomplete information\",\"Umweltpolitik\",\"Emissionshandel\",\"Kosten-Wirksamkeits-Analyse\",\"Unvollkommene Information\",\"Santiago (Chile)\"],\"creators\":[\"Clerger, Gaspard\",\"Chávez, Carlos\",\"Villena, Mauricio\",\"Gómez, Walter\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"Universidad de Chile, Departamento de Economía Santiago de Chile\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/66699\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Article\"},{\"url\":\"http://www.redalyc.org/articulo.oa?id\\u003d22111975002\",\"license\":\"OPEN\",\"hostedby\":\"Estudios de Economia\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.redalyc.org/articulo.oa?id\\u003d22111975002\",\"license\":\"OPEN\",\"hostedby\":\"Estudios de Economia\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.redalyc.org/articulo.oa?id\\u003d22111975002\",\"id\":\"oai:doaj.org/article:2955f3627bc74571ac7f4f092a9244fa\"},\"trust\":0.44607544}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/66699"},"target_publication_author_list":{"type":"LIST_STRING","value":["Clerger, Gaspard","Chávez, Carlos","Villena, Mauricio","Gómez, Walter"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:2955f3627bc74571ac7f4f092a9244fa"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["L51","Q28","K42","K32","ddc:330","environmental policy","cost-effectiveness","enforcement costs incomplete information","Umweltpolitik","Emissionshandel","Kosten-Wirksamkeits-Analyse","Unvollkommene Information","Santiago (Chile)"]},"trust":{"type":"FLOAT","value":0.44607544},"target_publication_title":{"type":"STRING","value":"Costos de cumplimiento de regulación ambiental con información incompleta: Aplicación a fuentes fijas del PCE de Santiago, Chile"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:fedoa.unina.it:9010\",\"titles\":[\"Toward the understanding and treatment of human neurodegenerative disorders: a mouse model approach\"],\"abstracts\":[\"Part 1 :\\r\\n\\r\\nMucopolysaccharidosis type II (MPS II) is a lysosomal storage disorder caused by the deficiency of the lysosomal enzyme iduronate 2 sulphates (Ids). The inactivity of this enzyme results in the progressive accumulation of heparan and dermatan sulfates within the lysosomes of various tissues and organs, with consequent cellular degeneration. Patients affected by the severe form of MPS II are characterized, in addition, by a devastating involvement of the central nervous system. The MPSII mouse model reproduces the features of MPSII patients. The characterization of brain phenotype of mouse MPS II showed a progressive GAGs accumulation in almost all the regions of the brain, an increase in inflammation and severe neurodegeneration. Moreover, behavioral tests, showed a deficit in learning and motor coordination. Up to now, the only treatment for MPS II patients is the enzyme replacement therapy (ERT) with the systemic infusion of Ids enzyme; however, this treatment only obtains amelioration of visceral defects, but not of neurological ones. To this aim, we developed a new protocol of ERT to treat both, visceral and neurological defects. Importantly, we were successful in having the infused Ids enzyme reaching the brain with a good rescue of the CNS phenotype and behavioral performances. Among the ERT protocols tested, the one using low Ids concentration, was effective on young and adult MPS II mice.\\r\\n\\r\\n\\r\\nPart 2:\\r\\nGrowing evidence suggest comorbidity between diabetes mellitus (DM) and Alzheimer\\u0027s disease (AD); indeed, diabetic patients show increased risk of developing AD and cognitive deficits, while, AD patients show impaired insulin function and glucose metabolism. However, the molecular mechanisms linking these two disorders are still not fully understood. Here, we hypothesize that DM induces tau hyperphosphorylation generating the cognitive decline observed in AD. Interestingly, our results show that induction of type 1 DM by streptozotocin (STZ) administration in WT mice support our hypothesis showing, in these mice, tau hyperphosphorylation, decreased activity of the Insulin Receptor (IR)/PI3K/AKT pathway and increased phosphorylation of glycogen synthase kinase 3β (GSK3β), a kinase strongly involved in the pathogenesis of AD. At the behavioral levels, WT-STZ mice showed learning and memory deficits. Importantly, when type 1 DM was induced in knockout mice lacking tau proteins (here referred as mtauKO STZ), the behavioral and cellular phenotypes found in WT-STZ mice were not observed. Associated with these cognitive deficits, WT-STZ mice displayed a significant decrease of synaptic markers. Overall, our results indicate that tau phosphorylation is a critical and essential molecular mechanism underlying the link between DM and AD.\"],\"language\":\"und\",\"subjects\":[\"MED/03 GENETICA MEDICA\"],\"creators\":[\"Abbondante, Serena\"],\"publicationdate\":\"2012-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Università degli Studi di Napoli Federico Il Open Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.fedoa.unina.it/9010/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.fedoa.unina.it/9010/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.fedoa.unina.it/9010/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"url\":\"http://www.fedoa.unina.it/9010/\",\"id\":\"oai:fedoatest.unina.it:9010\"},\"trust\":0.94886345}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Università degli Studi di Napoli Federico Il Open Archive"},"target_publication_id":{"type":"STRING","value":"oai:fedoa.unina.it:9010"},"target_publication_author_list":{"type":"LIST_STRING","value":["Abbondante, Serena"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:fedoatest.unina.it:9010"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::37a749d808e46495a8da1e5352d03cae"},"target_publication_subject_list":{"type":"LIST_STRING","value":["MED/03 GENETICA MEDICA"]},"trust":{"type":"FLOAT","value":0.94886345},"target_publication_title":{"type":"STRING","value":"Toward the understanding and treatment of human neurodegenerative disorders: a mouse model approach"},"provenance_datasource_name":{"type":"STRING","value":"Università degli Studi di Napoli Federico Il Open Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::37a749d808e46495a8da1e5352d03cae"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:fedoatest.unina.it:9010\",\"titles\":[\"Toward the understanding and treatment of human neurodegenerative disorders: a mouse model approach\"],\"abstracts\":[\"Part 1 :\\n\\nMucopolysaccharidosis type II (MPS II) is a lysosomal storage disorder caused by the deficiency of the lysosomal enzyme iduronate 2 sulphates (Ids). The inactivity of this enzyme results in the progressive accumulation of heparan and dermatan sulfates within the lysosomes of various tissues and organs, with consequent cellular degeneration. Patients affected by the severe form of MPS II are characterized, in addition, by a devastating involvement of the central nervous system. The MPSII mouse model reproduces the features of MPSII patients. The characterization of brain phenotype of mouse MPS II showed a progressive GAGs accumulation in almost all the regions of the brain, an increase in inflammation and severe neurodegeneration. Moreover, behavioral tests, showed a deficit in learning and motor coordination. Up to now, the only treatment for MPS II patients is the enzyme replacement therapy (ERT) with the systemic infusion of Ids enzyme; however, this treatment only obtains amelioration of visceral defects, but not of neurological ones. To this aim, we developed a new protocol of ERT to treat both, visceral and neurological defects. Importantly, we were successful in having the infused Ids enzyme reaching the brain with a good rescue of the CNS phenotype and behavioral performances. Among the ERT protocols tested, the one using low Ids concentration, was effective on young and adult MPS II mice.\\n\\n\\nPart 2:\\nGrowing evidence suggest comorbidity between diabetes mellitus (DM) and Alzheimer\\u0027s disease (AD); indeed, diabetic patients show increased risk of developing AD and cognitive deficits, while, AD patients show impaired insulin function and glucose metabolism. However, the molecular mechanisms linking these two disorders are still not fully understood. Here, we hypothesize that DM induces tau hyperphosphorylation generating the cognitive decline observed in AD. Interestingly, our results show that induction of type 1 DM by streptozotocin (STZ) administration in WT mice support our hypothesis showing, in these mice, tau hyperphosphorylation, decreased activity of the Insulin Receptor (IR)/PI3K/AKT pathway and increased phosphorylation of glycogen synthase kinase 3β (GSK3β), a kinase strongly involved in the pathogenesis of AD. At the behavioral levels, WT-STZ mice showed learning and memory deficits. Importantly, when type 1 DM was induced in knockout mice lacking tau proteins (here referred as mtauKO STZ), the behavioral and cellular phenotypes found in WT-STZ mice were not observed. Associated with these cognitive deficits, WT-STZ mice displayed a significant decrease of synaptic markers. Overall, our results indicate that tau phosphorylation is a critical and essential molecular mechanism underlying the link between DM and AD.\"],\"language\":\"ita\",\"subjects\":[],\"creators\":[\"Abbondante, Serena\"],\"publicationdate\":\"2012-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Università degli Studi di Napoli Federico Il Open Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.fedoa.unina.it/9010/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.fedoa.unina.it/9010/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.fedoa.unina.it/9010/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"url\":\"http://www.fedoa.unina.it/9010/\",\"id\":\"oai:fedoa.unina.it:9010\"},\"trust\":0.17781079}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Università degli Studi di Napoli Federico Il Open Archive"},"target_publication_id":{"type":"STRING","value":"oai:fedoatest.unina.it:9010"},"target_publication_author_list":{"type":"LIST_STRING","value":["Abbondante, Serena"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:fedoa.unina.it:9010"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::37a749d808e46495a8da1e5352d03cae"},"trust":{"type":"FLOAT","value":0.17781079},"target_publication_title":{"type":"STRING","value":"Toward the understanding and treatment of human neurodegenerative disorders: a mouse model approach"},"provenance_datasource_name":{"type":"STRING","value":"Università degli Studi di Napoli Federico Il Open Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::37a749d808e46495a8da1e5352d03cae"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pcp:pucrev:y:1988:i:21:p:121-146\",\"titles\":[\"La teoría de producción conjunta de Sraffa: un análisis crítico\"],\"abstracts\":[\"El propósito del presente trabajo es el de continuar lo ya iniciado en García-Cobián(1983)en donde se consideró la teoría de producción disjunta de Sraffa, analizándose ahora su teoría de producción conjunta. La importancia de tal propósito para la teoría económica es obvia, pues no puede profundizarse ni extenderse una teoría si no es precisando sus afirmaciones y corrigiendo sus errores cuando se los detecte.\"],\"language\":\"und\",\"subjects\":[\"producción conjunta, Sraffa\"],\"creators\":[\"García-Cobián, R.\"],\"publicationdate\":\"1988-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Revista Economía\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://revistas.pucp.edu.pe/index.php/economia/article/view/1024/992\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://revistas.pucp.edu.pe/index.php/economia/article/view/1024\",\"license\":\"OPEN\",\"hostedby\":\"Revista Economía\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://revistas.pucp.edu.pe/index.php/economia/article/view/1024\",\"license\":\"OPEN\",\"hostedby\":\"Revista Economía\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://revistas.pucp.edu.pe/index.php/economia/article/view/1024\",\"id\":\"oai:doaj.org/article:4d338ce5250a424d8a976c2922b2822f\"},\"trust\":0.27005023}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pcp:pucrev:y:1988:i:21:p:121-146"},"target_publication_author_list":{"type":"LIST_STRING","value":["García-Cobián, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:4d338ce5250a424d8a976c2922b2822f"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["producción conjunta, Sraffa"]},"trust":{"type":"FLOAT","value":0.27005023},"target_publication_title":{"type":"STRING","value":"La teoría de producción conjunta de Sraffa: un análisis crítico"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"1988-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ub.rug.nl:dbi/4b013846c1481\",\"titles\":[\"Studies on ineffective erythropoiesis in myelodysplastic syndromes\"],\"abstracts\":[\"In chapter 1 advances in the understanding of the myelodysplastic syndrome (MDS) are reviewed. In the fist part of the introduction classification, prognostic factors and epidemiology are described. Subsequently, the diagnostic approach and clinical findings are discussed.\\nZie: Summary.\"],\"language\":\"eng\",\"subjects\":[\"Myelodysplastische syndromen\",\"Bloedvorming; Proefschriften (vorm); hematologie\"],\"creators\":[\"Brada, Simo Jean Louis\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"University of Groningen Digital Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://irs.ub.rug.nl/ppn/262038366\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"https://www.rug.nl/research/portal/en/publications/studies-on-ineffective-erythropoiesis-in-myelodysplastic-syndromes(94cbaa61-a68b-40a6-b828-b3dbf820b21a).html\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://www.rug.nl/research/portal/en/publications/studies-on-ineffective-erythropoiesis-in-myelodysplastic-syndromes(94cbaa61-a68b-40a6-b828-b3dbf820b21a).html\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"https://www.rug.nl/research/portal/en/publications/studies-on-ineffective-erythropoiesis-in-myelodysplastic-syndromes(94cbaa61-a68b-40a6-b828-b3dbf820b21a).html\",\"id\":\"rug:oai:pure.rug.nl:publications/94cbaa61-a68b-40a6-b828-b3dbf820b21a\"},\"trust\":0.72681975}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"University of Groningen Digital Archive"},"target_publication_id":{"type":"STRING","value":"oai:ub.rug.nl:dbi/4b013846c1481"},"target_publication_author_list":{"type":"LIST_STRING","value":["Brada, Simo Jean Louis"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["rug:oai:pure.rug.nl:publications/94cbaa61-a68b-40a6-b828-b3dbf820b21a"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Myelodysplastische syndromen","Bloedvorming; Proefschriften (vorm); hematologie"]},"trust":{"type":"FLOAT","value":0.72681975},"target_publication_title":{"type":"STRING","value":"Studies on ineffective erythropoiesis in myelodysplastic syndromes"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::a2557a7b2e94197ff767970b67041697"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberwo:4926\",\"titles\":[\"Technology and Trade\"],\"abstracts\":[\"We survey research on the relationship between technology and trade. We begin with the old literature, which treated the state of technology as exogenous and asked how changes in technology affect the trade pattern and welfare. Recent research has attempted to endogenize technological progress which results either from learning- by-doing or from investments in research and development. This allows one to examine not only how technology affects trade, but also how trade affects the evolution of technology. We emphasize the parallels between the models with learning-by-doing and those with explicit R\\u0026D and highlight the role that the geographic extent of knowledge spillovers plays in mediating the relationship between trade and technological progress.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Grossman, Gene M.\",\"Elhanan Helpman\"],\"publicationdate\":\"1994-11-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/papers/w4926.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d1134\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d1134\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d1134\",\"id\":\"oai:RePEc:cpr:ceprdp:1134\"},\"trust\":0.88635635}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberwo:4926"},"target_publication_author_list":{"type":"LIST_STRING","value":["Grossman, Gene M.","Elhanan Helpman"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cpr:ceprdp:1134"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.88635635},"target_publication_title":{"type":"STRING","value":"Technology and Trade"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1994-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cpr:ceprdp:1134\",\"titles\":[\"Technology and Trade\"],\"abstracts\":[\"We review the literature on the links between technology and international trade. The older literature assumed exogenous technologies and focused on their effects on the structure of foreign trade and on welfare. Recently much of the effort has been on explaining technological change. As a result, we also describe the effects of foreign trade on technological change. We deal with technological change that results from learning by doing and from innovation, and we describe the relationship between each one of these forms of change in technology with international trade. Apart from integrating much of the recent literature on learning by doing, we show that there are important common themes and results in these two strands of the literature.\"],\"language\":\"und\",\"subjects\":[\"Growth; Technology; Trade\"],\"creators\":[\"Grossman, Gene\",\"Helpman, Elhanan\"],\"publicationdate\":\"1995-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d1134\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.nber.org/papers/w4926.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.nber.org/papers/w4926.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.nber.org/papers/w4926.pdf\",\"id\":\"oai:RePEc:nbr:nberwo:4926\"},\"trust\":0.5586403}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cpr:ceprdp:1134"},"target_publication_author_list":{"type":"LIST_STRING","value":["Grossman, Gene","Helpman, Elhanan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:nbr:nberwo:4926"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Growth; Technology; Trade"]},"trust":{"type":"FLOAT","value":0.5586403},"target_publication_title":{"type":"STRING","value":"Technology and Trade"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1995-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:eco:journ2:2014-02-5\",\"titles\":[\"Energy Consumption and Economic Growth: Evidence from Low-Income Countries in Sub-Saharan Africa\"],\"abstracts\":[\"The main purpose of this paper is to investigate the causality relationship between energy consumption and economic growth in four low-income countries in Sub-Saharan Africa using the econometrics in time-series methods. Along the estimation process, I use the annual data on energy consumption and real GDP per capita over the years of 1971 and 2011. The results of the ADF unit root test show that the time series are not stationary for all countries at levels, but log of economic growth in Benin and Congo become stationary after taking the differences of the data, and log of energy consumption become stationary for all countries and LGR in Kenya and Zimbabwe are found to be stationary after taking the second differences of the time-series. The findings of the cases of Kenya and Zimbabwe, so no long-run relationship between the variables arises in any country. The Granger causality test indicates that there is a unidirectional causality running from energy use to economic growth in Kenya and no causality linkage between EC and GR in Benin, Congo and Zimbabwe.\"],\"language\":\"und\",\"subjects\":[\"economic growth; energy consumption; causality test\"],\"creators\":[\"Dogan, Eyup\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"International Journal of Energy Economics and Policy\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.econjournals.com/index.php/ijeep/article/download/665/418\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://econjournals.com/index.php/ijeep/article/view/665/418\",\"license\":\"OPEN\",\"hostedby\":\"International Journal of Energy Economics and Policy\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econjournals.com/index.php/ijeep/article/view/665/418\",\"license\":\"OPEN\",\"hostedby\":\"International Journal of Energy Economics and Policy\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://econjournals.com/index.php/ijeep/article/view/665/418\",\"id\":\"oai:doaj.org/article:47968085853a42ed82fbbc04d70da11d\"},\"trust\":0.26295424}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:eco:journ2:2014-02-5"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dogan, Eyup"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:47968085853a42ed82fbbc04d70da11d"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["economic growth; energy consumption; causality test"]},"trust":{"type":"FLOAT","value":0.26295424},"target_publication_title":{"type":"STRING","value":"Energy Consumption and Economic Growth: Evidence from Low-Income Countries in Sub-Saharan Africa"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3105090\",\"titles\":[\"Reinforcement Learning for Routing in Cognitive Radio Ad Hoc Networks\"],\"abstracts\":[\"Cognitive radio (CR) enables unlicensed users (or secondary users, SUs) to sense for and exploit underutilized licensed spectrum owned by the licensed users (or primary users, PUs). Reinforcement learning (RL) is an artificial intelligence approach that enables a node to observe, learn, and make appropriate decisions on action selection in order to maximize network performance. Routing enables a source node to search for a least-cost route to its destination node. While there have been increasing efforts to enhance the traditional RL approach for routing in wireless networks, this research area remains largely unexplored in the domain of routing in CR networks. This paper applies RL in routing and investigates the effects of various features of RL (i.e., reward function, exploitation, and exploration, as well as learning rate) through simulation. New approaches and recommendations are proposed to enhance the features in order to improve the network performance brought about by RL to routing. Simulation results show that the RL parameters of the reward function, exploitation, and exploration, as well as learning rate, must be well regulated, and the new approaches proposed in this paper improves SUs\\u0027 network performance without significantly jeopardizing PUs\\u0027 network performance, specifically SUs\\u0027 interference to PUs.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Al-Rawi, Hasan A. A.\",\"Yau, Kok-Lim Alvin\",\"Mohamad, Hafizal\",\"Ramli, Nordin\",\"Hashim, Wahidah\"],\"publicationdate\":\"2014-07-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"The Scientific World Journal\",\"issn\":\"2356-6140\",\"eissn\":\"1537-744X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2014/960584\",\"type\":\"doi\"},{\"value\":\"PMC4128325\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4128325\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2014/960584\",\"license\":\"OPEN\",\"hostedby\":\"The Scientific World Journal\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2014/960584\",\"license\":\"OPEN\",\"hostedby\":\"The Scientific World Journal\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2014/960584\",\"id\":\"oai:doaj.org/article:fb5e90ee300248439c215c39ffafeb34\"},\"trust\":0.26943475}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3105090"},"target_publication_author_list":{"type":"LIST_STRING","value":["Al-Rawi, Hasan A. A.","Yau, Kok-Lim Alvin","Mohamad, Hafizal","Ramli, Nordin","Hashim, Wahidah"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:fb5e90ee300248439c215c39ffafeb34"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.26943475},"target_publication_title":{"type":"STRING","value":"Reinforcement Learning for Routing in Cognitive Radio Ad Hoc Networks"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:centaur.reading.ac.uk:5908\",\"titles\":[\"Endgame table testing of studies - II\"],\"abstracts\":[\"The van der Heijden Studies Database (Version III) has been reviewed to identify \\u0027Win Studies\\u0027 with sub-7-man positions in the main line which are not wins for White. Some studies were faulted, A number for the first time: 21 of the more interesting escapes by Black are highlighted, themed and discussed.\\r\\n\\r\\n\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Heijden, Harold\",\"Bleicher, Eiko\",\"Haworth, Guy Mccrossan\"],\"publicationdate\":\"2010-07-01\",\"publisher\":\"ARVES, Holland\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Central Archive at the University of Reading\"],\"pids\":[],\"instances\":[{\"url\":\"http://centaur.reading.ac.uk/5908/\",\"license\":\"OPEN\",\"hostedby\":\"Central Archive at the University of Reading\",\"instancetype\":\"Article\"},{\"url\":\"http://centaur.reading.ac.uk/5908/1/2010e_EG_HBH__Endgame_Table_Testing_Studies_2.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Central Archive at the University of Reading\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://centaur.reading.ac.uk/5908/1/2010e_EG_HBH__Endgame_Table_Testing_Studies_2.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Central Archive at the University of Reading\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://centaur.reading.ac.uk/5908/1/2010e_EG_HBH__Endgame_Table_Testing_Studies_2.pdf\",\"id\":\"oai:centaur.reading.ac.uk:5908\"},\"trust\":0.923888}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Central Archive at the University of Reading"},"target_publication_id":{"type":"STRING","value":"oai:centaur.reading.ac.uk:5908"},"target_publication_author_list":{"type":"LIST_STRING","value":["Heijden, Harold","Bleicher, Eiko","Haworth, Guy Mccrossan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:centaur.reading.ac.uk:5908"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"trust":{"type":"FLOAT","value":0.923888},"target_publication_title":{"type":"STRING","value":"Endgame table testing of studies - II"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2010-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b29eed44276144e4e8103a661f9a78b7"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:red:sed005:135\",\"titles\":[\"Search, Money, and Inflation under Private Information\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Random Matching, Private Information, Welfare\"],\"creators\":[\"Ennis, Huberto M.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://repec.org/sed2005/up.3053.1105400618.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://minneapolisfed.org/research/common/pub_detail.cfm?pb_autonum_id\\u003d1028\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://minneapolisfed.org/research/common/pub_detail.cfm?pb_autonum_id\\u003d1028\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://minneapolisfed.org/research/common/pub_detail.cfm?pb_autonum_id\\u003d1028\",\"id\":\"oai:RePEc:fip:fedmem:142\"},\"trust\":0.7391282}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:red:sed005:135"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ennis, Huberto M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fip:fedmem:142"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Random Matching, Private Information, Welfare"]},"trust":{"type":"FLOAT","value":0.7391282},"target_publication_title":{"type":"STRING","value":"Search, Money, and Inflation under Private Information"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:red:sed005:135\",\"titles\":[\"Search, Money, and Inflation under Private Information\"],\"abstracts\":[\"I study a version of the Lagos-Wright (2003) model of monetary exchange in which buyers have private information about their tastes and sellers make take-it-or-leave-it-offers (i.e., have the power to set prices and quantities). The introduction of imperfect information makes the existence of monetary equilibrium a more robust feature of the environment. In general, the model has a monetary steady state in which only a proportion of the agents hold money. Agents who do not hold money cannot participate in trade in the decentralized market. The proportion of agents holding money is endogenous and depends (negatively) on the level of expected inflation. As in Lagos and Wright\\u0027s model, in equilibrium there is a positive welfare cost of expected inflation, but the origins of this cost are very different.\"],\"language\":\"und\",\"subjects\":[\"Random Matching, Private Information, Welfare\"],\"creators\":[\"Ennis, Huberto M.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://repec.org/sed2005/up.3053.1105400618.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"I study a version of the Lagos-Wright (2003) model of monetary exchange in which buyers have private information about their tastes and sellers make take-it-or-leave-it-offers (i.e., have the power to set prices and quantities). The introduction of imperfect information makes the existence of monetary equilibrium a more robust feature of the environment. In general, the model has a monetary steady state in which only a proportion of the agents hold money. Agents who do not hold money cannot participate in trade in the decentralized market. The proportion of agents holding money is endogenous and depends (negatively) on the level of expected inflation. As in Lagos and Wright\\u0027s model, in equilibrium there is a positive welfare cost of expected inflation, but the origins of this cost are very different.\"]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://minneapolisfed.org/research/common/pub_detail.cfm?pb_autonum_id\\u003d1028\",\"id\":\"oai:RePEc:fip:fedmem:142\"},\"trust\":0.1285187}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:red:sed005:135"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ennis, Huberto M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fip:fedmem:142"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Random Matching, Private Information, Welfare"]},"trust":{"type":"FLOAT","value":0.1285187},"target_publication_title":{"type":"STRING","value":"Search, Money, and Inflation under Private Information"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fip:fedmem:142\",\"titles\":[\"Search, money, and inflation under private information\"],\"abstracts\":[\"I study a version of the Lagos-Wright (2003) model of monetary exchange in which buyers have private information about their tastes and sellers make take-it-or-leave-it-offers (i.e., have the power to set prices and quantities). The introduction of imperfect information makes the existence of monetary equilibrium a more robust feature of the environment. In general, the model has a monetary steady state in which only a proportion of the agents hold money. Agents who do not hold money cannot participate in trade in the decentralized market. The proportion of agents holding money is endogenous and depends (negatively) on the level of expected inflation. As in Lagos and Wright\\u0027s model, in equilibrium there is a positive welfare cost of expected inflation, but the origins of this cost are very different.\"],\"language\":\"und\",\"subjects\":[\"Money - Mathematical models\"],\"creators\":[\"Ennis, Huberto M.\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://minneapolisfed.org/research/common/pub_detail.cfm?pb_autonum_id\\u003d1028\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://repec.org/sed2005/up.3053.1105400618.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repec.org/sed2005/up.3053.1105400618.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://repec.org/sed2005/up.3053.1105400618.pdf\",\"id\":\"oai:RePEc:red:sed005:135\"},\"trust\":0.75210726}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fip:fedmem:142"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ennis, Huberto M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:red:sed005:135"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Money - Mathematical models"]},"trust":{"type":"FLOAT","value":0.75210726},"target_publication_title":{"type":"STRING","value":"Search, money, and inflation under private information"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1016399\",\"titles\":[\"Acute reaction to apple-eating.\"],\"abstracts\":[\"\"],\"language\":\"eng\",\"subjects\":[\"Letter\"],\"creators\":[\"Kennedy, P.\"],\"publicationdate\":\"1978-11-25\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC1608712\",\"type\":\"pmc\"},{\"value\":\"10.1136/bmj.2.6150.1501-d\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC1608712\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1136/bmj.2.6150.1501-d\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.gla.ac.uk/95630/1/95630.pdf\",\"id\":\"oai:eprints.gla.ac.uk:95630\"},\"trust\":0.011757851}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1016399"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kennedy, P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.gla.ac.uk:95630"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Letter"]},"trust":{"type":"FLOAT","value":0.011757851},"target_publication_title":{"type":"STRING","value":"Acute reaction to apple-eating."},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"1978-11-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1016399\",\"titles\":[\"Acute reaction to apple-eating.\"],\"abstracts\":[\"\"],\"language\":\"eng\",\"subjects\":[\"Letter\"],\"creators\":[\"Kennedy, P.\"],\"publicationdate\":\"1978-11-25\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC1608712\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC1608712\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://eprints.gla.ac.uk/95630/1/95630.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Enlighten\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.gla.ac.uk/95630/1/95630.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Enlighten\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.gla.ac.uk/95630/1/95630.pdf\",\"id\":\"oai:eprints.gla.ac.uk:95630\"},\"trust\":0.28839707}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1016399"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kennedy, P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.gla.ac.uk:95630"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Letter"]},"trust":{"type":"FLOAT","value":0.28839707},"target_publication_title":{"type":"STRING","value":"Acute reaction to apple-eating."},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"1978-11-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1016399\",\"titles\":[\"Acute reaction to apple-eating.\"],\"abstracts\":[\"\",\"No abstract available.\"],\"language\":\"eng\",\"subjects\":[\"Letter\"],\"creators\":[\"Kennedy, P.\"],\"publicationdate\":\"1978-11-25\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC1608712\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC1608712\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"No abstract available.\"]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.gla.ac.uk/95630/1/95630.pdf\",\"id\":\"oai:eprints.gla.ac.uk:95630\"},\"trust\":0.8510272}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1016399"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kennedy, P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.gla.ac.uk:95630"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Letter"]},"trust":{"type":"FLOAT","value":0.8510272},"target_publication_title":{"type":"STRING","value":"Acute reaction to apple-eating."},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"1978-11-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:813934\",\"titles\":[\"Regulation of Dendritic Cell Migration to the Draining Lymph Node\"],\"abstracts\":[\"Antigen-pulsed dendritic cells (DCs) are used as natural adjuvants for vaccination, but the factors that influence the efficacy of this treatment are poorly understood. We investigated the parameters that affect the migration of subcutaneously injected mouse-mature DCs to the draining lymph node. We found that the efficiency of DC migration varied with the number of injected DCs and that CCR7+/+ DCs migrating to the draining lymph node, but not CCR7−/− DCs that failed to do so, efficiently induced a rapid increase in lymph node cellularity, which was observed before the onset of T cell proliferation. We also report that DC migration could be increased up to 10-fold by preinjection of inflammatory cytokines that increased the expression of the CCR7 ligand CCL21 in lymphatic endothelial cells. The magnitude and quality of CD4+ T cell response was proportional to the number of antigen-carrying DCs that reached the lymph node and could be boosted up to 40-fold by preinjection of tumor necrosis factor that conditioned the tissue for increased DC migration. These results indicate that DC number and tissue inflammation are critical parameters for DC-based vaccination.\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"dendritic cell\",\"T cell priming\",\"CCL21\",\"migration\",\"dendritic cell–based vaccination\"],\"creators\":[\"Martín-Fontecha, Alfonso\",\"Sebastiani, Silvia\",\"Höpken, Uta E.\",\"Uguccioni, Mariagrazia\",\"Lipp, Martin\",\"Lanzavecchia, Antonio\",\"Sallusto, Federica\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"The Rockefeller University Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"The Journal of Experimental Medicine\",\"issn\":\"0022-1007\",\"eissn\":\"1540-9538\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1084/jem.20030448\",\"type\":\"doi\"},{\"value\":\"PMC2194169\",\"type\":\"pmc\"},{\"value\":\"12925677\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2194169\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://edoc.mdc-berlin.de/6787/\",\"license\":\"OPEN\",\"hostedby\":\"Institutional Repository for Molecular Medicine (MDC)\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://edoc.mdc-berlin.de/6787/\",\"license\":\"OPEN\",\"hostedby\":\"Institutional Repository for Molecular Medicine (MDC)\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Institutional Repository for Molecular Medicine (MDC)\",\"url\":\"http://edoc.mdc-berlin.de/6787/\",\"id\":\"oai:edoc.mdc-berlin.de:6787\"},\"trust\":0.73654157}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:813934"},"target_publication_author_list":{"type":"LIST_STRING","value":["Martín-Fontecha, Alfonso","Sebastiani, Silvia","Höpken, Uta E.","Uguccioni, Mariagrazia","Lipp, Martin","Lanzavecchia, Antonio","Sallusto, Federica"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:edoc.mdc-berlin.de:6787"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::3d9e79b22f9d9463a39c3654b873d76b"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","dendritic cell","T cell priming","CCL21","migration","dendritic cell–based vaccination"]},"trust":{"type":"FLOAT","value":0.73654157},"target_publication_title":{"type":"STRING","value":"Regulation of Dendritic Cell Migration to the Draining Lymph Node"},"provenance_datasource_name":{"type":"STRING","value":"Institutional Repository for Molecular Medicine (MDC)"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:edoc.mdc-berlin.de:6787\",\"titles\":[\"Regulation of dendritic cell migration to the draining lymph node: Impact on T lymphocyte traffic and priming\"],\"abstracts\":[\"Antigen-pulsed dendritic cells (DCs) are used as natural adjuvants for vaccination, but the factors that influence the efficacy of this treatment are poorly understood. We investigated the parameters that affect the migration of subcutaneously injected mouse-mature DCs to the draining lymph node. We found that the efficiency of DC migration varied with the number of injected DCs and that CCR7+/+ DCs migrating to the draining lymph node, but not CCR7-/- DCs that failed to do so, efficiently induced a rapid increase in lymph node cellularity, which was observed before the onset of T cell proliferation. We also report that DC migration could be increased up to 10-fold by preinjection of inflammatory cytokines that increased the expression of the CCR7 ligand CCL21 in lymphatic endothelial cells. The magnitude and quality of CD4+ T cell response was proportional to the number of antigen-carrying DCs that reached the lymph node and could be boosted up to 40-fold by preinjection of tumor necrosis factor that conditioned the tissue for increased DC migration. These results indicate that DC number and tissue inflammation are critical parameters for DC-based vaccination.\"],\"language\":\"eng\",\"subjects\":[\"Cancer Research\",\"570 Life Sciences\",\"610 Medical Sciences, Medicine\",\"Dendritic Cell\",\"T Cell Priming\",\"CCL21\",\"Migration\",\"Dendritic Cell-Based Vaccination\",\"Animals\",\"Mice\"],\"creators\":[\"Martin-Fontecha, A.\",\"Sebastiani, S.\",\"Hoepken, U. E.\",\"Uguccioni, M.\",\"Lipp, M.\",\"Lanzavecchia, A.\",\"Sallusto, F.\"],\"publicationdate\":\"2003-08-18\",\"publisher\":\"Rockefeller University Press (U.S.A.)\",\"embargoenddate\":\"\",\"contributor\":[\"MDC Library\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Institutional Repository for Molecular Medicine (MDC)\"],\"pids\":[{\"value\":\"10.1084/jem.20030448\",\"type\":\"doi\"},{\"value\":\"PMC2194169\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://edoc.mdc-berlin.de/6787/\",\"license\":\"OPEN\",\"hostedby\":\"Institutional Repository for Molecular Medicine (MDC)\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2194169\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2194169\",\"id\":\"oai:europepmc.org:813934\"},\"trust\":0.5248946}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Institutional Repository for Molecular Medicine (MDC)"},"target_publication_id":{"type":"STRING","value":"oai:edoc.mdc-berlin.de:6787"},"target_publication_author_list":{"type":"LIST_STRING","value":["Martin-Fontecha, A.","Sebastiani, S.","Hoepken, U. E.","Uguccioni, M.","Lipp, M.","Lanzavecchia, A.","Sallusto, F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:813934"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Cancer Research","570 Life Sciences","610 Medical Sciences, Medicine","Dendritic Cell","T Cell Priming","CCL21","Migration","Dendritic Cell-Based Vaccination","Animals","Mice"]},"trust":{"type":"FLOAT","value":0.5248946},"target_publication_title":{"type":"STRING","value":"Regulation of dendritic cell migration to the draining lymph node: Impact on T lymphocyte traffic and priming"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2003-08-18"},"target_datasource_id":{"type":"STRING","value":"10|driver______::3d9e79b22f9d9463a39c3654b873d76b"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:edoc.mdc-berlin.de:6787\",\"titles\":[\"Regulation of dendritic cell migration to the draining lymph node: Impact on T lymphocyte traffic and priming\"],\"abstracts\":[\"Antigen-pulsed dendritic cells (DCs) are used as natural adjuvants for vaccination, but the factors that influence the efficacy of this treatment are poorly understood. We investigated the parameters that affect the migration of subcutaneously injected mouse-mature DCs to the draining lymph node. We found that the efficiency of DC migration varied with the number of injected DCs and that CCR7+/+ DCs migrating to the draining lymph node, but not CCR7-/- DCs that failed to do so, efficiently induced a rapid increase in lymph node cellularity, which was observed before the onset of T cell proliferation. We also report that DC migration could be increased up to 10-fold by preinjection of inflammatory cytokines that increased the expression of the CCR7 ligand CCL21 in lymphatic endothelial cells. The magnitude and quality of CD4+ T cell response was proportional to the number of antigen-carrying DCs that reached the lymph node and could be boosted up to 40-fold by preinjection of tumor necrosis factor that conditioned the tissue for increased DC migration. These results indicate that DC number and tissue inflammation are critical parameters for DC-based vaccination.\"],\"language\":\"eng\",\"subjects\":[\"Cancer Research\",\"570 Life Sciences\",\"610 Medical Sciences, Medicine\",\"Dendritic Cell\",\"T Cell Priming\",\"CCL21\",\"Migration\",\"Dendritic Cell-Based Vaccination\",\"Animals\",\"Mice\"],\"creators\":[\"Martin-Fontecha, A.\",\"Sebastiani, S.\",\"Hoepken, U. E.\",\"Uguccioni, M.\",\"Lipp, M.\",\"Lanzavecchia, A.\",\"Sallusto, F.\"],\"publicationdate\":\"2003-08-18\",\"publisher\":\"Rockefeller University Press (U.S.A.)\",\"embargoenddate\":\"\",\"contributor\":[\"MDC Library\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Institutional Repository for Molecular Medicine (MDC)\"],\"pids\":[{\"value\":\"10.1084/jem.20030448\",\"type\":\"doi\"},{\"value\":\"12925677\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://edoc.mdc-berlin.de/6787/\",\"license\":\"OPEN\",\"hostedby\":\"Institutional Repository for Molecular Medicine (MDC)\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"12925677\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2194169\",\"id\":\"oai:europepmc.org:813934\"},\"trust\":0.5248946}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Institutional Repository for Molecular Medicine (MDC)"},"target_publication_id":{"type":"STRING","value":"oai:edoc.mdc-berlin.de:6787"},"target_publication_author_list":{"type":"LIST_STRING","value":["Martin-Fontecha, A.","Sebastiani, S.","Hoepken, U. E.","Uguccioni, M.","Lipp, M.","Lanzavecchia, A.","Sallusto, F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:813934"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Cancer Research","570 Life Sciences","610 Medical Sciences, Medicine","Dendritic Cell","T Cell Priming","CCL21","Migration","Dendritic Cell-Based Vaccination","Animals","Mice"]},"trust":{"type":"FLOAT","value":0.5248946},"target_publication_title":{"type":"STRING","value":"Regulation of dendritic cell migration to the draining lymph node: Impact on T lymphocyte traffic and priming"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2003-08-18"},"target_datasource_id":{"type":"STRING","value":"10|driver______::3d9e79b22f9d9463a39c3654b873d76b"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:hub.hku.hk:10722/195705\",\"titles\":[\"Integrated Text Mining and Chemoinformatics Analysis Associates Diet to Health Benefit at Molecular Level\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Jensen, K.\",\"Kouskoumvekaki, I.\",\"Panagiotou, I.\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"United States\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"HKU Scholars Hub\"],\"pids\":[{\"value\":\"10.1371/journal.pcbi.1003432\",\"type\":\"doi\"},{\"value\":\"PMC3894162\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/10722/195705\",\"license\":\"OPEN\",\"hostedby\":\"HKU Scholars Hub\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3894162\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3894162\",\"id\":\"oai:europepmc.org:2881869\"},\"trust\":0.009155393}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"HKU Scholars Hub"},"target_publication_id":{"type":"STRING","value":"oai:hub.hku.hk:10722/195705"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jensen, K.","Kouskoumvekaki, I.","Panagiotou, I."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2881869"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.009155393},"target_publication_title":{"type":"STRING","value":"Integrated Text Mining and Chemoinformatics Analysis Associates Diet to Health Benefit at Molecular Level"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d707329bece455a462b58ce00d1194c9"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:hub.hku.hk:10722/195705\",\"titles\":[\"Integrated Text Mining and Chemoinformatics Analysis Associates Diet to Health Benefit at Molecular Level\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Jensen, K.\",\"Kouskoumvekaki, I.\",\"Panagiotou, I.\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"United States\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"HKU Scholars Hub\"],\"pids\":[{\"value\":\"10.1371/journal.pcbi.1003432\",\"type\":\"doi\"},{\"value\":\"24453957\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/10722/195705\",\"license\":\"OPEN\",\"hostedby\":\"HKU Scholars Hub\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"24453957\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3894162\",\"id\":\"oai:europepmc.org:2881869\"},\"trust\":0.009155393}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"HKU Scholars Hub"},"target_publication_id":{"type":"STRING","value":"oai:hub.hku.hk:10722/195705"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jensen, K.","Kouskoumvekaki, I.","Panagiotou, I."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2881869"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.009155393},"target_publication_title":{"type":"STRING","value":"Integrated Text Mining and Chemoinformatics Analysis Associates Diet to Health Benefit at Molecular Level"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d707329bece455a462b58ce00d1194c9"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:hub.hku.hk:10722/195705\",\"titles\":[\"Integrated Text Mining and Chemoinformatics Analysis Associates Diet to Health Benefit at Molecular Level\"],\"abstracts\":[\"Awareness that disease susceptibility is not only dependent on genetic make up, but can be affected by lifestyle decisions, has brought more attention to the role of diet. However, food is often treated as a black box, or the focus is limited to few, well-studied compounds, such as polyphenols, lipids and nutrients. In this work, we applied text mining and Naïve Bayes classification to assemble the knowledge space of food-phytochemical and food-disease associations, where we distinguish between disease prevention/amelioration and disease progression. We subsequently searched for frequently occurring phytochemical-disease pairs and we identified 20,654 phytochemicals from 16,102 plants associated to 1,592 human disease phenotypes. We selected colon cancer as a case study and analyzed our results in three directions; i) one stop legacy knowledge-shop for the effect of food on disease, ii) discovery of novel bioactive compounds with drug-like properties, and iii) discovery of novel health benefits from foods. This works represents a systematized approach to the association of food with health effect, and provides the phytochemical layer of information for nutritional systems biology research.\",\"Author Summary Until recently diet was considered a supplier of energy and building blocks for growth and development. However, current research in the field suggests that the complex mixture of natural compounds present in our food has a variety of biological activities and plays an important role for health maintenance and disease prevention. The mixture of bioactive components of our diet interacts with the human body through complex processes that modify network function and stability. In order to increase our limited understanding on how components of food affect human health, we borrow methods that are well established in medical and pharmacological research. By using text mining in PubMed abstracts we collected more than 20,000 diverse chemical structures present in our diet, while by applying chemoinformatics methods we could systematically explore their numerous targets. Integrating the above datasets with food-disease associations allowed us to use a statistical framework for identifying specific phytochemicals as perturbators of drug targets and disease related pathways.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Jensen, K.\",\"Kouskoumvekaki, I.\",\"Panagiotou, I.\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"United States\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"HKU Scholars Hub\"],\"pids\":[{\"value\":\"10.1371/journal.pcbi.1003432\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/10722/195705\",\"license\":\"OPEN\",\"hostedby\":\"HKU Scholars Hub\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"Awareness that disease susceptibility is not only dependent on genetic make up, but can be affected by lifestyle decisions, has brought more attention to the role of diet. However, food is often treated as a black box, or the focus is limited to few, well-studied compounds, such as polyphenols, lipids and nutrients. In this work, we applied text mining and Naïve Bayes classification to assemble the knowledge space of food-phytochemical and food-disease associations, where we distinguish between disease prevention/amelioration and disease progression. We subsequently searched for frequently occurring phytochemical-disease pairs and we identified 20,654 phytochemicals from 16,102 plants associated to 1,592 human disease phenotypes. We selected colon cancer as a case study and analyzed our results in three directions; i) one stop legacy knowledge-shop for the effect of food on disease, ii) discovery of novel bioactive compounds with drug-like properties, and iii) discovery of novel health benefits from foods. This works represents a systematized approach to the association of food with health effect, and provides the phytochemical layer of information for nutritional systems biology research.\",\"Author Summary Until recently diet was considered a supplier of energy and building blocks for growth and development. However, current research in the field suggests that the complex mixture of natural compounds present in our food has a variety of biological activities and plays an important role for health maintenance and disease prevention. The mixture of bioactive components of our diet interacts with the human body through complex processes that modify network function and stability. In order to increase our limited understanding on how components of food affect human health, we borrow methods that are well established in medical and pharmacological research. By using text mining in PubMed abstracts we collected more than 20,000 diverse chemical structures present in our diet, while by applying chemoinformatics methods we could systematically explore their numerous targets. Integrating the above datasets with food-disease associations allowed us to use a statistical framework for identifying specific phytochemicals as perturbators of drug targets and disease related pathways.\"]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3894162\",\"id\":\"oai:europepmc.org:2881869\"},\"trust\":0.5782962}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"HKU Scholars Hub"},"target_publication_id":{"type":"STRING","value":"oai:hub.hku.hk:10722/195705"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jensen, K.","Kouskoumvekaki, I.","Panagiotou, I."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2881869"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.5782962},"target_publication_title":{"type":"STRING","value":"Integrated Text Mining and Chemoinformatics Analysis Associates Diet to Health Benefit at Molecular Level"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d707329bece455a462b58ce00d1194c9"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2881869\",\"titles\":[\"Integrated Text Mining and Chemoinformatics Analysis Associates Diet to Health Benefit at Molecular Level\"],\"abstracts\":[\"Awareness that disease susceptibility is not only dependent on genetic make up, but can be affected by lifestyle decisions, has brought more attention to the role of diet. However, food is often treated as a black box, or the focus is limited to few, well-studied compounds, such as polyphenols, lipids and nutrients. In this work, we applied text mining and Naïve Bayes classification to assemble the knowledge space of food-phytochemical and food-disease associations, where we distinguish between disease prevention/amelioration and disease progression. We subsequently searched for frequently occurring phytochemical-disease pairs and we identified 20,654 phytochemicals from 16,102 plants associated to 1,592 human disease phenotypes. We selected colon cancer as a case study and analyzed our results in three directions; i) one stop legacy knowledge-shop for the effect of food on disease, ii) discovery of novel bioactive compounds with drug-like properties, and iii) discovery of novel health benefits from foods. This works represents a systematized approach to the association of food with health effect, and provides the phytochemical layer of information for nutritional systems biology research.\",\"Author Summary Until recently diet was considered a supplier of energy and building blocks for growth and development. However, current research in the field suggests that the complex mixture of natural compounds present in our food has a variety of biological activities and plays an important role for health maintenance and disease prevention. The mixture of bioactive components of our diet interacts with the human body through complex processes that modify network function and stability. In order to increase our limited understanding on how components of food affect human health, we borrow methods that are well established in medical and pharmacological research. By using text mining in PubMed abstracts we collected more than 20,000 diverse chemical structures present in our diet, while by applying chemoinformatics methods we could systematically explore their numerous targets. Integrating the above datasets with food-disease associations allowed us to use a statistical framework for identifying specific phytochemicals as perturbators of drug targets and disease related pathways.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\",\"Biology\",\"Systems Biology\",\"Chemistry\",\"Computational Chemistry\",\"Medicinal Chemistry\",\"Phytochemistry\",\"Computer Science\",\"Natural Language Processing\",\"Text Mining\",\"Medicine\",\"Nutrition\"],\"creators\":[\"Jensen, Kasper\",\"Panagiotou, Gianni\",\"Kouskoumvekaki, Irene\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"Public Library of Science\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"PLoS Computational Biology\",\"issn\":\"1553-734X\",\"eissn\":\"1553-7358\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1371/journal.pcbi.1003432\",\"type\":\"doi\"},{\"value\":\"PMC3894162\",\"type\":\"pmc\"},{\"value\":\"24453957\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3894162\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10722/195705\",\"license\":\"OPEN\",\"hostedby\":\"HKU Scholars Hub\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10722/195705\",\"license\":\"OPEN\",\"hostedby\":\"HKU Scholars Hub\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"HKU Scholars Hub\",\"url\":\"http://hdl.handle.net/10722/195705\",\"id\":\"oai:hub.hku.hk:10722/195705\"},\"trust\":0.92109257}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2881869"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jensen, Kasper","Panagiotou, Gianni","Kouskoumvekaki, Irene"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hub.hku.hk:10722/195705"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::d707329bece455a462b58ce00d1194c9"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article","Biology","Systems Biology","Chemistry","Computational Chemistry","Medicinal Chemistry","Phytochemistry","Computer Science","Natural Language Processing","Text Mining","Medicine","Nutrition"]},"trust":{"type":"FLOAT","value":0.92109257},"target_publication_title":{"type":"STRING","value":"Integrated Text Mining and Chemoinformatics Analysis Associates Diet to Health Benefit at Molecular Level"},"provenance_datasource_name":{"type":"STRING","value":"HKU Scholars Hub"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:0711.2506\",\"titles\":[\"Effect of initial configuration on network-based recommendation\"],\"abstracts\":[\" In this paper, based on a weighted object network, we propose a\\nrecommendation algorithm, which is sensitive to the configuration of initial\\nresource distribution. Even under the simplest case with binary resource, the\\ncurrent algorithm has remarkably higher accuracy than the widely applied global\\nranking method and collaborative filtering. Furthermore, we introduce a free\\nparameter $\\\\beta$ to regulate the initial configuration of resource. The\\nnumerical results indicate that decreasing the initial resource located on\\npopular objects can further improve the algorithmic accuracy. More\\nsignificantly, we argue that a better algorithm should simultaneously have\\nhigher accuracy and be more personal. According to a newly proposed measure\\nabout the degree of personalization, we demonstrate that a degree-dependent\\ninitial configuration can outperform the uniform case for both accuracy and\\npersonalization strength.\\n\",\"Comment: 4 pages and 3 figures\"],\"language\":\"eng\",\"subjects\":[\"Physics - Physics and Society\"],\"creators\":[\"Zhou, Tao\",\"Jiang, Luo-Luo\",\"Su, Ri-Qi\",\"Zhang, Yi-Cheng\"],\"publicationdate\":\"2007-11-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1209/0295-5075/81/58004\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/0711.2506\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://doc.rero.ch/record/9072/files/zhang_eic.pdf\",\"license\":\"OPEN\",\"hostedby\":\"RERO DOC Digital Library\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://doc.rero.ch/record/9072/files/zhang_eic.pdf\",\"license\":\"OPEN\",\"hostedby\":\"RERO DOC Digital Library\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"RERO DOC Digital Library\",\"url\":\"http://doc.rero.ch/record/9072/files/zhang_eic.pdf\",\"id\":\"oai:doc.rero.ch:20080409085926-XZ\"},\"trust\":0.4904104}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:0711.2506"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zhou, Tao","Jiang, Luo-Luo","Su, Ri-Qi","Zhang, Yi-Cheng"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doc.rero.ch:20080409085926-XZ"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::846c260d715e5b854ffad5f70a516c88"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics - Physics and Society"]},"trust":{"type":"FLOAT","value":0.4904104},"target_publication_title":{"type":"STRING","value":"Effect of initial configuration on network-based recommendation"},"provenance_datasource_name":{"type":"STRING","value":"RERO DOC Digital Library"},"target_dateofacceptance":{"type":"DATE","value":"2007-11-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:doc.rero.ch:20080409085926-XZ\",\"titles\":[\"Effect of initial configuration on network-based recommendation\"],\"abstracts\":[\"In this paper, based on a weighted object network, we propose a recommendation algorithm, which is sensitive to the configuration of initial resource distribution. Even under the simplest case with binary resource, the current algorithm has remarkably higher accuracy than the widely applied global ranking method and collaborative filtering. Furthermore, we introduce a free parameter β to regulate the initial configuration of resource. The numerical results indicate that decreasing the initial resource located on popular objects can further improve the algorithmic accuracy. More significantly, we argue that a better algorithm should simultaneously have higher accuracy and be more personal. According to a newly proposed measure about the degree of personalization, we demonstrate that a degree-dependent initial configuration can outperform the uniform case for both accuracy and personalization strength.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Zhou, Tao\",\"Jiang, L. -L\",\"Su, R. -Q\",\"Zhang, Yi-Cheng\"],\"publicationdate\":\"2008-04-09\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"RERO DOC Digital Library\"],\"pids\":[{\"value\":\"10.1209/0295-5075/81/58004\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://doc.rero.ch/record/9072/files/zhang_eic.pdf\",\"license\":\"OPEN\",\"hostedby\":\"RERO DOC Digital Library\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1209/0295-5075/81/58004\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0711.2506\",\"id\":\"oai:arXiv.org:0711.2506\"},\"trust\":0.22504503}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"RERO DOC Digital Library"},"target_publication_id":{"type":"STRING","value":"oai:doc.rero.ch:20080409085926-XZ"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zhou, Tao","Jiang, L. -L","Su, R. -Q","Zhang, Yi-Cheng"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0711.2506"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.22504503},"target_publication_title":{"type":"STRING","value":"Effect of initial configuration on network-based recommendation"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2008-04-09"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::846c260d715e5b854ffad5f70a516c88"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:doc.rero.ch:20080409085926-XZ\",\"titles\":[\"Effect of initial configuration on network-based recommendation\"],\"abstracts\":[\"In this paper, based on a weighted object network, we propose a recommendation algorithm, which is sensitive to the configuration of initial resource distribution. Even under the simplest case with binary resource, the current algorithm has remarkably higher accuracy than the widely applied global ranking method and collaborative filtering. Furthermore, we introduce a free parameter β to regulate the initial configuration of resource. The numerical results indicate that decreasing the initial resource located on popular objects can further improve the algorithmic accuracy. More significantly, we argue that a better algorithm should simultaneously have higher accuracy and be more personal. According to a newly proposed measure about the degree of personalization, we demonstrate that a degree-dependent initial configuration can outperform the uniform case for both accuracy and personalization strength.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Zhou, Tao\",\"Jiang, L. -L\",\"Su, R. -Q\",\"Zhang, Yi-Cheng\"],\"publicationdate\":\"2008-04-09\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"RERO DOC Digital Library\"],\"pids\":[{\"value\":\"10.1209/0295-5075/81/58004\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://doc.rero.ch/record/9072/files/zhang_eic.pdf\",\"license\":\"OPEN\",\"hostedby\":\"RERO DOC Digital Library\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1209/0295-5075/81/58004\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0711.2506\",\"id\":\"oai:arXiv.org:0711.2506\"},\"trust\":0.22504503}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"RERO DOC Digital Library"},"target_publication_id":{"type":"STRING","value":"oai:doc.rero.ch:20080409085926-XZ"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zhou, Tao","Jiang, L. -L","Su, R. -Q","Zhang, Yi-Cheng"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0711.2506"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.22504503},"target_publication_title":{"type":"STRING","value":"Effect of initial configuration on network-based recommendation"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2008-04-09"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::846c260d715e5b854ffad5f70a516c88"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:doc.rero.ch:20080409085926-XZ\",\"titles\":[\"Effect of initial configuration on network-based recommendation\"],\"abstracts\":[\"In this paper, based on a weighted object network, we propose a recommendation algorithm, which is sensitive to the configuration of initial resource distribution. Even under the simplest case with binary resource, the current algorithm has remarkably higher accuracy than the widely applied global ranking method and collaborative filtering. Furthermore, we introduce a free parameter β to regulate the initial configuration of resource. The numerical results indicate that decreasing the initial resource located on popular objects can further improve the algorithmic accuracy. More significantly, we argue that a better algorithm should simultaneously have higher accuracy and be more personal. According to a newly proposed measure about the degree of personalization, we demonstrate that a degree-dependent initial configuration can outperform the uniform case for both accuracy and personalization strength.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Zhou, Tao\",\"Jiang, L. -L\",\"Su, R. -Q\",\"Zhang, Yi-Cheng\"],\"publicationdate\":\"2008-04-09\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"RERO DOC Digital Library\"],\"pids\":[],\"instances\":[{\"url\":\"http://doc.rero.ch/record/9072/files/zhang_eic.pdf\",\"license\":\"OPEN\",\"hostedby\":\"RERO DOC Digital Library\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/0711.2506\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/0711.2506\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0711.2506\",\"id\":\"oai:arXiv.org:0711.2506\"},\"trust\":0.36830515}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"RERO DOC Digital Library"},"target_publication_id":{"type":"STRING","value":"oai:doc.rero.ch:20080409085926-XZ"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zhou, Tao","Jiang, L. -L","Su, R. -Q","Zhang, Yi-Cheng"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0711.2506"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.36830515},"target_publication_title":{"type":"STRING","value":"Effect of initial configuration on network-based recommendation"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2008-04-09"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::846c260d715e5b854ffad5f70a516c88"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/42919\",\"titles\":[\"Niños, canoas, playa y mar\",\"701064\",\"701064\"],\"abstracts\":[\"Niños, canoas, playa y mar. El Cocalito. Buenaventura, 01-11-1999\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"La Naturaleza\",\"Los Paisajes\",\"BUENAVENTURA\",\"GERMAN PARRA\"],\"creators\":[\"Parra, German\"],\"publicationdate\":\"1999-11-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"GERMAN PARRA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/42919\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/33924\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/33924\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/33924\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/33924\"},\"trust\":0.35056967}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/42919"},"target_publication_author_list":{"type":"LIST_STRING","value":["Parra, German"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/33924"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["La Naturaleza","Los Paisajes","BUENAVENTURA","GERMAN PARRA"]},"trust":{"type":"FLOAT","value":0.35056967},"target_publication_title":{"type":"STRING","value":"Niños, canoas, playa y mar"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1999-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/33924\",\"titles\":[\"Niños, canoas, playa y mar\",\"701064\",\"701064\"],\"abstracts\":[\"Niños, canoas, playa y mar. El Cocalito. Buenaventura, 01-11-1999\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"El Transporte\",\"Las Canoas y Balsas\",\"BUENAVENTURA\",\"GERMAN PARRA\"],\"creators\":[\"Parra, German\"],\"publicationdate\":\"1999-11-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"GERMAN PARRA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/33924\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/42919\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/42919\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/42919\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/42919\"},\"trust\":0.20236158}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/33924"},"target_publication_author_list":{"type":"LIST_STRING","value":["Parra, German"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/42919"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["El Transporte","Las Canoas y Balsas","BUENAVENTURA","GERMAN PARRA"]},"trust":{"type":"FLOAT","value":0.20236158},"target_publication_title":{"type":"STRING","value":"Niños, canoas, playa y mar"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1999-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ir.lib.hiroshima-u.ac.jp:00001851\",\"titles\":[\"算法通書 巻之上\",\"サンポウ ツウショ\",\"Sanpō tsūsho\"],\"abstracts\":[\"原本の版次:再版\",\"原本の出版地:東京\",\"原本の出版者:山崎清七\",\"原本の出版年(西暦):1879\",\"原本の出版年(和暦):明治12\",\"原本の大きさ:18cm\",\"原本の頁数:52丁\",\"原本への注記:和装本\",\"原本の価格:50銭\",\"全ページの画像が閲覧できます\"],\"language\":\"jpn\",\"subjects\":[\"算術\"],\"creators\":[\"古谷道生(定吉)編\",\"長谷川弘(善左衛門)閲\",\"フルヤ ドウセイ\",\"Furuya Dōsei\",\"ハセガワ ヒロム\",\"Hasegawa Hiromu\"],\"publicationdate\":\"2001-05-14\",\"publisher\":\"Hiroshima Daigaku Fuzoku Toshokan\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Hiroshima University Institutional Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001851\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"},{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001853\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001853\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Hiroshima University Institutional Repository\",\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001853\",\"id\":\"oai:ir.lib.hiroshima-u.ac.jp:00001853\"},\"trust\":0.1059162}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Hiroshima University Institutional Repository"},"target_publication_id":{"type":"STRING","value":"oai:ir.lib.hiroshima-u.ac.jp:00001851"},"target_publication_author_list":{"type":"LIST_STRING","value":["古谷道生(定吉)編","長谷川弘(善左衛門)閲","フルヤ ドウセイ","Furuya Dōsei","ハセガワ ヒロム","Hasegawa Hiromu"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ir.lib.hiroshima-u.ac.jp:00001853"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::eba0dc302bcd9a273f8bbb72be3a687b"},"target_publication_subject_list":{"type":"LIST_STRING","value":["算術"]},"trust":{"type":"FLOAT","value":0.1059162},"target_publication_title":{"type":"STRING","value":"算法通書 巻之上"},"provenance_datasource_name":{"type":"STRING","value":"Hiroshima University Institutional Repository"},"target_dateofacceptance":{"type":"DATE","value":"2001-05-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::eba0dc302bcd9a273f8bbb72be3a687b"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ir.lib.hiroshima-u.ac.jp:00001851\",\"titles\":[\"算法通書 巻之上\",\"サンポウ ツウショ\",\"Sanpō tsūsho\"],\"abstracts\":[\"原本の版次:再版\",\"原本の出版地:東京\",\"原本の出版者:山崎清七\",\"原本の出版年(西暦):1879\",\"原本の出版年(和暦):明治12\",\"原本の大きさ:18cm\",\"原本の頁数:52丁\",\"原本への注記:和装本\",\"原本の価格:50銭\",\"全ページの画像が閲覧できます\"],\"language\":\"jpn\",\"subjects\":[\"算術\"],\"creators\":[\"古谷道生(定吉)編\",\"長谷川弘(善左衛門)閲\",\"フルヤ ドウセイ\",\"Furuya Dōsei\",\"ハセガワ ヒロム\",\"Hasegawa Hiromu\"],\"publicationdate\":\"2001-05-14\",\"publisher\":\"Hiroshima Daigaku Fuzoku Toshokan\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Hiroshima University Institutional Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001851\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"},{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001852\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001852\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Hiroshima University Institutional Repository\",\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001852\",\"id\":\"oai:ir.lib.hiroshima-u.ac.jp:00001852\"},\"trust\":0.38984805}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Hiroshima University Institutional Repository"},"target_publication_id":{"type":"STRING","value":"oai:ir.lib.hiroshima-u.ac.jp:00001851"},"target_publication_author_list":{"type":"LIST_STRING","value":["古谷道生(定吉)編","長谷川弘(善左衛門)閲","フルヤ ドウセイ","Furuya Dōsei","ハセガワ ヒロム","Hasegawa Hiromu"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ir.lib.hiroshima-u.ac.jp:00001852"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::eba0dc302bcd9a273f8bbb72be3a687b"},"target_publication_subject_list":{"type":"LIST_STRING","value":["算術"]},"trust":{"type":"FLOAT","value":0.38984805},"target_publication_title":{"type":"STRING","value":"算法通書 巻之上"},"provenance_datasource_name":{"type":"STRING","value":"Hiroshima University Institutional Repository"},"target_dateofacceptance":{"type":"DATE","value":"2001-05-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::eba0dc302bcd9a273f8bbb72be3a687b"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ir.lib.hiroshima-u.ac.jp:00001853\",\"titles\":[\"算法通書 巻之下\",\"サンポウ ツウショ\",\"Sanpō tsūsho\"],\"abstracts\":[\"原本の版次:再版\",\"原本の出版地:東京\",\"原本の出版者:山崎清七\",\"原本の出版年(西暦):1879\",\"原本の出版年(和暦):明治12\",\"原本の大きさ:18cm\",\"原本の頁数:103-187丁\",\"原本への注記:和装本\",\"全ページの画像が閲覧できます\"],\"language\":\"jpn\",\"subjects\":[\"算術\"],\"creators\":[\"古谷道生(定吉)編\",\"長谷川弘(善左衛門)閲\",\"フルヤ ドウセイ\",\"Furuya Dōsei\",\"ハセガワ ヒロム\",\"Hasegawa Hiromu\"],\"publicationdate\":\"2001-05-14\",\"publisher\":\"Hiroshima Daigaku Fuzoku Toshokan\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Hiroshima University Institutional Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001853\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"},{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001851\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001851\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Hiroshima University Institutional Repository\",\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001851\",\"id\":\"oai:ir.lib.hiroshima-u.ac.jp:00001851\"},\"trust\":0.9622704}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Hiroshima University Institutional Repository"},"target_publication_id":{"type":"STRING","value":"oai:ir.lib.hiroshima-u.ac.jp:00001853"},"target_publication_author_list":{"type":"LIST_STRING","value":["古谷道生(定吉)編","長谷川弘(善左衛門)閲","フルヤ ドウセイ","Furuya Dōsei","ハセガワ ヒロム","Hasegawa Hiromu"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ir.lib.hiroshima-u.ac.jp:00001851"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::eba0dc302bcd9a273f8bbb72be3a687b"},"target_publication_subject_list":{"type":"LIST_STRING","value":["算術"]},"trust":{"type":"FLOAT","value":0.9622704},"target_publication_title":{"type":"STRING","value":"算法通書 巻之下"},"provenance_datasource_name":{"type":"STRING","value":"Hiroshima University Institutional Repository"},"target_dateofacceptance":{"type":"DATE","value":"2001-05-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::eba0dc302bcd9a273f8bbb72be3a687b"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ir.lib.hiroshima-u.ac.jp:00001853\",\"titles\":[\"算法通書 巻之下\",\"サンポウ ツウショ\",\"Sanpō tsūsho\"],\"abstracts\":[\"原本の版次:再版\",\"原本の出版地:東京\",\"原本の出版者:山崎清七\",\"原本の出版年(西暦):1879\",\"原本の出版年(和暦):明治12\",\"原本の大きさ:18cm\",\"原本の頁数:103-187丁\",\"原本への注記:和装本\",\"全ページの画像が閲覧できます\"],\"language\":\"jpn\",\"subjects\":[\"算術\"],\"creators\":[\"古谷道生(定吉)編\",\"長谷川弘(善左衛門)閲\",\"フルヤ ドウセイ\",\"Furuya Dōsei\",\"ハセガワ ヒロム\",\"Hasegawa Hiromu\"],\"publicationdate\":\"2001-05-14\",\"publisher\":\"Hiroshima Daigaku Fuzoku Toshokan\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Hiroshima University Institutional Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001853\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"},{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001852\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001852\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Hiroshima University Institutional Repository\",\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001852\",\"id\":\"oai:ir.lib.hiroshima-u.ac.jp:00001852\"},\"trust\":0.6272403}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Hiroshima University Institutional Repository"},"target_publication_id":{"type":"STRING","value":"oai:ir.lib.hiroshima-u.ac.jp:00001853"},"target_publication_author_list":{"type":"LIST_STRING","value":["古谷道生(定吉)編","長谷川弘(善左衛門)閲","フルヤ ドウセイ","Furuya Dōsei","ハセガワ ヒロム","Hasegawa Hiromu"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ir.lib.hiroshima-u.ac.jp:00001852"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::eba0dc302bcd9a273f8bbb72be3a687b"},"target_publication_subject_list":{"type":"LIST_STRING","value":["算術"]},"trust":{"type":"FLOAT","value":0.6272403},"target_publication_title":{"type":"STRING","value":"算法通書 巻之下"},"provenance_datasource_name":{"type":"STRING","value":"Hiroshima University Institutional Repository"},"target_dateofacceptance":{"type":"DATE","value":"2001-05-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::eba0dc302bcd9a273f8bbb72be3a687b"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ir.lib.hiroshima-u.ac.jp:00001852\",\"titles\":[\"算法通書 巻之中\",\"サンポウ ツウショ\",\"Sanpō tsūsho\"],\"abstracts\":[\"原本の版次:再版\",\"原本の出版地:東京\",\"原本の出版者:山崎清七\",\"原本の出版年(西暦):1879\",\"原本の出版年(和暦):明治12\",\"原本の大きさ:18cm\",\"原本の頁数:53-102丁\",\"原本への注記:和装本\",\"全ページの画像が閲覧できます\"],\"language\":\"jpn\",\"subjects\":[\"算術\"],\"creators\":[\"古谷道生(定吉)編\",\"長谷川弘(善左衛門)閲\",\"フルヤ ドウセイ\",\"Furuya Dōsei\",\"ハセガワ ヒロム\",\"Hasegawa Hiromu\"],\"publicationdate\":\"2001-05-14\",\"publisher\":\"Hiroshima Daigaku Fuzoku Toshokan\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Hiroshima University Institutional Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001852\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"},{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001851\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001851\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Hiroshima University Institutional Repository\",\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001851\",\"id\":\"oai:ir.lib.hiroshima-u.ac.jp:00001851\"},\"trust\":0.44233066}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Hiroshima University Institutional Repository"},"target_publication_id":{"type":"STRING","value":"oai:ir.lib.hiroshima-u.ac.jp:00001852"},"target_publication_author_list":{"type":"LIST_STRING","value":["古谷道生(定吉)編","長谷川弘(善左衛門)閲","フルヤ ドウセイ","Furuya Dōsei","ハセガワ ヒロム","Hasegawa Hiromu"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ir.lib.hiroshima-u.ac.jp:00001851"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::eba0dc302bcd9a273f8bbb72be3a687b"},"target_publication_subject_list":{"type":"LIST_STRING","value":["算術"]},"trust":{"type":"FLOAT","value":0.44233066},"target_publication_title":{"type":"STRING","value":"算法通書 巻之中"},"provenance_datasource_name":{"type":"STRING","value":"Hiroshima University Institutional Repository"},"target_dateofacceptance":{"type":"DATE","value":"2001-05-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::eba0dc302bcd9a273f8bbb72be3a687b"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ir.lib.hiroshima-u.ac.jp:00001852\",\"titles\":[\"算法通書 巻之中\",\"サンポウ ツウショ\",\"Sanpō tsūsho\"],\"abstracts\":[\"原本の版次:再版\",\"原本の出版地:東京\",\"原本の出版者:山崎清七\",\"原本の出版年(西暦):1879\",\"原本の出版年(和暦):明治12\",\"原本の大きさ:18cm\",\"原本の頁数:53-102丁\",\"原本への注記:和装本\",\"全ページの画像が閲覧できます\"],\"language\":\"jpn\",\"subjects\":[\"算術\"],\"creators\":[\"古谷道生(定吉)編\",\"長谷川弘(善左衛門)閲\",\"フルヤ ドウセイ\",\"Furuya Dōsei\",\"ハセガワ ヒロム\",\"Hasegawa Hiromu\"],\"publicationdate\":\"2001-05-14\",\"publisher\":\"Hiroshima Daigaku Fuzoku Toshokan\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Hiroshima University Institutional Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001852\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"},{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001853\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001853\",\"license\":\"OPEN\",\"hostedby\":\"Hiroshima University Institutional Repository\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Hiroshima University Institutional Repository\",\"url\":\"http://ir.lib.hiroshima-u.ac.jp/00001853\",\"id\":\"oai:ir.lib.hiroshima-u.ac.jp:00001853\"},\"trust\":0.93243486}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Hiroshima University Institutional Repository"},"target_publication_id":{"type":"STRING","value":"oai:ir.lib.hiroshima-u.ac.jp:00001852"},"target_publication_author_list":{"type":"LIST_STRING","value":["古谷道生(定吉)編","長谷川弘(善左衛門)閲","フルヤ ドウセイ","Furuya Dōsei","ハセガワ ヒロム","Hasegawa Hiromu"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ir.lib.hiroshima-u.ac.jp:00001853"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::eba0dc302bcd9a273f8bbb72be3a687b"},"target_publication_subject_list":{"type":"LIST_STRING","value":["算術"]},"trust":{"type":"FLOAT","value":0.93243486},"target_publication_title":{"type":"STRING","value":"算法通書 巻之中"},"provenance_datasource_name":{"type":"STRING","value":"Hiroshima University Institutional Repository"},"target_dateofacceptance":{"type":"DATE","value":"2001-05-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::eba0dc302bcd9a273f8bbb72be3a687b"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cmn:journl:y:2014:i:2:p:127-141\",\"titles\":[\"Socially Marginalized Environments, Unemployment and Media\"],\"abstracts\":[\"In any society, regardless of its homogeneity and heterogeneity, there are minority groups, or those that require special attention and treatment because of their social and cultural characteristics, physical appearance, or because they have a lifestyle which differs from the dominant group and this causes them to be allocated the social status of minorities. The ongoing transformation of the economy since 1989 is now a major effect which continues to affect economic development. The planned economy and socialist market economy was replaced with the principles of free enterprise and the market mechanism. The market economy is closely tied to the labor market, which we view as the meeting point of labor supply with labor demand, resulting in labor costs – or wages. Position in the labor market is one of the most important factors through which an individual integrates into the social fabric. The aim of this scientific article is to describe the role of the media and outline its potential use in order to achieve changes in behavior and increase education levels in socially marginalized environments and resulting in greater social inclusion.\"],\"language\":\"und\",\"subjects\":[\"Ethnic Minorities, Unemployment, Community Center, the Roma Minority, the Media, Social Groups, Social Exclusion, Social Inclusion\"],\"creators\":[\"Oto Moravcik\",\"Jarmila Vidova\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"DANUBE: Law and Economics Review\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.eaco.eu/wp-content/uploads/2015/04/moravcik.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.degruyter.com/view/j/danb.2014.5.issue-2/danb-2014-0007/danb-2014-0007.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.degruyter.com/view/j/danb.2014.5.issue-2/danb-2014-0007/danb-2014-0007.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.degruyter.com/view/j/danb.2014.5.issue-2/danb-2014-0007/danb-2014-0007.xml?format\\u003dINT\",\"id\":\"oai:doaj.org/article:72d734f9dc214656a0993936e105582a\"},\"trust\":0.84736645}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cmn:journl:y:2014:i:2:p:127-141"},"target_publication_author_list":{"type":"LIST_STRING","value":["Oto Moravcik","Jarmila Vidova"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:72d734f9dc214656a0993936e105582a"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Ethnic Minorities, Unemployment, Community Center, the Roma Minority, the Media, Social Groups, Social Exclusion, Social Inclusion"]},"trust":{"type":"FLOAT","value":0.84736645},"target_publication_title":{"type":"STRING","value":"Socially Marginalized Environments, Unemployment and Media"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:fedoa.unina.it:9028\",\"titles\":[\"PATHOPHYSIOLOGY, CLINICAL FEATURES, AND MANAGEMENT OF CHILDREN WITH CHRONIC LIVER DISEASES\"],\"abstracts\":[\"our research starts from the assumption that only knowledge of unexplored aspects can be an important tool for advancing into the management of hepatic disorders in children. It should be a contribute to both provide a framework to understand pathophisiology of some hepatobiliary disorders and offer analyses of their clinical-laboratory manifestations and the strategies for managing them. This project might be also useful to create specific competences related to a integrated and multidisciplinary approach, as required in pediatric liver disease. Our study concerns four areas that still present several either pathogenetic or diagnostic uncertainties, focusing on the following aspects:\\r\\n1. Role of cellular immunity in the pathogenesis of Biliary Atresia.\\r\\n2. New clinical and therapeutic aspects in pediatric autoimmune liver disease.\\r\\n3.Pediatric liver transplant: immunological features and complication of calcineurin inhibitors treatment.\\r\\n4. Broadening the spectrum of UDCA indications\"],\"language\":\"und\",\"subjects\":[\"MED/38 PEDIATRIA GENERALE E SPECIALISTICA\"],\"creators\":[\"Cirillo, Francesco\"],\"publicationdate\":\"2011-11-30\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Università degli Studi di Napoli Federico Il Open Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.fedoa.unina.it/9028/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.fedoa.unina.it/9028/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.fedoa.unina.it/9028/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"url\":\"http://www.fedoa.unina.it/9028/\",\"id\":\"oai:fedoatest.unina.it:9028\"},\"trust\":0.102679074}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Università degli Studi di Napoli Federico Il Open Archive"},"target_publication_id":{"type":"STRING","value":"oai:fedoa.unina.it:9028"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cirillo, Francesco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:fedoatest.unina.it:9028"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::37a749d808e46495a8da1e5352d03cae"},"target_publication_subject_list":{"type":"LIST_STRING","value":["MED/38 PEDIATRIA GENERALE E SPECIALISTICA"]},"trust":{"type":"FLOAT","value":0.102679074},"target_publication_title":{"type":"STRING","value":"PATHOPHYSIOLOGY, CLINICAL FEATURES, AND MANAGEMENT OF CHILDREN WITH CHRONIC LIVER DISEASES"},"provenance_datasource_name":{"type":"STRING","value":"Università degli Studi di Napoli Federico Il Open Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::37a749d808e46495a8da1e5352d03cae"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:fedoatest.unina.it:9028\",\"titles\":[\"PATHOPHYSIOLOGY, CLINICAL FEATURES, AND MANAGEMENT OF CHILDREN WITH CHRONIC LIVER DISEASES\"],\"abstracts\":[\"our research starts from the assumption that only knowledge of unexplored aspects can be an important tool for advancing into the management of hepatic disorders in children. It should be a contribute to both provide a framework to understand pathophisiology of some hepatobiliary disorders and offer analyses of their clinical-laboratory manifestations and the strategies for managing them. This project might be also useful to create specific competences related to a integrated and multidisciplinary approach, as required in pediatric liver disease. Our study concerns four areas that still present several either pathogenetic or diagnostic uncertainties, focusing on the following aspects:\\n1. Role of cellular immunity in the pathogenesis of Biliary Atresia.\\n2. New clinical and therapeutic aspects in pediatric autoimmune liver disease.\\n3.Pediatric liver transplant: immunological features and complication of calcineurin inhibitors treatment.\\n4. Broadening the spectrum of UDCA indications\"],\"language\":\"ita\",\"subjects\":[],\"creators\":[\"Cirillo, Francesco\"],\"publicationdate\":\"2011-11-30\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Università degli Studi di Napoli Federico Il Open Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.fedoa.unina.it/9028/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.fedoa.unina.it/9028/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.fedoa.unina.it/9028/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"url\":\"http://www.fedoa.unina.it/9028/\",\"id\":\"oai:fedoa.unina.it:9028\"},\"trust\":0.016782165}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Università degli Studi di Napoli Federico Il Open Archive"},"target_publication_id":{"type":"STRING","value":"oai:fedoatest.unina.it:9028"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cirillo, Francesco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:fedoa.unina.it:9028"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::37a749d808e46495a8da1e5352d03cae"},"trust":{"type":"FLOAT","value":0.016782165},"target_publication_title":{"type":"STRING","value":"PATHOPHYSIOLOGY, CLINICAL FEATURES, AND MANAGEMENT OF CHILDREN WITH CHRONIC LIVER DISEASES"},"provenance_datasource_name":{"type":"STRING","value":"Università degli Studi di Napoli Federico Il Open Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::37a749d808e46495a8da1e5352d03cae"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00209679\",\"titles\":[\"Spin-dependent scattering and absorption of thermal neutrons on dynamically polarized nuclei\"],\"abstracts\":[\"Dynamic nuclear polarization and the spin-temperature concept of nuclear Zeeman reservoirs are systematically used to obtain spin-dependent scattering lengths bN of separate isotopes in the same target A simple generalization shows the way to measure bN for nuclei invisible by nuclear magnetic resonance. It shows also how to obtain precise ratios of bN for different isotopes or of spin-dependent absorption and scattering of the same isotope. Values of bN are given for 13C, 35Cl, 79Br, 81Br as well as upper limits for 31P, 37Cl and 41K.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\",\"dynamic nuclear polarisation\",\"neutron absorption\"],\"creators\":[\"Glättli, H.\",\"Coustham, J.\"],\"publicationdate\":\"1983-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphys:01983004408095700\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00209679\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00209679\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00209679\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00209679\",\"id\":\"oai:HAL:jpa-00209679v1\"},\"trust\":0.2233786}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00209679"},"target_publication_author_list":{"type":"LIST_STRING","value":["Glättli, H.","Coustham, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00209679v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens","dynamic nuclear polarisation","neutron absorption"]},"trust":{"type":"FLOAT","value":0.2233786},"target_publication_title":{"type":"STRING","value":"Spin-dependent scattering and absorption of thermal neutrons on dynamically polarized nuclei"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1983-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00209679v1\",\"titles\":[\"Spin-dependent scattering and absorption of thermal neutrons on dynamically polarized nuclei\"],\"abstracts\":[\"Dynamic nuclear polarization and the spin-temperature concept of nuclear Zeeman reservoirs are systematically used to obtain spin-dependent scattering lengths bN of separate isotopes in the same target A simple generalization shows the way to measure bN for nuclei invisible by nuclear magnetic resonance. It shows also how to obtain precise ratios of bN for different isotopes or of spin-dependent absorption and scattering of the same isotope. Values of bN are given for 13C, 35Cl, 79Br, 81Br as well as upper limits for 31P, 37Cl and 41K.\"],\"language\":\"eng\",\"subjects\":[\"dynamic nuclear polarisation\",\"neutron absorption\",\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Glättli, H.\",\"Coustham, J.\"],\"publicationdate\":\"1983-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphys:01983004408095700\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00209679\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00209679\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00209679\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00209679\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00209679\"},\"trust\":0.045129716}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00209679v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Glättli, H.","Coustham, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00209679"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["dynamic nuclear polarisation","neutron absorption","[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.045129716},"target_publication_title":{"type":"STRING","value":"Spin-dependent scattering and absorption of thermal neutrons on dynamically polarized nuclei"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1983-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1506.09018\",\"titles\":[\"Renormalization Group Summation of Laplace QCD Sum Rules for Scalar Gluon Currents\"],\"abstracts\":[\" We employ renormalization group (RG) summation techniques to obtain portions\\nof Laplace QCD sum rules for scalar gluon currents beyond the order to which\\nthey have been explicitly calculated. The first two of these sum rules are\\nconsidered in some detail, and it is shown that they have significantly less\\ndependence on the renormalization scale parameter $\\\\mu^2$ once the RG summation\\nis used to extend the perturbative results. Using the sum rules, we then\\ncompute the bound on the scalar glueball mass and demonstrate that the 3 and\\n4-Loop perturbative results form lower and upper bounds to their RG summed\\ncounterparts. We further demonstrate improved convergence of the RG summed\\nexpressions with respect to perturbative results.\\n\",\"Comment: Accepted Physics Letters B version, 17 pages, 7 figures in LaTeX2e\\n format\"],\"language\":\"eng\",\"subjects\":[\"High Energy Physics - Phenomenology\"],\"creators\":[\"Chishtie, Farrukh\",\"Steele, T. G.\",\"Mckeon, D. G. C.\"],\"publicationdate\":\"2015-06-30\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1016/j.physletb.2016.01.008\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1506.09018\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://repo.scoap3.org/record/13383\",\"license\":\"OPEN\",\"hostedby\":\"SCOAP3 Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repo.scoap3.org/record/13383\",\"license\":\"OPEN\",\"hostedby\":\"SCOAP3 Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"SCOAP3 Repository\",\"url\":\"http://repo.scoap3.org/record/13383\",\"id\":\"oai:repo.scoap3.org:13383\"},\"trust\":0.33901918}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1506.09018"},"target_publication_author_list":{"type":"LIST_STRING","value":["Chishtie, Farrukh","Steele, T. G.","Mckeon, D. G. C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repo.scoap3.org:13383"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::e93028bdc1aacdfb3687181f2031765d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["High Energy Physics - Phenomenology"]},"trust":{"type":"FLOAT","value":0.33901918},"target_publication_title":{"type":"STRING","value":"Renormalization Group Summation of Laplace QCD Sum Rules for Scalar Gluon Currents"},"provenance_datasource_name":{"type":"STRING","value":"SCOAP3 Repository"},"target_dateofacceptance":{"type":"DATE","value":"2015-06-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repo.scoap3.org:13383\",\"titles\":[\"Renormalization group summation of Laplace QCD sum rules for scalar gluon currents\"],\"abstracts\":[\"We employ renormalization group (RG) summation techniques to obtain portions of Laplace QCD sum rules for scalar gluon currents beyond the order to which they have been explicitly calculated. The first two of these sum rules are considered in some detail, and it is shown that they have significantly less dependence on the renormalization scale parameter μ2 once the RG summation is used to extend the perturbative results. Using the sum rules, we then compute the bound on the scalar glueball mass and demonstrate that the 3 and 4-Loop perturbative results form lower and upper bounds to their RG summed counterparts. We further demonstrate improved convergence of the RG summed expressions with respect to perturbative results.\"],\"language\":\"eng\",\"subjects\":[\"Sum rules\",\"Renormalization group\",\"Scale dependence\"],\"creators\":[\"Chishtie, Farrukh\",\"Steele, T. G.\",\"Mckeon, D. G. C.\"],\"publicationdate\":\"2016-05-04\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Physics letters B\",\"issn\":\"0370-2693\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"SCOAP3 Repository\"],\"pids\":[{\"value\":\"10.1016/j.physletb.2016.01.008\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://repo.scoap3.org/record/13383\",\"license\":\"OPEN\",\"hostedby\":\"SCOAP3 Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/1506.09018\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1506.09018\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1506.09018\",\"id\":\"oai:arXiv.org:1506.09018\"},\"trust\":0.121028006}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"SCOAP3 Repository"},"target_publication_id":{"type":"STRING","value":"oai:repo.scoap3.org:13383"},"target_publication_author_list":{"type":"LIST_STRING","value":["Chishtie, Farrukh","Steele, T. G.","Mckeon, D. G. C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1506.09018"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Sum rules","Renormalization group","Scale dependence"]},"trust":{"type":"FLOAT","value":0.121028006},"target_publication_title":{"type":"STRING","value":"Renormalization group summation of Laplace QCD sum rules for scalar gluon currents"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2016-05-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::e93028bdc1aacdfb3687181f2031765d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:rje:randje:v:23:y:1992:i:autumn:p:350-365\",\"titles\":[\"The Effects of Competition on Executive Behavior\"],\"abstracts\":[\"Economists presume that competition spurs a firm to be more efficient by forcing it to reduce its agency problems. This article investigates this presumption. It finds that the effects of competition on executive behavior can be decomposed into four effects, each of which is of potentially ambiguous sign. Theory thus offers no definitive defense of this presumption. This article also derives sets of conditions under which increased competition has the presumed effect of reducing agency problems. In some sets, important conditions are that increased competition reduce the executive\\u0027s expected income and that agency goods (e.g., shirking) be normal goods for the executive. The article shows that an increase in the shareholder bargaining strength can both reduce the agency problem and make it more sensitive to competition.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hermalin, Benjamin E.\"],\"publicationdate\":\"1992-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"RAND Journal of Economics\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://links.jstor.org/sici?sici\\u003d0741-6261%28199223%2923%3A3%3C350%3ATEOCOE%3E2.0.CO%3B2-E\\u0026origin\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.escholarship.org/uc/item/7m13v5dd.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/7m13v5dd.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.escholarship.org/uc/item/7m13v5dd.pdf;origin\\u003drepeccitec\",\"id\":\"oai:RePEc:cdl:econwp:qt7m13v5dd\"},\"trust\":0.7304468}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:rje:randje:v:23:y:1992:i:autumn:p:350-365"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hermalin, Benjamin E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cdl:econwp:qt7m13v5dd"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.7304468},"target_publication_title":{"type":"STRING","value":"The Effects of Competition on Executive Behavior"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1992-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cdl:econwp:qt7m13v5dd\",\"titles\":[\"The Effects of Competition on Executive Behavior\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"principal-agent problems, organizational strategy, competitive strategy, Social and Behavioral Sciences\"],\"creators\":[\"Hermalin, Benjamin E.\"],\"publicationdate\":\"1991-10-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/7m13v5dd.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://links.jstor.org/sici?sici\\u003d0741-6261%28199223%2923%3A3%3C350%3ATEOCOE%3E2.0.CO%3B2-E\\u0026origin\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://links.jstor.org/sici?sici\\u003d0741-6261%28199223%2923%3A3%3C350%3ATEOCOE%3E2.0.CO%3B2-E\\u0026origin\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://links.jstor.org/sici?sici\\u003d0741-6261%28199223%2923%3A3%3C350%3ATEOCOE%3E2.0.CO%3B2-E\\u0026origin\\u003drepec\",\"id\":\"oai:RePEc:rje:randje:v:23:y:1992:i:autumn:p:350-365\"},\"trust\":0.06358194}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cdl:econwp:qt7m13v5dd"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hermalin, Benjamin E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:rje:randje:v:23:y:1992:i:autumn:p:350-365"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["principal-agent problems, organizational strategy, competitive strategy, Social and Behavioral Sciences"]},"trust":{"type":"FLOAT","value":0.06358194},"target_publication_title":{"type":"STRING","value":"The Effects of Competition on Executive Behavior"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1991-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cdl:econwp:qt7m13v5dd\",\"titles\":[\"The Effects of Competition on Executive Behavior\"],\"abstracts\":[\"Economists presume that competition spurs a firm to be more efficient by forcing it to reduce its agency problems. This article investigates this presumption. It finds that the effects of competition on executive behavior can be decomposed into four effects, each of which is of potentially ambiguous sign. Theory thus offers no definitive defense of this presumption. This article also derives sets of conditions under which increased competition has the presumed effect of reducing agency problems. In some sets, important conditions are that increased competition reduce the executive\\u0027s expected income and that agency goods (e.g., shirking) be normal goods for the executive. The article shows that an increase in the shareholder bargaining strength can both reduce the agency problem and make it more sensitive to competition.\"],\"language\":\"und\",\"subjects\":[\"principal-agent problems, organizational strategy, competitive strategy, Social and Behavioral Sciences\"],\"creators\":[\"Hermalin, Benjamin E.\"],\"publicationdate\":\"1991-10-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/7m13v5dd.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"Economists presume that competition spurs a firm to be more efficient by forcing it to reduce its agency problems. This article investigates this presumption. It finds that the effects of competition on executive behavior can be decomposed into four effects, each of which is of potentially ambiguous sign. Theory thus offers no definitive defense of this presumption. This article also derives sets of conditions under which increased competition has the presumed effect of reducing agency problems. In some sets, important conditions are that increased competition reduce the executive\\u0027s expected income and that agency goods (e.g., shirking) be normal goods for the executive. The article shows that an increase in the shareholder bargaining strength can both reduce the agency problem and make it more sensitive to competition.\"]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://links.jstor.org/sici?sici\\u003d0741-6261%28199223%2923%3A3%3C350%3ATEOCOE%3E2.0.CO%3B2-E\\u0026origin\\u003drepec\",\"id\":\"oai:RePEc:rje:randje:v:23:y:1992:i:autumn:p:350-365\"},\"trust\":0.19347727}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cdl:econwp:qt7m13v5dd"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hermalin, Benjamin E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:rje:randje:v:23:y:1992:i:autumn:p:350-365"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["principal-agent problems, organizational strategy, competitive strategy, Social and Behavioral Sciences"]},"trust":{"type":"FLOAT","value":0.19347727},"target_publication_title":{"type":"STRING","value":"The Effects of Competition on Executive Behavior"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1991-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2525121\",\"titles\":[\"Clinical validation of S100B use in management of mild head injury\"],\"abstracts\":[\"Background Despite validated guidelines, management of mild head injury (MHI) is still associated with excessive computed tomography (CT) scanning. Reports concerning serum levels of S100B have shown promise concerning safe reduction in CT scanning but clinical validation and actual impact on patient management is unclear. In 2007, S100B was introduced into emergency department (ED) clinical management routines in Halmstad, Sweden. MHI patients with low (\\u003c0.10 mikrogram/L) levels of S100B could be discharged without CT. Our aim was to examine the clinical impact and performance of S100B in clinical use for MHI patients. Methods Adult ([≥]18 years) patients with MHI (GCS 14–15, loss of consciousness and/or amnesia and no additional risk factors) and S100B sampling within 3 hours were prospectively included in this validation study. Patients were managed according to the adapted guidelines and management was documented. Outcome was determined with a questionnaire 3 months post-trauma and medical records to identify significant intracranial complications such as new neuroimaging, neurosurgery and/or death related to the trauma. Results 512 patients were included. 24 (4.7%) showed traumatic abnormalities on CT and 1 patient died (0.2%). 138 patients (27%) had normal S100B levels and 374 patients (73%) showed elevated S100B levels. No patients with a normal S100B level showed significant intracranial complication. 44 patients (32%) were managed with CT despite the guidelines recommending discharge (all these CT scans were normal) and 28 patients (7%) were discharged despite a CT recommendation (follow-up was normal in all these patients). S100B had a sensitivity of 100% (95% CI 83-100%) and a specificity of 28% (95% CI 24-33%) for significant intracranial complications. Conclusion The clinical use of S100B within our existing guidelines for management of MHI is safe and effective. Adult MHI patients, without additional risk factors and with normal S100B levels within 3 hours of injury, can safely be discharged from the hospital.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Calcagnile, Olga\",\"Undén, Linda\",\"Undén, Johan\"],\"publicationdate\":\"2012-10-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"BMC Emergency Medicine\",\"issn\":\"\",\"eissn\":\"1471-227X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1471-227X-12-13\",\"type\":\"doi\"},{\"value\":\"PMC3527238\",\"type\":\"pmc\"},{\"value\":\"23102492\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3527238\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.biomedcentral.com/1471-227X/12/13\",\"license\":\"OPEN\",\"hostedby\":\"BMC Emergency Medicine\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.biomedcentral.com/1471-227X/12/13\",\"license\":\"OPEN\",\"hostedby\":\"BMC Emergency Medicine\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.biomedcentral.com/1471-227X/12/13\",\"id\":\"oai:doaj.org/article:aa0c3027208144c4bb270c8bd8c60841\"},\"trust\":0.9820088}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2525121"},"target_publication_author_list":{"type":"LIST_STRING","value":["Calcagnile, Olga","Undén, Linda","Undén, Johan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:aa0c3027208144c4bb270c8bd8c60841"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.9820088},"target_publication_title":{"type":"STRING","value":"Clinical validation of S100B use in management of mild head injury"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00434244v1\",\"titles\":[\"La Célestine à la recherche du temps perdu...\"],\"abstracts\":[\"Aunque rigurosamente estructurada en su cronología y densa en su tiempo, la historia de La Celestina es, ante todo, la historia de un tiempo caótico, de un no-tiempo. Tejedora de los amores entre los personajes de la Tragicomedia , la « maga sagrada, síbila secreta » Celestina, les condena a todos al círculo infernal del eterno retorno. Les remite, muy a pesar suyo, a una proto-historia que la sociedad inquisitorial en la que viven (el autor se encarga de recordarnos que la instauración del Santo Oficio se remonta a unos veinte desgraciados años) no les perdona. La « conversión de Pármeno » (auto VII) les define como seres inscritos bajo el sello de lo transitorio, de la mutación, de la duplicidad; son seres incapaces de adaptarse al molde de la mayoría viejo-cristiana. « Convertidos », « conversos », su percepción del tiempo delata una inquietud fundamental, una pérdida de lo pasado y una frustración hacia el porvenir\",\"Bien que rigoureusement agencée dans sa chronologie et soutenue dans son tempo, l\\u0027histoire de La Célestine est avant tout celle d\\u0027un temps chaotique, d\\u0027un non-temps. Artisane de leurs amours, Célestine, « mage sacrée, sibylle secrète », enferme tous les personnages de la Tragicomédie dans le cercle infernal de l\\u0027éternel recommencement et les renvoie, contre leur gré, à une proto-histoire que la société inquisitoriale dans laquelle ils évoluent (l\\u0027auteur se charge de nous rappeler que l\\u0027instauration du Saint Office remonte à vingt longues et malheureuses années) n\\u0027est pas prête à leur pardonner. Radicalement inscrits – comme en témoigne la « conversion de Parmeno » à l\\u0027acte VII – sous le signe du transitoire, de la mutation et de la duplicité, ces êtres ne sauraient en effet se plier aux contraintes imposées par la majorité vétéro-chrétienne. La perception du temps de ces « mutants », de ces « convers », trahit une inquiétude fondamentale, une perte du passé et une frustration de l\\u0027avenir.\"],\"language\":\"fra/fre\",\"subjects\":[\"question marrane\",\"La Célestine\",\"temps\",\"[SHS.LITT] Humanities and Social Sciences/Literature\"],\"creators\":[\"Hirel-Wouts, Sophie\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"Ellipses\",\"embargoenddate\":\"\",\"contributor\":[\"Séminaire interdisciplinaire de recherches sur l\\u0027Espagne médiévale (SIREM) ; Université Michel de Montaigne - Bordeaux III - Université de Caen Basse-Normandie - Université Stendhal - Grenoble III - Université Paris IV - Paris Sorbonne - Université Paris X - Paris Ouest Nanterre La Défense - Université de Poitiers - Université de Reims - Champagne Ardenne - Université Marc Bloch - Strasbourg II - Universidad Autónoma de Madrid - Universidad de Alcalá - Universidad de Salamanca - Universidad de Sevilla - Université Paris XIII - Paris Nord - Ecole Normale Supérieure Lettres et Sciences Humaines - CNRS\",\"Martin, Georges\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00434244\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00434244\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00434244\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00434244\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00434244\"},\"trust\":0.44927496}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00434244v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hirel-Wouts, Sophie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00434244"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["question marrane","La Célestine","temps","[SHS.LITT] Humanities and Social Sciences/Literature"]},"trust":{"type":"FLOAT","value":0.44927496},"target_publication_title":{"type":"STRING","value":"La Célestine à la recherche du temps perdu..."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00434244\",\"titles\":[\"La Célestine à la recherche du temps perdu...\"],\"abstracts\":[\"Bien que rigoureusement agencée dans sa chronologie et soutenue dans son tempo, l\\u0027histoire de La Célestine est avant tout celle d\\u0027un temps chaotique, d\\u0027un non-temps. Artisane de leurs amours, Célestine, « mage sacrée, sibylle secrète », enferme tous les personnages de la Tragicomédie dans le cercle infernal de l\\u0027éternel recommencement et les renvoie, contre leur gré, à une proto-histoire que la société inquisitoriale dans laquelle ils évoluent (l\\u0027auteur se charge de nous rappeler que l\\u0027instauration du Saint Office remonte à vingt longues et malheureuses années) n\\u0027est pas prête à leur pardonner. Radicalement inscrits – comme en témoigne la « conversion de Parmeno » à l\\u0027acte VII – sous le signe du transitoire, de la mutation et de la duplicité, ces êtres ne sauraient en effet se plier aux contraintes imposées par la majorité vétéro-chrétienne. La perception du temps de ces « mutants », de ces « convers », trahit une inquiétude fondamentale, une perte du passé et une frustration de l\\u0027avenir.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:LITT] Humanities and Social Sciences/Literature\",\"[SHS:LITT] Sciences de l\\u0027Homme et Société/Littératures\",\"La Célestine\",\"question marrane\",\"temps\"],\"creators\":[\"Hirel-Wouts, Sophie\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00434244\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00434244\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00434244\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00434244\",\"id\":\"oai:HAL:halshs-00434244v1\"},\"trust\":0.1675654}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00434244"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hirel-Wouts, Sophie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00434244v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:LITT] Humanities and Social Sciences/Literature","[SHS:LITT] Sciences de l\u0027Homme et Société/Littératures","La Célestine","question marrane","temps"]},"trust":{"type":"FLOAT","value":0.1675654},"target_publication_title":{"type":"STRING","value":"La Célestine à la recherche du temps perdu..."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3644662\",\"titles\":[\"Evaluation of Genome Wide Association Study Associated Type 2 Diabetes Susceptibility Loci in Sub Saharan Africans\"],\"abstracts\":[\"Genome wide association studies (GWAS) for type 2 diabetes (T2D) undertaken in European and Asian ancestry populations have yielded dozens of robustly associated loci. However, the genomics of T2D remains largely understudied in sub-Saharan Africa (SSA), where rates of T2D are increasing dramatically and where the environmental background is quite different than in these previous studies. Here, we evaluate 106 reported T2D GWAS loci in continental Africans. We tested each of these SNPs, and SNPs in linkage disequilibrium (LD) with these index SNPs, for an association with T2D in order to assess transferability and to fine map the loci leveraging the generally reduced LD of African genomes. The study included 1775 unrelated Africans (1035 T2D cases, 740 controls; mean age 54 years; 59% female) enrolled in Nigeria, Ghana, and Kenya as part of the Africa America Diabetes Mellitus (AADM) study. All samples were genotyped on the Affymetrix Axiom PanAFR SNP array. Forty-one of the tested loci showed transferability to this African sample (p \\u003c 0.05, same direction of effect), 11 at the exact reported SNP and 30 others at SNPs in LD with the reported SNP (after adjustment for the number of tested SNPs). TCF7L2 SNP rs7903146 was the most significant locus in this study (p \\u003d 1.61 × 10−8). Most of the loci that showed transferability were successfully fine-mapped, i.e., localized to smaller haplotypes than in the original reports. The findings indicate that the genetic architecture of T2D in SSA is characterized by several risk loci shared with non-African ancestral populations and that data from African populations may facilitate fine mapping of risk loci. The study provides an important resource for meta-analysis of African ancestry populations and transferability of novel loci.\"],\"language\":\"eng\",\"subjects\":[\"Genetics\",\"Original Research\",\"genetic association\",\"replication\",\"fine-mapping\",\"type 2 diabetes\",\"sub Saharan Africa\"],\"creators\":[\"Adeyemo, Adebowale A.\",\"Tekola-Ayele, Fasil\",\"Doumatey, Ayo P.\",\"Bentley, Amy R.\",\"Chen, Guanjie\",\"Huang, Hanxia\",\"Zhou, Jie\",\"Shriner, Daniel\",\"Fasanmade, Olufemi\",\"Okafor, Godfrey\"],\"publicationdate\":\"2015-11-01\",\"publisher\":\"Frontiers Media S.A.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Frontiers in Genetics\",\"issn\":\"\",\"eissn\":\"1664-8021\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3389/fgene.2015.00335\",\"type\":\"doi\"},{\"value\":\"PMC4656823\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4656823\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.3389/fgene.2015.00335\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Genetics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.3389/fgene.2015.00335\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Genetics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Frontiers\",\"url\":\"http://dx.doi.org/10.3389/fgene.2015.00335\",\"id\":\"10.3389/fgene.2015.00335\"},\"trust\":0.4459443}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3644662"},"target_publication_author_list":{"type":"LIST_STRING","value":["Adeyemo, Adebowale A.","Tekola-Ayele, Fasil","Doumatey, Ayo P.","Bentley, Amy R.","Chen, Guanjie","Huang, Hanxia","Zhou, Jie","Shriner, Daniel","Fasanmade, Olufemi","Okafor, Godfrey"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.3389/fgene.2015.00335"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::3db634fc5446f389d0b826ea400a5da6"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Genetics","Original Research","genetic association","replication","fine-mapping","type 2 diabetes","sub Saharan Africa"]},"trust":{"type":"FLOAT","value":0.4459443},"target_publication_title":{"type":"STRING","value":"Evaluation of Genome Wide Association Study Associated Type 2 Diabetes Susceptibility Loci in Sub Saharan Africans"},"provenance_datasource_name":{"type":"STRING","value":"Frontiers"},"target_dateofacceptance":{"type":"DATE","value":"2015-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.ubn.ru.nl:2066/25609\",\"titles\":[\"Development of resistance to ciprofloxacin in Acinetobacter baumanii strains isolated during a 20-month outbreak\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Biopharmaceutics\",\"Drug Therapy\",\"Economics, Pharmaceutical\",\"Education, Medical\",\"Evaluation Studies\",\"Outcome and Process Assessment (Health Care)\",\"Pharmacoepidemiology\",\"Pharmacokinetics\",\"Pharmacology, Clinical\",\"Pharmacy\",\"Technology, Pharmaceutical\"],\"creators\":[\"Horrevorts, A. M.\",\"Hagen, A. Ten\",\"Hekster, Y. A.\",\"Tjernberg, I.\",\"Dijkshoorn, L.\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Radboud Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2066/25609\",\"license\":\"OPEN\",\"hostedby\":\"Radboud Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://repository.ubn.ru.nl/handle/2066/25609\",\"license\":\"OPEN\",\"hostedby\":\"Radboud Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.ubn.ru.nl/handle/2066/25609\",\"license\":\"OPEN\",\"hostedby\":\"Radboud Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.ubn.ru.nl/handle/2066/25609\",\"id\":\"ru:oai:repository.ubn.ru.nl:2066/25609\"},\"trust\":0.036140144}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Radboud Repository"},"target_publication_id":{"type":"STRING","value":"oai:repository.ubn.ru.nl:2066/25609"},"target_publication_author_list":{"type":"LIST_STRING","value":["Horrevorts, A. M.","Hagen, A. Ten","Hekster, Y. A.","Tjernberg, I.","Dijkshoorn, L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["ru:oai:repository.ubn.ru.nl:2066/25609"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Biopharmaceutics","Drug Therapy","Economics, Pharmaceutical","Education, Medical","Evaluation Studies","Outcome and Process Assessment (Health Care)","Pharmacoepidemiology","Pharmacokinetics","Pharmacology, Clinical","Pharmacy","Technology, Pharmaceutical"]},"trust":{"type":"FLOAT","value":0.036140144},"target_publication_title":{"type":"STRING","value":"Development of resistance to ciprofloxacin in Acinetobacter baumanii strains isolated during a 20-month outbreak"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7bccfde7714a1ebadf06c5f4cea752c1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:eme:jrfpps:v:10:y:2010:i:2:p:125-128\",\"titles\":[\"Infinite-mean losses: insurance\\u0027s “dread disease”\"],\"abstracts\":[\"Purpose – The purpose of this paper is to consider the existence and significance of heavy-tailed – and in particular, infinite-mean – insurance losses. Design/methodology/approach – Three specific questions are addressed in turn. First, how do infinite-mean insurance losses arise in the real world? Second, can infinite-mean losses exist even in the presence of insurance policy limits (caps)? Third, why are infinite-mean losses so infrequently discussed by practitioners and regulators? Findings – The paper first shows that heavy-tailed – and in particular, infinite-mean – insurance losses can be generated by simple modifications of gamma (exponential) random variables. It then finds that the property of infinite means cannot be prevented by the imposition of policy limits (caps). Finally, the paper argues that the statistical contagion and financial intractability of infinite-mean losses generate a political fear among practitioners and regulators analogous to that associated with a “dread disease.” Originality/value – The paper explores an important insurance phenomenon – heavy-tailed/infinite-mean losses – that is insufficiently discussed.\"],\"language\":\"und\",\"subjects\":[\"Insurance, Loss\"],\"creators\":[\"Powers, Michael R.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Risk Finance\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.emeraldinsight.com/journals.htm?issn\\u003d1526-5943\\u0026volume\\u003d11\\u0026issue\\u003d2\\u0026articleid\\u003d1839522\\u0026show\\u003dabstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.emeraldinsight.com/journals.htm?issn\\u003d1526-5943\\u0026volume\\u003d11\\u0026issue\\u003d2\\u0026articleid\\u003d1839522\\u0026show\\u003dabstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.emeraldinsight.com/journals.htm?issn\\u003d1526-5943\\u0026volume\\u003d11\\u0026issue\\u003d2\\u0026articleid\\u003d1839522\\u0026show\\u003dabstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.emeraldinsight.com/journals.htm?issn\\u003d1526-5943\\u0026volume\\u003d11\\u0026issue\\u003d2\\u0026articleid\\u003d1839522\\u0026show\\u003dabstract\",\"id\":\"oai:RePEc:eme:jrfpps:v:11:y:2010:i:2:p:125-128\"},\"trust\":0.6003275}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:eme:jrfpps:v:10:y:2010:i:2:p:125-128"},"target_publication_author_list":{"type":"LIST_STRING","value":["Powers, Michael R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:eme:jrfpps:v:11:y:2010:i:2:p:125-128"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Insurance, Loss"]},"trust":{"type":"FLOAT","value":0.6003275},"target_publication_title":{"type":"STRING","value":"Infinite-mean losses: insurance\u0027s “dread disease”"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:eme:jrfpps:v:11:y:2010:i:2:p:125-128\",\"titles\":[\"Infinite-mean losses: insurance\\u0027s “dread disease”\"],\"abstracts\":[\"Purpose – The purpose of this paper is to consider the existence and significance of heavy-tailed – and in particular, infinite-mean – insurance losses. Design/methodology/approach – Three specific questions are addressed in turn. First, how do infinite-mean insurance losses arise in the real world? Second, can infinite-mean losses exist even in the presence of insurance policy limits (caps)? Third, why are infinite-mean losses so infrequently discussed by practitioners and regulators? Findings – The paper first shows that heavy-tailed – and in particular, infinite-mean – insurance losses can be generated by simple modifications of gamma (exponential) random variables. It then finds that the property of infinite means cannot be prevented by the imposition of policy limits (caps). Finally, the paper argues that the statistical contagion and financial intractability of infinite-mean losses generate a political fear among practitioners and regulators analogous to that associated with a “dread disease.” Originality/value – The paper explores an important insurance phenomenon – heavy-tailed/infinite-mean losses – that is insufficiently discussed.\"],\"language\":\"und\",\"subjects\":[\"Insurance, Loss\"],\"creators\":[\"Powers, Michael R.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Risk Finance\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.emeraldinsight.com/journals.htm?issn\\u003d1526-5943\\u0026volume\\u003d11\\u0026issue\\u003d2\\u0026articleid\\u003d1839522\\u0026show\\u003dabstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.emeraldinsight.com/journals.htm?issn\\u003d1526-5943\\u0026volume\\u003d11\\u0026issue\\u003d2\\u0026articleid\\u003d1839522\\u0026show\\u003dabstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.emeraldinsight.com/journals.htm?issn\\u003d1526-5943\\u0026volume\\u003d11\\u0026issue\\u003d2\\u0026articleid\\u003d1839522\\u0026show\\u003dabstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.emeraldinsight.com/journals.htm?issn\\u003d1526-5943\\u0026volume\\u003d11\\u0026issue\\u003d2\\u0026articleid\\u003d1839522\\u0026show\\u003dabstract\",\"id\":\"oai:RePEc:eme:jrfpps:v:10:y:2010:i:2:p:125-128\"},\"trust\":0.03598416}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:eme:jrfpps:v:11:y:2010:i:2:p:125-128"},"target_publication_author_list":{"type":"LIST_STRING","value":["Powers, Michael R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:eme:jrfpps:v:10:y:2010:i:2:p:125-128"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Insurance, Loss"]},"trust":{"type":"FLOAT","value":0.03598416},"target_publication_title":{"type":"STRING","value":"Infinite-mean losses: insurance\u0027s “dread disease”"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00898669\",\"titles\":[\"Insulin-like growth factor (IGF) binding in hypophysectomized rat liver microsomes : alteration by a soluble binding moiety\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:BDLR] Life Sciences/Reproductive Biology\",\"[SDV:BDLR] Sciences du Vivant/Biologie de la reproduction\",\"[SDV:AEN] Life Sciences/Food and Nutrition\",\"[SDV:AEN] Sciences du Vivant/Alimentation et Nutrition\",\"[SDV:BDD] Life Sciences/Development Biology\",\"[SDV:BDD] Sciences du Vivant/Biologie du développement\"],\"creators\":[\"Barenton, B.\",\"A Patel, Barbara\",\"M Blanchard, Monique\",\"J Guyda, H.\",\"I Posner, B.\"],\"publicationdate\":\"1987-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00898669\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00898669\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00898669\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00898669\",\"id\":\"oai:HAL:hal-00898669v1\"},\"trust\":0.86180544}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00898669"},"target_publication_author_list":{"type":"LIST_STRING","value":["Barenton, B.","A Patel, Barbara","M Blanchard, Monique","J Guyda, H.","I Posner, B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00898669v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BDLR] Life Sciences/Reproductive Biology","[SDV:BDLR] Sciences du Vivant/Biologie de la reproduction","[SDV:AEN] Life Sciences/Food and Nutrition","[SDV:AEN] Sciences du Vivant/Alimentation et Nutrition","[SDV:BDD] Life Sciences/Development Biology","[SDV:BDD] Sciences du Vivant/Biologie du développement"]},"trust":{"type":"FLOAT","value":0.86180544},"target_publication_title":{"type":"STRING","value":"Insulin-like growth factor (IGF) binding in hypophysectomized rat liver microsomes : alteration by a soluble binding moiety"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1987-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00898669\",\"titles\":[\"Insulin-like growth factor (IGF) binding in hypophysectomized rat liver microsomes : alteration by a soluble binding moiety\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:BDLR] Life Sciences/Reproductive Biology\",\"[SDV:BDLR] Sciences du Vivant/Biologie de la reproduction\",\"[SDV:AEN] Life Sciences/Food and Nutrition\",\"[SDV:AEN] Sciences du Vivant/Alimentation et Nutrition\",\"[SDV:BDD] Life Sciences/Development Biology\",\"[SDV:BDD] Sciences du Vivant/Biologie du développement\"],\"creators\":[\"Barenton, B.\",\"A Patel, Barbara\",\"M Blanchard, Monique\",\"J Guyda, H.\",\"I Posner, B.\"],\"publicationdate\":\"1987-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00898669\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"International audience\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00898669\",\"id\":\"oai:HAL:hal-00898669v1\"},\"trust\":0.7296241}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00898669"},"target_publication_author_list":{"type":"LIST_STRING","value":["Barenton, B.","A Patel, Barbara","M Blanchard, Monique","J Guyda, H.","I Posner, B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00898669v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BDLR] Life Sciences/Reproductive Biology","[SDV:BDLR] Sciences du Vivant/Biologie de la reproduction","[SDV:AEN] Life Sciences/Food and Nutrition","[SDV:AEN] Sciences du Vivant/Alimentation et Nutrition","[SDV:BDD] Life Sciences/Development Biology","[SDV:BDD] Sciences du Vivant/Biologie du développement"]},"trust":{"type":"FLOAT","value":0.7296241},"target_publication_title":{"type":"STRING","value":"Insulin-like growth factor (IGF) binding in hypophysectomized rat liver microsomes : alteration by a soluble binding moiety"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1987-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00898669v1\",\"titles\":[\"Insulin-like growth factor (IGF) binding in hypophysectomized rat liver microsomes : alteration by a soluble binding moiety\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.BDLR] Life Sciences/Reproductive Biology\",\"[SDV.AEN] Life Sciences/Food and Nutrition\",\"[SDV.BDD] Life Sciences/Development Biology\"],\"creators\":[\"Barenton, B.\",\"A Patel, Barbara\",\"M Blanchard, Monique\",\"J Guyda, H.\",\"I Posner, B.\"],\"publicationdate\":\"1987-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00898669\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00898669\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00898669\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00898669\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00898669\"},\"trust\":0.3800884}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00898669v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Barenton, B.","A Patel, Barbara","M Blanchard, Monique","J Guyda, H.","I Posner, B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00898669"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.BDLR] Life Sciences/Reproductive Biology","[SDV.AEN] Life Sciences/Food and Nutrition","[SDV.BDD] Life Sciences/Development Biology"]},"trust":{"type":"FLOAT","value":0.3800884},"target_publication_title":{"type":"STRING","value":"Insulin-like growth factor (IGF) binding in hypophysectomized rat liver microsomes : alteration by a soluble binding moiety"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1987-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3077670\",\"titles\":[\"MOLECULAR TYPING OF Candida albicans ISOLATES FROM HOSPITALIZED PATIENTS\"],\"abstracts\":[\"SUMMARY Introduction: The majority of nosocomial fungal infections are caused by Candida spp. where C. albicans is the species most commonly identified. Molecular methods are important tools for assessing the origin of the yeasts isolated in hospitals. Methods: This is a study on the genetic profifiles of 39 nosocomial clinical isolates of C. albicans using two typing methods: random amplifified polymorphic DNA (RAPD) and microsatellite, two different primers for each technique were used. Results: RAPD provided 10 and 11 different profiles with values for SAB of 0.84 ± 0.126 and 0.88 ± 0.08 for primers M2 and P4, respectively. Microsatellite using two markers, CDC3 and HIS3, allowed the observation of six and seven different alleles, respectively, with combined discriminatory power of 0.91. Conclusions: Although genetic variability is clear, it was possible to identify high similarity, suggesting a common origin for at least a part of isolates. It is important to emphasize that common origin was proven from yeasts isolated from colonization (urine, catheter or endotracheal secretions) and blood culture from the same patient, indicating that the candidemia must have started from a site of colonization. The combination of RAPD and microsatellite provides a quick and efficient analysis for investigation of similarity among nosocomial isolates of C. albicans.\"],\"language\":\"eng\",\"subjects\":[\"Mycology\",\"Candida albicans\",\"Microsatellite\",\"RAPD\",\"Nosocomial infection\"],\"creators\":[\"Bonfim-Mendonça, Patrícia Souza\",\"Fiorini, Adriana\",\"Shinobu-Mesquita, Cristiane Suemi\",\"Baeza, Lilian Cristiane\",\"Fernandez, Maria Aparecida\",\"Svidzinski, Terezinha Inez Estivalet\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"Instituto de Medicina Tropical\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Revista do Instituto de Medicina Tropical de São Paulo\",\"issn\":\"0036-4665\",\"eissn\":\"1678-9946\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1590/S0036-46652013000600003\",\"type\":\"doi\"},{\"value\":\"PMC4105085\",\"type\":\"pmc\"},{\"value\":\"24213190\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4105085\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.scielo.br/scielo.php?script\\u003dsci_arttext\\u0026pid\\u003dS0036-46652013000600385\\u0026lng\\u003den\\u0026tlng\\u003den\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.scielo.br/scielo.php?script\\u003dsci_arttext\\u0026pid\\u003dS0036-46652013000600385\\u0026lng\\u003den\\u0026tlng\\u003den\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.scielo.br/scielo.php?script\\u003dsci_arttext\\u0026pid\\u003dS0036-46652013000600385\\u0026lng\\u003den\\u0026tlng\\u003den\",\"id\":\"oai:doaj.org/article:c381b8a30fd04fa6932542abea8f2cfd\"},\"trust\":0.067346394}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3077670"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bonfim-Mendonça, Patrícia Souza","Fiorini, Adriana","Shinobu-Mesquita, Cristiane Suemi","Baeza, Lilian Cristiane","Fernandez, Maria Aparecida","Svidzinski, Terezinha Inez Estivalet"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:c381b8a30fd04fa6932542abea8f2cfd"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mycology","Candida albicans","Microsatellite","RAPD","Nosocomial infection"]},"trust":{"type":"FLOAT","value":0.067346394},"target_publication_title":{"type":"STRING","value":"MOLECULAR TYPING OF Candida albicans ISOLATES FROM HOSPITALIZED PATIENTS"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:5821\",\"titles\":[\"On the Emergence of Private Insurance in Presence of Mutual Agreements\"],\"abstracts\":[\"The aim of this paper is to analyze the impact of the existence of mutual firms on the behavior of an insurance company and more precisely to study in which situations a private insurance firm may emerge in presence of an incumbent mutual firm. Our approach differs from the existing literature as we integrate the investment choices of the company and the fact that, because it commits on a fix contract, it can become insolvent. In such a situation we are able to characterize the unique optimal choices of an entrant company and the conditions favoring or preventing its appearance.\"],\"language\":\"und\",\"subjects\":[\"Insurance market, Mutual firms, Commitment, Insolvency\"],\"creators\":[\"Bourlès, Renaud\"],\"publicationdate\":\"2007-06-29\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/5821/1/MPRA_paper_5821.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/15374/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/15374/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/15374/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:15374\"},\"trust\":0.12668455}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:5821"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourlès, Renaud"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:15374"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Insurance market, Mutual firms, Commitment, Insolvency"]},"trust":{"type":"FLOAT","value":0.12668455},"target_publication_title":{"type":"STRING","value":"On the Emergence of Private Insurance in Presence of Mutual Agreements"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2007-06-29"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:5821\",\"titles\":[\"On the Emergence of Private Insurance in Presence of Mutual Agreements\"],\"abstracts\":[\"The aim of this paper is to analyze the impact of the existence of mutual firms on the behavior of an insurance company and more precisely to study in which situations a private insurance firm may emerge in presence of an incumbent mutual firm. Our approach differs from the existing literature as we integrate the investment choices of the company and the fact that, because it commits on a fix contract, it can become insolvent. In such a situation we are able to characterize the unique optimal choices of an entrant company and the conditions favoring or preventing its appearance.\"],\"language\":\"und\",\"subjects\":[\"Insurance market, Mutual firms, Commitment, Insolvency\"],\"creators\":[\"Bourlès, Renaud\"],\"publicationdate\":\"2007-06-29\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/5821/1/MPRA_paper_5821.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/5827/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/5827/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/5827/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:5827\"},\"trust\":0.9612907}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:5821"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourlès, Renaud"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:5827"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Insurance market, Mutual firms, Commitment, Insolvency"]},"trust":{"type":"FLOAT","value":0.9612907},"target_publication_title":{"type":"STRING","value":"On the Emergence of Private Insurance in Presence of Mutual Agreements"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2007-06-29"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:5821\",\"titles\":[\"On the Emergence of Private Insurance in Presence of Mutual Agreements\"],\"abstracts\":[\"The aim of this paper is to analyze the impact of the existence of mutual firms on the behavior of an insurance company and more precisely to study in which situations a private insurance firm may emerge in presence of an incumbent mutual firm. Our approach differs from the existing literature as we integrate the investment choices of the company and the fact that, because it commits on a fix contract, it can become insolvent. In such a situation we are able to characterize the unique optimal choices of an entrant company and the conditions favoring or preventing its appearance.\"],\"language\":\"und\",\"subjects\":[\"Insurance market, Mutual firms, Commitment, Insolvency\"],\"creators\":[\"Bourlès, Renaud\"],\"publicationdate\":\"2007-06-29\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/5821/1/MPRA_paper_5821.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/5821/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/5821/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/5821/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:5821\"},\"trust\":0.4250341}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:5821"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourlès, Renaud"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:5821"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Insurance market, Mutual firms, Commitment, Insolvency"]},"trust":{"type":"FLOAT","value":0.4250341},"target_publication_title":{"type":"STRING","value":"On the Emergence of Private Insurance in Presence of Mutual Agreements"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2007-06-29"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:15374\",\"titles\":[\"On the Emergence of Private Insurance in Presence of Mutual Agreements\"],\"abstracts\":[\"The aim of this paper is to analyze the impact of the existence of mutual firms on the behavior of an insurance company and more precisely to study in which situations a private insurance firm may replace mutual agreements. Our approach differs from the existing literature as we integrate\\nthe investment choices of the company and the fact that, because it commits on a fixed contract, it can become insolvent. In such a situation we are able to characterize the unique optimal choices of an entrant company and the conditions favoring or preventing its appearance.\"],\"language\":\"eng\",\"subjects\":[\"G22 - Insurance; Insurance Companies\",\"D8 - Information, Knowledge, and Uncertainty\",\"L1 - Market Structure, Firm Strategy, and Market Performance\"],\"creators\":[\"Bourlès, Renaud\"],\"publicationdate\":\"2009-05-11\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/15374/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/5821/1/MPRA_paper_5821.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/5821/1/MPRA_paper_5821.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/5821/1/MPRA_paper_5821.pdf\",\"id\":\"oai:RePEc:pra:mprapa:5821\"},\"trust\":0.57849836}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:15374"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourlès, Renaud"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:5821"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G22 - Insurance; Insurance Companies","D8 - Information, Knowledge, and Uncertainty","L1 - Market Structure, Firm Strategy, and Market Performance"]},"trust":{"type":"FLOAT","value":0.57849836},"target_publication_title":{"type":"STRING","value":"On the Emergence of Private Insurance in Presence of Mutual Agreements"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-11"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:15374\",\"titles\":[\"On the Emergence of Private Insurance in Presence of Mutual Agreements\"],\"abstracts\":[\"The aim of this paper is to analyze the impact of the existence of mutual firms on the behavior of an insurance company and more precisely to study in which situations a private insurance firm may replace mutual agreements. Our approach differs from the existing literature as we integrate\\nthe investment choices of the company and the fact that, because it commits on a fixed contract, it can become insolvent. In such a situation we are able to characterize the unique optimal choices of an entrant company and the conditions favoring or preventing its appearance.\"],\"language\":\"eng\",\"subjects\":[\"G22 - Insurance; Insurance Companies\",\"D8 - Information, Knowledge, and Uncertainty\",\"L1 - Market Structure, Firm Strategy, and Market Performance\"],\"creators\":[\"Bourlès, Renaud\"],\"publicationdate\":\"2009-05-11\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/15374/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/5827/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/5827/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/5827/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:5827\"},\"trust\":0.659812}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:15374"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourlès, Renaud"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:5827"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G22 - Insurance; Insurance Companies","D8 - Information, Knowledge, and Uncertainty","L1 - Market Structure, Firm Strategy, and Market Performance"]},"trust":{"type":"FLOAT","value":0.659812},"target_publication_title":{"type":"STRING","value":"On the Emergence of Private Insurance in Presence of Mutual Agreements"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-11"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:15374\",\"titles\":[\"On the Emergence of Private Insurance in Presence of Mutual Agreements\"],\"abstracts\":[\"The aim of this paper is to analyze the impact of the existence of mutual firms on the behavior of an insurance company and more precisely to study in which situations a private insurance firm may replace mutual agreements. Our approach differs from the existing literature as we integrate\\nthe investment choices of the company and the fact that, because it commits on a fixed contract, it can become insolvent. In such a situation we are able to characterize the unique optimal choices of an entrant company and the conditions favoring or preventing its appearance.\"],\"language\":\"eng\",\"subjects\":[\"G22 - Insurance; Insurance Companies\",\"D8 - Information, Knowledge, and Uncertainty\",\"L1 - Market Structure, Firm Strategy, and Market Performance\"],\"creators\":[\"Bourlès, Renaud\"],\"publicationdate\":\"2009-05-11\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/15374/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/5821/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/5821/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/5821/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:5821\"},\"trust\":0.48051256}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:15374"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourlès, Renaud"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:5821"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G22 - Insurance; Insurance Companies","D8 - Information, Knowledge, and Uncertainty","L1 - Market Structure, Firm Strategy, and Market Performance"]},"trust":{"type":"FLOAT","value":0.48051256},"target_publication_title":{"type":"STRING","value":"On the Emergence of Private Insurance in Presence of Mutual Agreements"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-11"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:5827\",\"titles\":[\"On the Emergence of Private Insurance in Presence of Mutual Agreements\"],\"abstracts\":[\"The aim of this paper is to analyze the impact of the existence of mutual firms on the behavior of an insurance company and more precisely to study in which situations a private insurance firm may emerge in presence of an incumbent mutual firm. Our approach differs from the existing literature as we integrate the investment choices of the company and the fact that, because it commits on a fix contract, it can become insolvent. In such a situation we are able to characterize the unique optimal choices of an entrant company and the conditions favoring or preventing its appearance.\"],\"language\":\"eng\",\"subjects\":[\"G22 - Insurance ; Insurance Companies ; Actuarial Studies\",\"D8 - Information, Knowledge, and Uncertainty\",\"L1 - Market Structure, Firm Strategy, and Market Performance\"],\"creators\":[\"Bourlès, Renaud\"],\"publicationdate\":\"2007-06-29\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/5827/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/5821/1/MPRA_paper_5821.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/5821/1/MPRA_paper_5821.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/5821/1/MPRA_paper_5821.pdf\",\"id\":\"oai:RePEc:pra:mprapa:5821\"},\"trust\":0.21665007}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:5827"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourlès, Renaud"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:5821"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G22 - Insurance ; Insurance Companies ; Actuarial Studies","D8 - Information, Knowledge, and Uncertainty","L1 - Market Structure, Firm Strategy, and Market Performance"]},"trust":{"type":"FLOAT","value":0.21665007},"target_publication_title":{"type":"STRING","value":"On the Emergence of Private Insurance in Presence of Mutual Agreements"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-06-29"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:5827\",\"titles\":[\"On the Emergence of Private Insurance in Presence of Mutual Agreements\"],\"abstracts\":[\"The aim of this paper is to analyze the impact of the existence of mutual firms on the behavior of an insurance company and more precisely to study in which situations a private insurance firm may emerge in presence of an incumbent mutual firm. Our approach differs from the existing literature as we integrate the investment choices of the company and the fact that, because it commits on a fix contract, it can become insolvent. In such a situation we are able to characterize the unique optimal choices of an entrant company and the conditions favoring or preventing its appearance.\"],\"language\":\"eng\",\"subjects\":[\"G22 - Insurance ; Insurance Companies ; Actuarial Studies\",\"D8 - Information, Knowledge, and Uncertainty\",\"L1 - Market Structure, Firm Strategy, and Market Performance\"],\"creators\":[\"Bourlès, Renaud\"],\"publicationdate\":\"2007-06-29\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/5827/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/15374/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/15374/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/15374/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:15374\"},\"trust\":0.9017781}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:5827"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourlès, Renaud"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:15374"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G22 - Insurance ; Insurance Companies ; Actuarial Studies","D8 - Information, Knowledge, and Uncertainty","L1 - Market Structure, Firm Strategy, and Market Performance"]},"trust":{"type":"FLOAT","value":0.9017781},"target_publication_title":{"type":"STRING","value":"On the Emergence of Private Insurance in Presence of Mutual Agreements"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2007-06-29"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:5827\",\"titles\":[\"On the Emergence of Private Insurance in Presence of Mutual Agreements\"],\"abstracts\":[\"The aim of this paper is to analyze the impact of the existence of mutual firms on the behavior of an insurance company and more precisely to study in which situations a private insurance firm may emerge in presence of an incumbent mutual firm. Our approach differs from the existing literature as we integrate the investment choices of the company and the fact that, because it commits on a fix contract, it can become insolvent. In such a situation we are able to characterize the unique optimal choices of an entrant company and the conditions favoring or preventing its appearance.\"],\"language\":\"eng\",\"subjects\":[\"G22 - Insurance ; Insurance Companies ; Actuarial Studies\",\"D8 - Information, Knowledge, and Uncertainty\",\"L1 - Market Structure, Firm Strategy, and Market Performance\"],\"creators\":[\"Bourlès, Renaud\"],\"publicationdate\":\"2007-06-29\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/5827/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/5821/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/5821/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/5821/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:5821\"},\"trust\":0.9869126}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:5827"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourlès, Renaud"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:5821"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G22 - Insurance ; Insurance Companies ; Actuarial Studies","D8 - Information, Knowledge, and Uncertainty","L1 - Market Structure, Firm Strategy, and Market Performance"]},"trust":{"type":"FLOAT","value":0.9869126},"target_publication_title":{"type":"STRING","value":"On the Emergence of Private Insurance in Presence of Mutual Agreements"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2007-06-29"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:5821\",\"titles\":[\"On the Emergence of Private Insurance in Presence of Mutual Agreements\"],\"abstracts\":[\"The aim of this paper is to analyze the impact of the existence of mutual firms on the behavior of an insurance company and more precisely to study in which situations a private insurance firm may emerge in presence of an incumbent mutual firm. Our approach differs from the existing literature as we integrate the investment choices of the company and the fact that, because it commits on a fix contract, it can become insolvent. In such a situation we are able to characterize the unique optimal choices of an entrant company and the conditions favoring or preventing its appearance.\"],\"language\":\"eng\",\"subjects\":[\"G22 - Insurance; Insurance Companies\",\"D8 - Information, Knowledge, and Uncertainty\",\"L1 - Market Structure, Firm Strategy, and Market Performance\"],\"creators\":[\"Bourlès, Renaud\"],\"publicationdate\":\"2007-06-29\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/5821/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/5821/1/MPRA_paper_5821.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/5821/1/MPRA_paper_5821.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/5821/1/MPRA_paper_5821.pdf\",\"id\":\"oai:RePEc:pra:mprapa:5821\"},\"trust\":0.3365841}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:5821"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourlès, Renaud"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:5821"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G22 - Insurance; Insurance Companies","D8 - Information, Knowledge, and Uncertainty","L1 - Market Structure, Firm Strategy, and Market Performance"]},"trust":{"type":"FLOAT","value":0.3365841},"target_publication_title":{"type":"STRING","value":"On the Emergence of Private Insurance in Presence of Mutual Agreements"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-06-29"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:5821\",\"titles\":[\"On the Emergence of Private Insurance in Presence of Mutual Agreements\"],\"abstracts\":[\"The aim of this paper is to analyze the impact of the existence of mutual firms on the behavior of an insurance company and more precisely to study in which situations a private insurance firm may emerge in presence of an incumbent mutual firm. Our approach differs from the existing literature as we integrate the investment choices of the company and the fact that, because it commits on a fix contract, it can become insolvent. In such a situation we are able to characterize the unique optimal choices of an entrant company and the conditions favoring or preventing its appearance.\"],\"language\":\"eng\",\"subjects\":[\"G22 - Insurance; Insurance Companies\",\"D8 - Information, Knowledge, and Uncertainty\",\"L1 - Market Structure, Firm Strategy, and Market Performance\"],\"creators\":[\"Bourlès, Renaud\"],\"publicationdate\":\"2007-06-29\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/5821/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/15374/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/15374/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/15374/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:15374\"},\"trust\":0.53153396}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:5821"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourlès, Renaud"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:15374"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G22 - Insurance; Insurance Companies","D8 - Information, Knowledge, and Uncertainty","L1 - Market Structure, Firm Strategy, and Market Performance"]},"trust":{"type":"FLOAT","value":0.53153396},"target_publication_title":{"type":"STRING","value":"On the Emergence of Private Insurance in Presence of Mutual Agreements"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2007-06-29"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:5821\",\"titles\":[\"On the Emergence of Private Insurance in Presence of Mutual Agreements\"],\"abstracts\":[\"The aim of this paper is to analyze the impact of the existence of mutual firms on the behavior of an insurance company and more precisely to study in which situations a private insurance firm may emerge in presence of an incumbent mutual firm. Our approach differs from the existing literature as we integrate the investment choices of the company and the fact that, because it commits on a fix contract, it can become insolvent. In such a situation we are able to characterize the unique optimal choices of an entrant company and the conditions favoring or preventing its appearance.\"],\"language\":\"eng\",\"subjects\":[\"G22 - Insurance; Insurance Companies\",\"D8 - Information, Knowledge, and Uncertainty\",\"L1 - Market Structure, Firm Strategy, and Market Performance\"],\"creators\":[\"Bourlès, Renaud\"],\"publicationdate\":\"2007-06-29\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/5821/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/5827/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/5827/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/5827/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:5827\"},\"trust\":0.47728372}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:5821"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bourlès, Renaud"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:5827"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G22 - Insurance; Insurance Companies","D8 - Information, Knowledge, and Uncertainty","L1 - Market Structure, Firm Strategy, and Market Performance"]},"trust":{"type":"FLOAT","value":0.47728372},"target_publication_title":{"type":"STRING","value":"On the Emergence of Private Insurance in Presence of Mutual Agreements"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2007-06-29"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace.uevora.pt:10174/10142\",\"titles\":[\"Percursos inclusivos das crianças e famílias portadoras de SXF\"],\"abstracts\":[\"Neste capítulo apresentaremos então o trabalho desenvolvido no âmbito\\ndo projeto Percursos inclusivos das crianças e famílias portadoras de\\nSíndrome X-Frágil realizado entre 2011 e 2013. Começaremos por\\nsituar a nossa investigação por referência à investigação que, a nível internacional, vem sendo produzida sobre a SXF e depois clarificaremos a perspetiva teórica em que assentou o nosso olhar para os percursos\\ninclusivos das crianças, jovens e famílias que pretendemos estudar. Descreveremos depois a forma como foi pensada e organizada a investigação, e os aspetos metodológicos envolvidos na conceção e desenho do projeto, bem como na recolha e tratamento dos dados.Apresentaremos de seguida os dados obtidos a partir da análise qualitativa,\\nna perspetiva da Grounded Theory, que nos permitiu encontrar não só grandes categorias e conceitos para a compreensão do percurso de vida das crianças e jovens estudados, como também as principais qualidades,\\nvariáveis ou fatores, que, em cada momento, contribuem para uma boa inclusão ou se tornam obstáculo, problema ou limitação. Por último, depois de discutidos os resultados e confrontados com a investigação que vem sendo feita noutros contextos, procuraremos\\nsalientar algumas conclusões, explicitando as implicações que podem ter para a vida das pessoas com SXF e para o trabalho que instituições e profissionais dos diferentes setores com elas desenvolvem.\"],\"language\":\"por\",\"subjects\":[\"Síndrome X frágil\",\"Inclusão\",\"Famílias\",\"Percursos inclusivos\"],\"creators\":[\"Franco, Vítor\",\"Bertão, Ana\",\"Apolónia, Ana\",\"Pires, Heldemerina\",\"Melo, Mdalena\",\"Santos, Graça\",\"Albuquerque, Carlos\",\"Ferreira, Fátima\",\"Cunha, Mariana\",\"Carmona, Carla\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"Edições Aloendro\",\"embargoenddate\":\"\",\"contributor\":[\"Franco, Vítor\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repositório Científico da Universidade de Évora\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10174/10142\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico da Universidade de Évora\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"http://hdl.handle.net/10174/13889\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico da Universidade de Évora\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10174/13889\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico da Universidade de Évora\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"Repositório Científico da Universidade de Évora\",\"url\":\"http://hdl.handle.net/10174/13889\",\"id\":\"oai:dspace.uevora.pt:10174/13889\"},\"trust\":0.031757057}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repositório Científico da Universidade de Évora"},"target_publication_id":{"type":"STRING","value":"oai:dspace.uevora.pt:10174/10142"},"target_publication_author_list":{"type":"LIST_STRING","value":["Franco, Vítor","Bertão, Ana","Apolónia, Ana","Pires, Heldemerina","Melo, Mdalena","Santos, Graça","Albuquerque, Carlos","Ferreira, Fátima","Cunha, Mariana","Carmona, Carla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.uevora.pt:10174/13889"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::d1dc3a8270a6f9394f88847d7f0050cf"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Síndrome X frágil","Inclusão","Famílias","Percursos inclusivos"]},"trust":{"type":"FLOAT","value":0.031757057},"target_publication_title":{"type":"STRING","value":"Percursos inclusivos das crianças e famílias portadoras de SXF"},"provenance_datasource_name":{"type":"STRING","value":"Repositório Científico da Universidade de Évora"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d1dc3a8270a6f9394f88847d7f0050cf"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace.uevora.pt:10174/13889\",\"titles\":[\"Percursos inclusivos das crianças e famílias portadoras de SXF\"],\"abstracts\":[\"Neste capítulo apresentaremos o trabalho desenvolvido no âmbito do projeto “Percursos inclusivos das crianças e famílias portadoras de Síndrome X-Frágil” realizado entre 2011 e 2013. Começaremos por situar a nossa investigação por referência à investigação que, a nível internacional vem sendo produzida sobre a SXF e depois clarificaremos a perspetiva teórica em que assentou o nosso olhar para os percursos inclusivos das crianças, jovens e famílias que pretendemos estudar.\\nDescreveremos a forma como foi pensada e organizada a investigação, e os aspetos metodológicos envolvidos na conceção e desenho do projeto, bem como na recolha e tratamento dos dados.\\nApresentaremos de seguida os dados obtidos a partir da análise qualitativa, na perspectiva da Grounded Theory, que nos permitiu encontrar não só grandes categorias e conceitos para a compreensão do percurso de vida das crianças e jovens estudados, como também as principais qualidades, variáveis ou fatores, que, em cada momento, contribuem para uma boa inclusão ou se tornam obstáculo, problema ou limitação.\\nPor último, depois de discutidos os resultados e confrontados com a investigação que vem sendo feita noutros contextos, procuraremos salientar algumas conclusões, explicitando as implicações que podem ter para a vida das pessoas com SXF e para o trabalho que instituições e profissionais dos diferentes setores com elas desenvolvem.\"],\"language\":\"por\",\"subjects\":[\"Síndrome X frágil\",\"Percursos Inclusivos\",\"Famílias\"],\"creators\":[\"Franco, Vítor\",\"Bertão, Ana\",\"Apolónio, Ana\",\"Pires, Heldemerina\",\"Melo, Madalena\",\"Santos, Graça\",\"Albuquerque, Carlos\",\"Ferreira, Fátima\",\"Cunha, Mariana\",\"Carmona, Carla\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"Editora Universidade Federal do Paraná (Brasil)\",\"embargoenddate\":\"\",\"contributor\":[\"Franco, Vítor\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repositório Científico da Universidade de Évora\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10174/13889\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico da Universidade de Évora\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"http://hdl.handle.net/10174/10142\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico da Universidade de Évora\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10174/10142\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico da Universidade de Évora\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"Repositório Científico da Universidade de Évora\",\"url\":\"http://hdl.handle.net/10174/10142\",\"id\":\"oai:dspace.uevora.pt:10174/10142\"},\"trust\":0.7004773}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repositório Científico da Universidade de Évora"},"target_publication_id":{"type":"STRING","value":"oai:dspace.uevora.pt:10174/13889"},"target_publication_author_list":{"type":"LIST_STRING","value":["Franco, Vítor","Bertão, Ana","Apolónio, Ana","Pires, Heldemerina","Melo, Madalena","Santos, Graça","Albuquerque, Carlos","Ferreira, Fátima","Cunha, Mariana","Carmona, Carla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.uevora.pt:10174/10142"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::d1dc3a8270a6f9394f88847d7f0050cf"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Síndrome X frágil","Percursos Inclusivos","Famílias"]},"trust":{"type":"FLOAT","value":0.7004773},"target_publication_title":{"type":"STRING","value":"Percursos inclusivos das crianças e famílias portadoras de SXF"},"provenance_datasource_name":{"type":"STRING","value":"Repositório Científico da Universidade de Évora"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d1dc3a8270a6f9394f88847d7f0050cf"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:astro-ph/0502046\",\"titles\":[\"Progenitors of Core-Collapse Supernovae\"],\"abstracts\":[\" The progenitors of core-collapse supernovae are stars with an initial mass\\ngreater than about 8M(sun). Understanding the evolution of these stars is\\nnecessary to comprehend the evolution and differences between supernovae.\\n We have constructed new and unique opacity tables to increase model accuracy\\nduring the latest stages of stellar evolution. We have investigated how initial\\nmass, initial composition and mass loss affects the progenitors and their\\npopulations. There are many prescriptions for mass loss. Different research\\ngroups use their preferred rates. We have compared 12 different prescriptions\\nand determined which provides the best fit to observations. We use our\\npreferred mass-loss scheme to make suggestions as to the source of the\\ndifferences between supernova types from our progenitor models.\\n Binary evolution is considered in order to search for low luminosity SN\\nprogenitors and progenitor types not possible from single stars. Removal of the\\nhydrogen envelope is more common and we find quite different hydrogen deficient\\nSN progenitors. We discuss the implications of our binary models for\\nultra-luminous X-ray sources and gamma-ray bursts. We present an estimation of\\nthe mass distribution for black holes at various metallcities showing that\\nmassive black holes are not formed until very low metallicities. Finally we\\ncombine the single star and binary results to determine their relative\\npopulations and compare to observations. However it is not possible to draw\\nmany firm conclusions because of the uncertainty in observations to date.\\n\",\"Comment: PhD Thesis, 171 pages, low detail figures, appendices removed to fit\\n onto arXiv.org. For high resolution figures and the appendices goto\\n http://www.iap.fr/users/eldridge/public.html\"],\"language\":\"eng\",\"subjects\":[\"Astrophysics\"],\"creators\":[\"Eldridge, John J.\"],\"publicationdate\":\"2005-02-02\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1146/annurev-astro-082708-101737\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/astro-ph/0502046\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1146/annurev-astro-082708-101737\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0908.0700\",\"id\":\"oai:arXiv.org:0908.0700\"},\"trust\":0.36561006}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:astro-ph/0502046"},"target_publication_author_list":{"type":"LIST_STRING","value":["Eldridge, John J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0908.0700"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Astrophysics"]},"trust":{"type":"FLOAT","value":0.36561006},"target_publication_title":{"type":"STRING","value":"Progenitors of Core-Collapse Supernovae"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2005-02-02"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:astro-ph/0502046\",\"titles\":[\"Progenitors of Core-Collapse Supernovae\"],\"abstracts\":[\" The progenitors of core-collapse supernovae are stars with an initial mass\\ngreater than about 8M(sun). Understanding the evolution of these stars is\\nnecessary to comprehend the evolution and differences between supernovae.\\n We have constructed new and unique opacity tables to increase model accuracy\\nduring the latest stages of stellar evolution. We have investigated how initial\\nmass, initial composition and mass loss affects the progenitors and their\\npopulations. There are many prescriptions for mass loss. Different research\\ngroups use their preferred rates. We have compared 12 different prescriptions\\nand determined which provides the best fit to observations. We use our\\npreferred mass-loss scheme to make suggestions as to the source of the\\ndifferences between supernova types from our progenitor models.\\n Binary evolution is considered in order to search for low luminosity SN\\nprogenitors and progenitor types not possible from single stars. Removal of the\\nhydrogen envelope is more common and we find quite different hydrogen deficient\\nSN progenitors. We discuss the implications of our binary models for\\nultra-luminous X-ray sources and gamma-ray bursts. We present an estimation of\\nthe mass distribution for black holes at various metallcities showing that\\nmassive black holes are not formed until very low metallicities. Finally we\\ncombine the single star and binary results to determine their relative\\npopulations and compare to observations. However it is not possible to draw\\nmany firm conclusions because of the uncertainty in observations to date.\\n\",\"Comment: PhD Thesis, 171 pages, low detail figures, appendices removed to fit\\n onto arXiv.org. For high resolution figures and the appendices goto\\n http://www.iap.fr/users/eldridge/public.html\"],\"language\":\"eng\",\"subjects\":[\"Astrophysics\"],\"creators\":[\"Eldridge, John J.\"],\"publicationdate\":\"2005-02-02\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1146/annurev-astro-082708-101737\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/astro-ph/0502046\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1146/annurev-astro-082708-101737\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0908.0700\",\"id\":\"oai:arXiv.org:0908.0700\"},\"trust\":0.36561006}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:astro-ph/0502046"},"target_publication_author_list":{"type":"LIST_STRING","value":["Eldridge, John J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0908.0700"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Astrophysics"]},"trust":{"type":"FLOAT","value":0.36561006},"target_publication_title":{"type":"STRING","value":"Progenitors of Core-Collapse Supernovae"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2005-02-02"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:astro-ph/0502046\",\"titles\":[\"Progenitors of Core-Collapse Supernovae\"],\"abstracts\":[\" The progenitors of core-collapse supernovae are stars with an initial mass\\ngreater than about 8M(sun). Understanding the evolution of these stars is\\nnecessary to comprehend the evolution and differences between supernovae.\\n We have constructed new and unique opacity tables to increase model accuracy\\nduring the latest stages of stellar evolution. We have investigated how initial\\nmass, initial composition and mass loss affects the progenitors and their\\npopulations. There are many prescriptions for mass loss. Different research\\ngroups use their preferred rates. We have compared 12 different prescriptions\\nand determined which provides the best fit to observations. We use our\\npreferred mass-loss scheme to make suggestions as to the source of the\\ndifferences between supernova types from our progenitor models.\\n Binary evolution is considered in order to search for low luminosity SN\\nprogenitors and progenitor types not possible from single stars. Removal of the\\nhydrogen envelope is more common and we find quite different hydrogen deficient\\nSN progenitors. We discuss the implications of our binary models for\\nultra-luminous X-ray sources and gamma-ray bursts. We present an estimation of\\nthe mass distribution for black holes at various metallcities showing that\\nmassive black holes are not formed until very low metallicities. Finally we\\ncombine the single star and binary results to determine their relative\\npopulations and compare to observations. However it is not possible to draw\\nmany firm conclusions because of the uncertainty in observations to date.\\n\",\"Comment: PhD Thesis, 171 pages, low detail figures, appendices removed to fit\\n onto arXiv.org. For high resolution figures and the appendices goto\\n http://www.iap.fr/users/eldridge/public.html\"],\"language\":\"eng\",\"subjects\":[\"Astrophysics\"],\"creators\":[\"Eldridge, John J.\"],\"publicationdate\":\"2005-02-02\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/astro-ph/0502046\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/0908.0700\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/0908.0700\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0908.0700\",\"id\":\"oai:arXiv.org:0908.0700\"},\"trust\":0.76886815}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:astro-ph/0502046"},"target_publication_author_list":{"type":"LIST_STRING","value":["Eldridge, John J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0908.0700"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Astrophysics"]},"trust":{"type":"FLOAT","value":0.76886815},"target_publication_title":{"type":"STRING","value":"Progenitors of Core-Collapse Supernovae"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2005-02-02"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:0908.0700\",\"titles\":[\"Progenitors of core-collapse supernovae\"],\"abstracts\":[\" Knowledge of the progenitors of core-collapse supernovae is a fundamental\\ncomponent in understanding the explosions. The recent progress in finding such\\nstars is reviewed. The minimum initial mass that can produce a supernova has\\nconverged to 8 +/- 1 solar masses, from direct detections of red supergiant\\nprogenitors of II-P SNe and the most massive white dwarf progenitors, although\\nthis value is model dependent. It appears that most type Ibc supernovae arise\\nfrom moderate mass interacting binaries. The highly energetic, broad-lined Ic\\nsupernovae are likely produced by massive, Wolf-Rayet progenitors. There is\\nsome evidence to suggest that the majority of massive stars above ~20 solar\\nmasses may collapse quietly to black-holes and that the explosions remain\\nundetected. The recent discovery of a class of ultra-bright type II supernovae\\nand the direct detection of some progenitor stars bearing luminous blue\\nvariable characteristics suggests some very massive stars do produce highly\\nenergetic explosions. The physical mechanism is open to debate and these SNe\\npose a challenge to stellar evolutionary theory.\\n\",\"Comment: Annual Review of Astronomy and Astrophysics, preprint version.\\n Published version and pdf reprints are linked from\\n http://star.pst.qub.ac.uk/~sjs\"],\"language\":\"eng\",\"subjects\":[\"Astrophysics - Solar and Stellar Astrophysics\",\"Astrophysics - Cosmology and Nongalactic Astrophysics\"],\"creators\":[\"Smartt, Stephen J.\"],\"publicationdate\":\"2009-08-05\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1146/annurev-astro-082708-101737\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/0908.0700\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/astro-ph/0502046\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/astro-ph/0502046\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/astro-ph/0502046\",\"id\":\"oai:arXiv.org:astro-ph/0502046\"},\"trust\":0.49022728}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:0908.0700"},"target_publication_author_list":{"type":"LIST_STRING","value":["Smartt, Stephen J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:astro-ph/0502046"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Astrophysics - Solar and Stellar Astrophysics","Astrophysics - Cosmology and Nongalactic Astrophysics"]},"trust":{"type":"FLOAT","value":0.49022728},"target_publication_title":{"type":"STRING","value":"Progenitors of core-collapse supernovae"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-08-05"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2352395\",\"titles\":[\"Different Stability-Indicating Chromatographic Techniques for the Determination of Netobimin\"],\"abstracts\":[\"Two simple, accurate, and sensitive methods were developed for the determination of netobimin in the presence of its degradation product. Method (A) was an HPLC method, performed on C18 column using acetonitrile/methanol/0.01 M potassium dihydrogen phosphate (56 : 14 : 30 by volume) as a mobile phase with a flow rate of 0.5 mL/min. Detection was performed at 254 nm. Method (B) was a TLC method, using silica gel 60 F254 plates; the optimized mobile phase was toluene/methanol/chloroform/ammonium hydroxide (5 : 4 : 6 : 0.1 by volume). The spots were scanned densitometrically at 346 nm. Linearity ranges were 1–10 μg/mL for method (A) and 0.5–5 μg/band for method (B), and the mean percentage recoveries were 99.3 ± 0.7% and 99.7 ± 0.7% for methods (A) and (B), respectively. The proposed methods were found to be specific for netobimin in the presence of up to 90% of its degradation product. Statistical comparison between the results obtained by these methods and the manufacturer method was done, and no significance difference was obtained.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Ramadan, Nesrin K.\",\"Mohamed, Afaf O.\",\"Shawky, Sara E.\",\"Salem, Maissa Y.\"],\"publicationdate\":\"2012-02-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Analytical Methods in Chemistry\",\"issn\":\"2090-8865\",\"eissn\":\"2090-8873\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2012/754650\",\"type\":\"doi\"},{\"value\":\"PMC3335307\",\"type\":\"pmc\"},{\"value\":\"22567566\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3335307\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2012/754650\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Analytical Methods in Chemistry\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2012/754650\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Analytical Methods in Chemistry\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2012/754650\",\"id\":\"oai:doaj.org/article:f574f93ba3a24969bfd83986cc9131d4\"},\"trust\":0.89553183}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2352395"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ramadan, Nesrin K.","Mohamed, Afaf O.","Shawky, Sara E.","Salem, Maissa Y."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:f574f93ba3a24969bfd83986cc9131d4"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.89553183},"target_publication_title":{"type":"STRING","value":"Different Stability-Indicating Chromatographic Techniques for the Determination of Netobimin"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:tel.archives-ouvertes.fr:tel-00777701\",\"titles\":[\"Micro-dispositifs accordables pour la conversion de fréquences optiques\"],\"abstracts\":[\"L\\u0027absence de source continue monochromatique Térahertz (THz) appropriée constitue un handicap majeur pour le développement des applications associées à cette gamme de longueur d\\u0027ondes. En effet, les technologies électroniques et optiques actuelles ne permettent de couvrir qu\\u0027une part réduite du spectre électromagnétique THz (0,3-10 THz). Dans ce contexte, la conversion de fréquences optiques, et plus précisément le photo -mélange, est une voie prometteuse pour la génération de signal THz de haute pureté spectrale sur toute la fenêtre du spectre THz. Le photomélange consiste à pomper un dispositif optoélectronique ultrarapide par deux signaux lasers dont les fréquences sont séparées par quelques THz (0,3 à 5 THz). Dans ce travail, nous proposons un nouveau micro-résonateur photonique bifréquence à cavité verticale et monolithique pour la réalisation de source laser bifréquence pour le photomélange. Ce nouveau résonateur est basé sur le couplage de deux résonateurs photoniques, un cristal photonique membranaire résonant d\\u0027une part et une cavité Fabry Pérot verticale d\\u0027autre part, accordés spectralement, pour réaliser un composant bifréquence. Le couplage optique résultant de l\\u0027association de ces deux éléments permet la génération de deux modes hybrides dont la différence de fréquence peut être ajustée en fonction du taux de couplage et donc de la position du cristal photonique dans le micro-résonateur. Le présent travail de thèse porte sur la conception, la fabrication de ce nouveau dispositif bifréquence et son application à la réalisation d\\u0027une source laser bi-mode semiconductrice fonctionnant à 1.55dm.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SPI:OTHER] Engineering Sciences/Other\",\"[SPI:OTHER] Sciences de l\\u0027ingénieur/Autre\",\"Cristal photonique\",\"Micro-cavité\",\"Laser bi-fréquence\",\"Conversion de fréquences optiques\",\"Photo-melange\",\"Terahertz\",\"MOEMS\"],\"creators\":[\"Kusiaku, Koku\"],\"publicationdate\":\"2012-10-04\",\"publisher\":\"Ecole Centrale de Lyon\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00777701\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"https://tel.archives-ouvertes.fr/tel-00777701\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://tel.archives-ouvertes.fr/tel-00777701\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://tel.archives-ouvertes.fr/tel-00777701\",\"id\":\"oai:HAL:tel-00777701v1\"},\"trust\":0.28600597}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:tel.archives-ouvertes.fr:tel-00777701"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kusiaku, Koku"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:tel-00777701v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SPI:OTHER] Engineering Sciences/Other","[SPI:OTHER] Sciences de l\u0027ingénieur/Autre","Cristal photonique","Micro-cavité","Laser bi-fréquence","Conversion de fréquences optiques","Photo-melange","Terahertz","MOEMS"]},"trust":{"type":"FLOAT","value":0.28600597},"target_publication_title":{"type":"STRING","value":"Micro-dispositifs accordables pour la conversion de fréquences optiques"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-10-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:tel-00777701v1\",\"titles\":[\"Micro-dispositifs accordables pour la conversion de fréquences optiques\"],\"abstracts\":[\"The lack of suitable monochromatic continuous-wave terahertz source consists of one the majors hurdles for terahertz spectrum applications development in various domains. Both electronic and optic technologies don\\u0027t allow covering all terahertz electromagnetic spectrum (0.3-10 THz). In this context and in order to generate high spectral purity wave over all THz spectrum window, a well-established technique consists in the photo-mixing procedure, where an ultrafast optoelectronic device is pumped by two laser signals whose frequencies are separated by an offset in the 0.3-5 THz window. In this work, we propose a novel dual-wavelength photonic micro resonator to provide a dual-mode monolithic semiconductor laser for THz generation by photo-mixing instead of the basic photo-mixing approach based on the use of two independent lasers. The novel photonic microresonator associates a vertical Fabry Perot (FP) cavity and photonic crystal membrane (PCM)resonators. A PCM exhibiting a resonant mode at normal incidence is inserted in a FP cavity with a resonant vertical mode at the same wavelength λ0. The resulting strong optical coupling leads to the generation of two mixed modes separated by a frequency difference which can be tuned through the loss rate of the PCM and its position inside the FP cavity. The work of this thesis focuses on the design, the micro-fabrication and the characterization of the dual-frequency resonator and its application to the realization of a single compact and flexible dual-mode semiconductor laser source around 1.55μm.\",\"L\\u0027absence de source continue monochromatique Térahertz (THz) appropriée constitue un handicap majeur pour le développement des applications associées à cette gamme de longueur d\\u0027ondes. En effet, les technologies électroniques et optiques actuelles ne permettent de couvrir qu\\u0027une part réduite du spectre électromagnétique THz (0,3-10 THz). Dans ce contexte, la conversion de fréquences optiques, et plus précisément le photo -mélange, est une voie prometteuse pour la génération de signal THz de haute pureté spectrale sur toute la fenêtre du spectre THz. Le photomélange consiste à pomper un dispositif optoélectronique ultrarapide par deux signaux lasers dont les fréquences sont séparées par quelques THz (0,3 à 5 THz). Dans ce travail, nous proposons un nouveau micro-résonateur photonique bifréquence à cavité verticale et monolithique pour la réalisation de source laser bifréquence pour le photomélange. Ce nouveau résonateur est basé sur le couplage de deux résonateurs photoniques, un cristal photonique membranaire résonant d\\u0027une part et une cavité Fabry Pérot verticale d\\u0027autre part, accordés spectralement, pour réaliser un composant bifréquence. Le couplage optique résultant de l\\u0027association de ces deux éléments permet la génération de deux modes hybrides dont la différence de fréquence peut être ajustée en fonction du taux de couplage et donc de la position du cristal photonique dans le micro-résonateur. Le présent travail de thèse porte sur la conception, la fabrication de ce nouveau dispositif bifréquence et son application à la réalisation d\\u0027une source laser bi-mode semiconductrice fonctionnant à 1.55dm.\"],\"language\":\"fra/fre\",\"subjects\":[\"Photonic crystal\",\"Microcavity\",\"Dual-wavelength laser\",\"Optical frequency conversion\",\"Photomixing\",\"Terahertz\",\"MOEMS\",\"[SPI.OTHER] Engineering Sciences/Other\"],\"creators\":[\"Kusiaku, Koku\"],\"publicationdate\":\"2012-10-04\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Institut des nanotechnologies de Lyon - Site d\\u0027Ecully (INL) ; Université Claude Bernard - Lyon I (UCBL) - Ecole Centrale de Lyon - Institut National des Sciences Appliquées [INSA] - Lyon - CNRS\",\"Ecole Centrale de Lyon\",\"Xavier Letartre;Jean-Louis Leclercq\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://tel.archives-ouvertes.fr/tel-00777701\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://tel.archives-ouvertes.fr/tel-00777701\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00777701\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://tel.archives-ouvertes.fr/tel-00777701\",\"id\":\"oai:tel.archives-ouvertes.fr:tel-00777701\"},\"trust\":0.68808776}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:tel-00777701v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kusiaku, Koku"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:tel.archives-ouvertes.fr:tel-00777701"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Photonic crystal","Microcavity","Dual-wavelength laser","Optical frequency conversion","Photomixing","Terahertz","MOEMS","[SPI.OTHER] Engineering Sciences/Other"]},"trust":{"type":"FLOAT","value":0.68808776},"target_publication_title":{"type":"STRING","value":"Micro-dispositifs accordables pour la conversion de fréquences optiques"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-10-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/423938\",\"titles\":[\"Maatregelen ter vermindering van fijnstofemissie uit de pluimveehouderij: optimalisatie aanbrengen oliefilm op strooisel bij leghennen in volièrehuisvesting \\u003d Measures to reduce fine dust emission from poultry: optimization of oil application on litter of aviary housing for layers\"],\"abstracts\":[\"Dit rapport beschrijft onderzoek naar het aanbrengen van een film van koolzaadolie op de strooiselvloer van volièrehuisvesting voor leghennen, ter reductie van de fijnstofemissie. De verdeling van de toegediende olie over het vloeroppervlak en dosis-effectrelaties zijn onderzocht. De emissiereducties van PM10 bedroegen 31, 64 en 81% bij doseringen van respectievelijk 15, 30 en 45 ml/m2.This report describes research into the application of a film of rapeseed oil on the litter floor of aviary housing for laying hens as a mitigation measure for particulate matter. Distribution of the oil film over the floor and dose-effect relationships were investigated. Emission reductions for PM10 were 31, 64 and 81% at dosages of 15, 30 and 45 ml/m2 respectively.\"],\"language\":\"dut/nld\",\"subjects\":[\"pluimveehouderij\",\"poultry farming\",\"hennen\",\"hens\",\"eierproductie\",\"egg production\",\"huisvesting van kippen\",\"chicken housing\",\"volières\",\"aviaries\",\"zaadoliën\",\"seed oils\",\"vernevelen\",\"fogging\",\"strooisel\",\"litter (plant)\",\"fijn stof\",\"particulate matter\",\"emissie\",\"emission\",\"luchtverontreiniging\",\"air pollution\",\"stalklimaat\",\"stall climate\",\"Animal Husbandry and Environment\",\"Dierhouderij en omgeving\",\"Poultry\",\"Pluimvee\"],\"creators\":[\"Winkel, A.\",\"Emous, R. A.\",\"Mosquera Losada, J.\",\"Nijeboer, G. M.\",\"Hattum, T. G.\",\"Riel, J. W.\",\"Aarnink, A. J. A.\",\"Ogink, N. W. M.\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Wageningen UR Livestock Research\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/210164\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"External research report\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/423938\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/423938\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/423938\",\"id\":\"wur:oai:library.wur.nl:wurpubs/423938\"},\"trust\":0.24796128}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/423938"},"target_publication_author_list":{"type":"LIST_STRING","value":["Winkel, A.","Emous, R. A.","Mosquera Losada, J.","Nijeboer, G. M.","Hattum, T. G.","Riel, J. W.","Aarnink, A. J. A.","Ogink, N. W. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/423938"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["pluimveehouderij","poultry farming","hennen","hens","eierproductie","egg production","huisvesting van kippen","chicken housing","volières","aviaries","zaadoliën","seed oils","vernevelen","fogging","strooisel","litter (plant)","fijn stof","particulate matter","emissie","emission","luchtverontreiniging","air pollution","stalklimaat","stall climate","Animal Husbandry and Environment","Dierhouderij en omgeving","Poultry","Pluimvee"]},"trust":{"type":"FLOAT","value":0.24796128},"target_publication_title":{"type":"STRING","value":"Maatregelen ter vermindering van fijnstofemissie uit de pluimveehouderij: optimalisatie aanbrengen oliefilm op strooisel bij leghennen in volièrehuisvesting \u003d Measures to reduce fine dust emission from poultry: optimization of oil application on litter of aviary housing for layers"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:pastel.archives-ouvertes.fr:pastel-00002195\",\"titles\":[\"Développements de la microscopie électrochimique pour la microfabrication. Application à l\\u0027élaboration de surfaces à contraste de mouillage sur des supports fluorés.\"],\"abstracts\":[\"Notre objectif est de fabriquer par microscopie électrochimique (SECM) des motifs hydrophiles sur un support hydrophobe afin de les inclure ultérieurement dans des microsystèmes. Nous avons considéré du point de vue théorique la microgravure de surface par SECM. Pour cela nous avons étudié par simulation numérique l\\u0027influence du balayage d\\u0027une surface par une microélectrode disque sur la réponse en courant et avons adapté théoriquement et expérimentalement le SECM à une microélectrode bande. Nous avons appliqué ces résultats à la réalisation de motifs de haute énergie en forme de bande sur une surface fluorée (PTFE et verre silanisé). Nous avons évalué la variation de l\\u0027énergie de surface liée à la présence de ces motifs par mesure des angles de contact et de la déformation locale de la ligne triple d\\u0027un liquide. Cette étude révèle des effets liés à l\\u0027hétérogénéité des surfaces utilisées. Dans la perspective de former un film mince liquide sur un motif, nous avons étudié les phénomènes de condensation d\\u0027un liquide au niveau d\\u0027une modification de surface.\"],\"language\":\"fra/fre\",\"subjects\":[\"[CHIM] Chemical Sciences\",\"[CHIM] Chimie\",\"SECM Transfert de masse Microfabrication Surfaces perfluorées Mouillage Condensation\"],\"creators\":[\"Fuchs, Adrien\"],\"publicationdate\":\"2006-04-25\",\"publisher\":\"Université Pierre et Marie Curie - Paris VI\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://pastel.archives-ouvertes.fr/pastel-00002195\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"https://pastel.archives-ouvertes.fr/pastel-00002195\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://pastel.archives-ouvertes.fr/pastel-00002195\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://pastel.archives-ouvertes.fr/pastel-00002195\",\"id\":\"oai:HAL:pastel-00002195v1\"},\"trust\":0.30217898}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:pastel.archives-ouvertes.fr:pastel-00002195"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fuchs, Adrien"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:pastel-00002195v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[CHIM] Chemical Sciences","[CHIM] Chimie","SECM Transfert de masse Microfabrication Surfaces perfluorées Mouillage Condensation"]},"trust":{"type":"FLOAT","value":0.30217898},"target_publication_title":{"type":"STRING","value":"Développements de la microscopie électrochimique pour la microfabrication. Application à l\u0027élaboration de surfaces à contraste de mouillage sur des supports fluorés."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2006-04-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:pastel-00002195v1\",\"titles\":[\"Développements de la microscopie électrochimique pour la microfabrication. Application à l\\u0027élaboration de surfaces à contraste de mouillage sur des supports fluorés.\"],\"abstracts\":[\"The aim of this thesis is to make hydrophilic patterns using a hydrophobic substrate and electrochemical microscopy (SECM) in order to subsequently include them in Microsystems. We looked at the theoretical aspect of surface microetching with SECM. Using digital stimulation, we observed the movement\\u0027s influence of a disk microelectrode scanning the surface on the current response and we adapted SECM to a microelectrode band both theoretically and experimentally. We then used these results to make high-energy patterns in the shape of bands on low energy fluorinated surfaces (PTFE and silanised glass). We measured the variation of the surface energy as a result of the presence of these patterns, using the contact angles and the local distortion of the triple line of a liquid. With the aim of creating a thin liquid strip on a pattern, we finally observed the condensation of a liquid on such locally modified surfaces.\",\"Notre objectif est de fabriquer par microscopie électrochimique (SECM) des motifs hydrophiles sur un support hydrophobe afin de les inclure ultérieurement dans des microsystèmes. Nous avons considéré du point de vue théorique la microgravure de surface par SECM. Pour cela nous avons étudié par simulation numérique l\\u0027influence du balayage d\\u0027une surface par une microélectrode disque sur la réponse en courant et avons adapté théoriquement et expérimentalement le SECM à une microélectrode bande. Nous avons appliqué ces résultats à la réalisation de motifs de haute énergie en forme de bande sur une surface fluorée (PTFE et verre silanisé). Nous avons évalué la variation de l\\u0027énergie de surface liée à la présence de ces motifs par mesure des angles de contact et de la déformation locale de la ligne triple d\\u0027un liquide. Cette étude révèle des effets liés à l\\u0027hétérogénéité des surfaces utilisées. Dans la perspective de former un film mince liquide sur un motif, nous avons étudié les phénomènes de condensation d\\u0027un liquide au niveau d\\u0027une modification de surface.\"],\"language\":\"fra/fre\",\"subjects\":[\"SECM Mass transfer Microfabrication Perfluorinated surfaces Wetting Condensation\",\"[CHIM] Chemical Sciences\"],\"creators\":[\"Fuchs, Adrien\"],\"publicationdate\":\"2006-04-25\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire Environnement et chimie analytique (LECA) ; ESPCI ParisTech - CNRS\",\"Université Pierre et Marie Curie - Paris VI\",\"Catherine Combellas\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://pastel.archives-ouvertes.fr/pastel-00002195\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://pastel.archives-ouvertes.fr/pastel-00002195\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://pastel.archives-ouvertes.fr/pastel-00002195\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://pastel.archives-ouvertes.fr/pastel-00002195\",\"id\":\"oai:pastel.archives-ouvertes.fr:pastel-00002195\"},\"trust\":0.34321606}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:pastel-00002195v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fuchs, Adrien"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:pastel.archives-ouvertes.fr:pastel-00002195"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["SECM Mass transfer Microfabrication Perfluorinated surfaces Wetting Condensation","[CHIM] Chemical Sciences"]},"trust":{"type":"FLOAT","value":0.34321606},"target_publication_title":{"type":"STRING","value":"Développements de la microscopie électrochimique pour la microfabrication. Application à l\u0027élaboration de surfaces à contraste de mouillage sur des supports fluorés."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2006-04-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:centaur.reading.ac.uk:18089\",\"titles\":[\"An examination of actors that impact technology introduction to FM\"],\"abstracts\":[\"Developing and implementing a technology for Facilities Management (FM) can be a complex process. This is particularly the case when a technology impacts on an organisation as a whole. There are often a number of relevant actors, internal and external to FM, who should be engaged. This engagement is guided by the strategy of the organisation which is led by top management decisions. Indeed, it is top management who have the final decision to implement a technology. Actors of top management and other relevant actors will have their own discourses toward the implementation of the technology based on how they foresee the technology befittingly benefitting the organisation. This paper examines actors who play a relevant and necessary part in supporting and implementing a technology to FM. It examines how an actor’s discourse toward the project inhibits or speeds up the implementation of a technology. The methods used for this paper are based on a two year case study in a FM department where a technology development was observed and interviews with key participants were conducted. Critical discourse analysis is used to analyse the data. Prominent discourses that emerge from the data are emphasised during the process of introducing the technology. This research moves beyond focusing purely on project successes but examines the difficulties and the hurdles that must be overcome to reach a successful technology implementation.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Lindkvist, Carmel\",\"Elmualim, Abbas\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Central Archive at the University of Reading\"],\"pids\":[],\"instances\":[{\"url\":\"http://centaur.reading.ac.uk/18089/\",\"license\":\"OPEN\",\"hostedby\":\"Central Archive at the University of Reading\",\"instancetype\":\"Conference object\"},{\"url\":\"http://centaur.reading.ac.uk/18089/1/ARCOM_Carmel_30042010_-_ARCOM_2010_%282%29.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Central Archive at the University of Reading\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://centaur.reading.ac.uk/18089/1/ARCOM_Carmel_30042010_-_ARCOM_2010_%282%29.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Central Archive at the University of Reading\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://centaur.reading.ac.uk/18089/1/ARCOM_Carmel_30042010_-_ARCOM_2010_%282%29.pdf\",\"id\":\"oai:centaur.reading.ac.uk:18089\"},\"trust\":0.29333806}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Central Archive at the University of Reading"},"target_publication_id":{"type":"STRING","value":"oai:centaur.reading.ac.uk:18089"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lindkvist, Carmel","Elmualim, Abbas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:centaur.reading.ac.uk:18089"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"trust":{"type":"FLOAT","value":0.29333806},"target_publication_title":{"type":"STRING","value":"An examination of actors that impact technology introduction to FM"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b29eed44276144e4e8103a661f9a78b7"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3586625\",\"titles\":[\"Making better maize plants for sustainable grain production in a changing climate\"],\"abstracts\":[\"Achieving grain supply security with limited arable land is a major challenge in the twenty-first century, owing to the changing climate and increasing global population. Maize plays an increasingly vital role in global grain production. As a C4 plant, maize has a high yield potential. Maize is predicted to become the number one cereal in the world by 2020. However, maize production has plateaued in many countries, and hybrid and production technologies have been fully exploited. Thus, there is an urgent need to shape maize traits and architectures for increased stress tolerance and higher yield in a changing climate. Recent achievements in genomics, proteomics, and metabolomics have provided an unprecedented opportunity to make better maize. In this paper, we discuss the current challenges and potential of maize production, particularly in China. We also highlight the need for enhancing maize tolerance to drought and heat waves, summarize the elite shoot and root traits and phenotypes, and propose an ideotype for sustainable maize production in a changing climate. This will facilitate targeted maize improvement through a conventional breeding program combined with molecular techniques.\"],\"language\":\"eng\",\"subjects\":[\"Plant Science\",\"Perspective\",\"maize ideotype\",\"drought and heat stress\",\"changing climate\",\"sustainable food production\",\"maize production\"],\"creators\":[\"Gong, Fangping\",\"Wu, Xiaolin\",\"Zhang, Huiyong\",\"Chen, Yanhui\",\"Wang, Wei\"],\"publicationdate\":\"2015-10-01\",\"publisher\":\"Frontiers Media S.A.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Frontiers in Plant Science\",\"issn\":\"\",\"eissn\":\"1664-462X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3389/fpls.2015.00835\",\"type\":\"doi\"},{\"value\":\"PMC4593952\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4593952\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.3389/fpls.2015.00835\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Plant Science\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.3389/fpls.2015.00835\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Plant Science\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Frontiers\",\"url\":\"http://dx.doi.org/10.3389/fpls.2015.00835\",\"id\":\"10.3389/fpls.2015.00835\"},\"trust\":0.97430265}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3586625"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gong, Fangping","Wu, Xiaolin","Zhang, Huiyong","Chen, Yanhui","Wang, Wei"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.3389/fpls.2015.00835"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::3db634fc5446f389d0b826ea400a5da6"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Plant Science","Perspective","maize ideotype","drought and heat stress","changing climate","sustainable food production","maize production"]},"trust":{"type":"FLOAT","value":0.97430265},"target_publication_title":{"type":"STRING","value":"Making better maize plants for sustainable grain production in a changing climate"},"provenance_datasource_name":{"type":"STRING","value":"Frontiers"},"target_dateofacceptance":{"type":"DATE","value":"2015-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:hub.hku.hk:10722/176398\",\"titles\":[\"Efficacy of lignocaine 2% gel in chalazion surgery\"],\"abstracts\":[\"Background/aims: To determine whether topical 2% lignocaine (lidocaine) gel is an effective anaesthetic agent for chalazion surgery. Methods: In a randomised controlled clinical trial, 57 subjects aged 12 years or over requiring incision and curettage for chalazion were recruited over an 8 month period. Patients were randomised into two groups. One group received 1.5 ml of lignocaine 2% injection and the other 1.5 ml of lignocaine 2% gel topically. Standard incision and curettage was then performed. The primary outcome of interest was the total pain experienced during the entire procedure including anaesthetic administration as well as incision and curettage. The pain from the local anaesthetic administration and during incision and curettage was assessed independently using a visual analogue scale (0-100). The sum of these two scores would be the total pain score out of 200. \\\"Fear of injection\\\" score (0-100) was also assessed. Results: There was a statistically significant difference in the mean total pain scores between the injection and the gel groups (95.6 v 57.0) (p \\u003c0.001) (α \\u003d 0.05) (1 - β \\u003d 0.9394). There was a statistically significant difference in the mean scores on \\\"pain of anaesthetic administration\\\" (47.0 v 5.5) (p \\u003c0.000). There was no statistically significant differences in the mean scores on \\\"fear of injection\\\" (43.9 v 47.7) (p \\u003d 0.668) and \\\"pain during incision and curettage\\\" (48.28 v 51.4) (p\\u003d0.679). Conclusions: Lignocaine 2% gel is effective in chalazion surgery especially in lowering the pain caused by anaesthetic administration.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Li, Rth\",\"Lai, Jsm\",\"Ng, Jsk\",\"Law, Rwk\",\"Lau, Emc\",\"Lam, Dsc\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"United Kingdom\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"HKU Scholars Hub\"],\"pids\":[{\"value\":\"10.1136/bjo.87.2.157\",\"type\":\"doi\"},{\"value\":\"PMC1771487\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/10722/176398\",\"license\":\"OPEN\",\"hostedby\":\"HKU Scholars Hub\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC1771487\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC1771487\",\"id\":\"oai:europepmc.org:982882\"},\"trust\":0.59857553}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"HKU Scholars Hub"},"target_publication_id":{"type":"STRING","value":"oai:hub.hku.hk:10722/176398"},"target_publication_author_list":{"type":"LIST_STRING","value":["Li, Rth","Lai, Jsm","Ng, Jsk","Law, Rwk","Lau, Emc","Lam, Dsc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:982882"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.59857553},"target_publication_title":{"type":"STRING","value":"Efficacy of lignocaine 2% gel in chalazion surgery"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d707329bece455a462b58ce00d1194c9"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:982882\",\"titles\":[\"Efficacy of lignocaine 2% gel in chalazion surgery\"],\"abstracts\":[\"Background/aims: To determine whether topical 2% lignocaine (lidocaine) gel is an effective anaesthetic agent for chalazion surgery.\"],\"language\":\"eng\",\"subjects\":[\"Scientific Correspondence\"],\"creators\":[\"Li, R. T. H.\",\"Lai, J. S. M.\",\"Ng, J. S. K.\",\"Law, R. W. K.\",\"Lau, E. M. C.\",\"Lam, D. S. C.\"],\"publicationdate\":\"2003-02-01\",\"publisher\":\"Copyright 2003 British Journal of Ophthalmology\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC1771487\",\"type\":\"pmc\"},{\"value\":\"10.1136/bjo.87.2.157\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC1771487\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1136/bjo.87.2.157\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"HKU Scholars Hub\",\"url\":\"http://hdl.handle.net/10722/176398\",\"id\":\"oai:hub.hku.hk:10722/176398\"},\"trust\":0.967949}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:982882"},"target_publication_author_list":{"type":"LIST_STRING","value":["Li, R. T. H.","Lai, J. S. M.","Ng, J. S. K.","Law, R. W. K.","Lau, E. M. C.","Lam, D. S. C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hub.hku.hk:10722/176398"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::d707329bece455a462b58ce00d1194c9"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Scientific Correspondence"]},"trust":{"type":"FLOAT","value":0.967949},"target_publication_title":{"type":"STRING","value":"Efficacy of lignocaine 2% gel in chalazion surgery"},"provenance_datasource_name":{"type":"STRING","value":"HKU Scholars Hub"},"target_dateofacceptance":{"type":"DATE","value":"2003-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:982882\",\"titles\":[\"Efficacy of lignocaine 2% gel in chalazion surgery\"],\"abstracts\":[\"Background/aims: To determine whether topical 2% lignocaine (lidocaine) gel is an effective anaesthetic agent for chalazion surgery.\"],\"language\":\"eng\",\"subjects\":[\"Scientific Correspondence\"],\"creators\":[\"Li, R. T. H.\",\"Lai, J. S. M.\",\"Ng, J. S. K.\",\"Law, R. W. K.\",\"Lau, E. M. C.\",\"Lam, D. S. C.\"],\"publicationdate\":\"2003-02-01\",\"publisher\":\"Copyright 2003 British Journal of Ophthalmology\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC1771487\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC1771487\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10722/176398\",\"license\":\"OPEN\",\"hostedby\":\"HKU Scholars Hub\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10722/176398\",\"license\":\"OPEN\",\"hostedby\":\"HKU Scholars Hub\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"HKU Scholars Hub\",\"url\":\"http://hdl.handle.net/10722/176398\",\"id\":\"oai:hub.hku.hk:10722/176398\"},\"trust\":0.09446359}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:982882"},"target_publication_author_list":{"type":"LIST_STRING","value":["Li, R. T. H.","Lai, J. S. M.","Ng, J. S. K.","Law, R. W. K.","Lau, E. M. C.","Lam, D. S. C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hub.hku.hk:10722/176398"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::d707329bece455a462b58ce00d1194c9"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Scientific Correspondence"]},"trust":{"type":"FLOAT","value":0.09446359},"target_publication_title":{"type":"STRING","value":"Efficacy of lignocaine 2% gel in chalazion surgery"},"provenance_datasource_name":{"type":"STRING","value":"HKU Scholars Hub"},"target_dateofacceptance":{"type":"DATE","value":"2003-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.tue.nl:620432\",\"titles\":[\"The phase and amplitude corrected Fourier transform for the detection of small signals\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Zon, Jbad\",\"Koningsberger, Dc\",\"Prins, R.\",\"Sayers, DE\"],\"publicationdate\":\"1984-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repository TU/e\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.tue.nl/620432\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"},{\"url\":\"http://repository.tue.nl/620432\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.tue.nl/620432\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.tue.nl/620432\",\"id\":\"tue:oai:library.tue.nl:620432\"},\"trust\":0.41550303}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repository TU/e"},"target_publication_id":{"type":"STRING","value":"oai:library.tue.nl:620432"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zon, Jbad","Koningsberger, Dc","Prins, R.","Sayers, DE"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tue:oai:library.tue.nl:620432"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.41550303},"target_publication_title":{"type":"STRING","value":"The phase and amplitude corrected Fourier transform for the detection of small signals"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1984-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::99c5e07b4d5de9d18c350cdf64c5aa3d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.tue.nl:620432\",\"titles\":[\"The phase and amplitude corrected Fourier transform for the detection of small signals\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Zon, Jbad\",\"Koningsberger, Dc\",\"Prins, R.\",\"Sayers, DE\"],\"publicationdate\":\"1984-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repository TU/e\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.tue.nl/620432\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"},{\"url\":\"http://dspace.library.uu.nl/handle/1874/5984\",\"license\":\"OPEN\",\"hostedby\":\"Utrecht University Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dspace.library.uu.nl/handle/1874/5984\",\"license\":\"OPEN\",\"hostedby\":\"Utrecht University Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://dspace.library.uu.nl/handle/1874/5984\",\"id\":\"uu:oai:dspace.library.uu.nl:1874/5984\"},\"trust\":0.38443524}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repository TU/e"},"target_publication_id":{"type":"STRING","value":"oai:library.tue.nl:620432"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zon, Jbad","Koningsberger, Dc","Prins, R.","Sayers, DE"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uu:oai:dspace.library.uu.nl:1874/5984"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.38443524},"target_publication_title":{"type":"STRING","value":"The phase and amplitude corrected Fourier transform for the detection of small signals"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1984-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::99c5e07b4d5de9d18c350cdf64c5aa3d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HUBerlin.de:25638\",\"titles\":[\"The Congruence of Theoretical and Empirical Patterns of Inter-Store Price Competition\"],\"abstracts\":[\"The present paper concentrates on the nature and structure of inter-store price competition. It focusses especially on price competition between different retailers within one trading area and within one product category. Six theoretically founded hypotheses postulate competitive relations between manufacturers’ UPCs and the retailers covering various possible competitive conditions such as competitive independencies or various degrees of competitive dependency among the UPCs and the retailers. These hypotheses have been tested empirically with store-level scanner data. UPC is the Universal Product Code, the most dominant coding technology in the United States. It allows for point-of-sale (POS) scanning systems and to continuously collect data by item at the retail level. The retail prices of 27 UPCs from a five stores suburban market place measured over 104 weeks are analyzed by using the three-mode component analysis to determine the basic and important competitive conditions in the market under study. On the basis of the estimated component structure of the UPCs, of the stores and of the weeks as well as on the basis of the core array, which provides the information of how the components of different modes (here UPCs, stores, and weeks) are related to each other the appropriateness of the six research hypotheses is tested. The empirical results support the theoretical implications that the price competition between UPCs and retailers in one product category and one trading area is primarily determined by manufacturers’ pricing strategies. The manufacturer “set” the retail prices (shelf prices and temporary price reductions) by deciding on the number and size of the trade deals whereas the retailers exert passive pricing strategies by passing some or most of the trade deals through to their consumers.\"],\"language\":\"eng\",\"subjects\":[\"Wirtschaft\",\"Pricing Research\",\"Game Theory\",\"Price Competition among Manufacturers and Retailers\",\"Empirical Industrial Organization\",\"ddc:330\"],\"creators\":[\"Klapper, Daniel\",\"Cooper, Lee G.\",\"Hildebrandt, Lutz\"],\"publicationdate\":\"\",\"publisher\":\"Humboldt University Berlin, Germany\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\"],\"pids\":[],\"instances\":[{\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d25638\",\"license\":\"OPEN\",\"hostedby\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10419/61737\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/61737\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/61737\",\"id\":\"oai:econstor.eu:10419/61737\"},\"trust\":0.962972}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin"},"target_publication_id":{"type":"STRING","value":"oai:HUBerlin.de:25638"},"target_publication_author_list":{"type":"LIST_STRING","value":["Klapper, Daniel","Cooper, Lee G.","Hildebrandt, Lutz"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/61737"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Wirtschaft","Pricing Research","Game Theory","Price Competition among Manufacturers and Retailers","Empirical Industrial Organization","ddc:330"]},"trust":{"type":"FLOAT","value":0.962972},"target_publication_title":{"type":"STRING","value":"The Congruence of Theoretical and Empirical Patterns of Inter-Store Price Competition"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9fc3d7152ba9336a670e36d0ed79bc43"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:HUBerlin.de:25638\",\"titles\":[\"The Congruence of Theoretical and Empirical Patterns of Inter-Store Price Competition\"],\"abstracts\":[\"The present paper concentrates on the nature and structure of inter-store price competition. It focusses especially on price competition between different retailers within one trading area and within one product category. Six theoretically founded hypotheses postulate competitive relations between manufacturers’ UPCs and the retailers covering various possible competitive conditions such as competitive independencies or various degrees of competitive dependency among the UPCs and the retailers. These hypotheses have been tested empirically with store-level scanner data. UPC is the Universal Product Code, the most dominant coding technology in the United States. It allows for point-of-sale (POS) scanning systems and to continuously collect data by item at the retail level. The retail prices of 27 UPCs from a five stores suburban market place measured over 104 weeks are analyzed by using the three-mode component analysis to determine the basic and important competitive conditions in the market under study. On the basis of the estimated component structure of the UPCs, of the stores and of the weeks as well as on the basis of the core array, which provides the information of how the components of different modes (here UPCs, stores, and weeks) are related to each other the appropriateness of the six research hypotheses is tested. The empirical results support the theoretical implications that the price competition between UPCs and retailers in one product category and one trading area is primarily determined by manufacturers’ pricing strategies. The manufacturer “set” the retail prices (shelf prices and temporary price reductions) by deciding on the number and size of the trade deals whereas the retailers exert passive pricing strategies by passing some or most of the trade deals through to their consumers.\"],\"language\":\"eng\",\"subjects\":[\"Wirtschaft\",\"Pricing Research\",\"Game Theory\",\"Price Competition among Manufacturers and Retailers\",\"Empirical Industrial Organization\",\"ddc:330\"],\"creators\":[\"Klapper, Daniel\",\"Cooper, Lee G.\",\"Hildebrandt, Lutz\"],\"publicationdate\":\"1999-01-01\",\"publisher\":\"Humboldt University Berlin, Germany\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\"],\"pids\":[],\"instances\":[{\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d25638\",\"license\":\"OPEN\",\"hostedby\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"1999-01-01\"},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/61737\",\"id\":\"oai:econstor.eu:10419/61737\"},\"trust\":0.93201214}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin"},"target_publication_id":{"type":"STRING","value":"oai:HUBerlin.de:25638"},"target_publication_author_list":{"type":"LIST_STRING","value":["Klapper, Daniel","Cooper, Lee G.","Hildebrandt, Lutz"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/61737"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Wirtschaft","Pricing Research","Game Theory","Price Competition among Manufacturers and Retailers","Empirical Industrial Organization","ddc:330"]},"trust":{"type":"FLOAT","value":0.93201214},"target_publication_title":{"type":"STRING","value":"The Congruence of Theoretical and Empirical Patterns of Inter-Store Price Competition"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"1999-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9fc3d7152ba9336a670e36d0ed79bc43"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HUBerlin.de:25638\",\"titles\":[\"The Congruence of Theoretical and Empirical Patterns of Inter-Store Price Competition\"],\"abstracts\":[\"The present paper concentrates on the nature and structure of inter-store price competition. It focusses especially on price competition between different retailers within one trading area and within one product category. Six theoretically founded hypotheses postulate competitive relations between manufacturers’ UPCs and the retailers covering various possible competitive conditions such as competitive independencies or various degrees of competitive dependency among the UPCs and the retailers. These hypotheses have been tested empirically with store-level scanner data. UPC is the Universal Product Code, the most dominant coding technology in the United States. It allows for point-of-sale (POS) scanning systems and to continuously collect data by item at the retail level. The retail prices of 27 UPCs from a five stores suburban market place measured over 104 weeks are analyzed by using the three-mode component analysis to determine the basic and important competitive conditions in the market under study. On the basis of the estimated component structure of the UPCs, of the stores and of the weeks as well as on the basis of the core array, which provides the information of how the components of different modes (here UPCs, stores, and weeks) are related to each other the appropriateness of the six research hypotheses is tested. The empirical results support the theoretical implications that the price competition between UPCs and retailers in one product category and one trading area is primarily determined by manufacturers’ pricing strategies. The manufacturer “set” the retail prices (shelf prices and temporary price reductions) by deciding on the number and size of the trade deals whereas the retailers exert passive pricing strategies by passing some or most of the trade deals through to their consumers.\"],\"language\":\"eng\",\"subjects\":[\"Wirtschaft\",\"Pricing Research\",\"Game Theory\",\"Price Competition among Manufacturers and Retailers\",\"Empirical Industrial Organization\",\"ddc:330\"],\"creators\":[\"Klapper, Daniel\",\"Cooper, Lee G.\",\"Hildebrandt, Lutz\"],\"publicationdate\":\"\",\"publisher\":\"Humboldt University Berlin, Germany\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\"],\"pids\":[],\"instances\":[{\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d25638\",\"license\":\"OPEN\",\"hostedby\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"instancetype\":\"Article\"},{\"url\":\"http://econstor.eu/bitstream/10419/61737/1/722278667.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/61737/1/722278667.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econstor.eu/bitstream/10419/61737/1/722278667.pdf\",\"id\":\"oai:RePEc:zbw:sfb373:199944\"},\"trust\":0.60146207}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin"},"target_publication_id":{"type":"STRING","value":"oai:HUBerlin.de:25638"},"target_publication_author_list":{"type":"LIST_STRING","value":["Klapper, Daniel","Cooper, Lee G.","Hildebrandt, Lutz"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:zbw:sfb373:199944"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Wirtschaft","Pricing Research","Game Theory","Price Competition among Manufacturers and Retailers","Empirical Industrial Organization","ddc:330"]},"trust":{"type":"FLOAT","value":0.60146207},"target_publication_title":{"type":"STRING","value":"The Congruence of Theoretical and Empirical Patterns of Inter-Store Price Competition"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9fc3d7152ba9336a670e36d0ed79bc43"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:HUBerlin.de:25638\",\"titles\":[\"The Congruence of Theoretical and Empirical Patterns of Inter-Store Price Competition\"],\"abstracts\":[\"The present paper concentrates on the nature and structure of inter-store price competition. It focusses especially on price competition between different retailers within one trading area and within one product category. Six theoretically founded hypotheses postulate competitive relations between manufacturers’ UPCs and the retailers covering various possible competitive conditions such as competitive independencies or various degrees of competitive dependency among the UPCs and the retailers. These hypotheses have been tested empirically with store-level scanner data. UPC is the Universal Product Code, the most dominant coding technology in the United States. It allows for point-of-sale (POS) scanning systems and to continuously collect data by item at the retail level. The retail prices of 27 UPCs from a five stores suburban market place measured over 104 weeks are analyzed by using the three-mode component analysis to determine the basic and important competitive conditions in the market under study. On the basis of the estimated component structure of the UPCs, of the stores and of the weeks as well as on the basis of the core array, which provides the information of how the components of different modes (here UPCs, stores, and weeks) are related to each other the appropriateness of the six research hypotheses is tested. The empirical results support the theoretical implications that the price competition between UPCs and retailers in one product category and one trading area is primarily determined by manufacturers’ pricing strategies. The manufacturer “set” the retail prices (shelf prices and temporary price reductions) by deciding on the number and size of the trade deals whereas the retailers exert passive pricing strategies by passing some or most of the trade deals through to their consumers.\"],\"language\":\"eng\",\"subjects\":[\"Wirtschaft\",\"Pricing Research\",\"Game Theory\",\"Price Competition among Manufacturers and Retailers\",\"Empirical Industrial Organization\",\"ddc:330\"],\"creators\":[\"Klapper, Daniel\",\"Cooper, Lee G.\",\"Hildebrandt, Lutz\"],\"publicationdate\":\"1999-01-01\",\"publisher\":\"Humboldt University Berlin, Germany\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\"],\"pids\":[],\"instances\":[{\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d25638\",\"license\":\"OPEN\",\"hostedby\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"1999-01-01\"},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econstor.eu/bitstream/10419/61737/1/722278667.pdf\",\"id\":\"oai:RePEc:zbw:sfb373:199944\"},\"trust\":0.28069997}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin"},"target_publication_id":{"type":"STRING","value":"oai:HUBerlin.de:25638"},"target_publication_author_list":{"type":"LIST_STRING","value":["Klapper, Daniel","Cooper, Lee G.","Hildebrandt, Lutz"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:zbw:sfb373:199944"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Wirtschaft","Pricing Research","Game Theory","Price Competition among Manufacturers and Retailers","Empirical Industrial Organization","ddc:330"]},"trust":{"type":"FLOAT","value":0.28069997},"target_publication_title":{"type":"STRING","value":"The Congruence of Theoretical and Empirical Patterns of Inter-Store Price Competition"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1999-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9fc3d7152ba9336a670e36d0ed79bc43"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/61737\",\"titles\":[\"The congruence of theoretical and empirical patterns of inter-store price competition\"],\"abstracts\":[\"The present paper concentrates on the nature and structure of inter-store price competition. It focusses especially on price competition between different retailers within one trading area and within one product category. Six theoretically founded hypotheses postulate competitive relations between manufacturers\\u0027 UPCs and the retailers covering various possible competitive conditions such as competitive independencies or various degrees of competitive dependency among the UPCs and the retailers. These hypotheses have been tested empirically with store-level scanner data. UPC is the Universal Product Code, the most dominant coding technology in the United States. It allows for point-of-sale (POS) scanning systems and to continuously collect data by item at the retail level. The retail prices of 27 UPCs from a five stores suburban market place measured over 104 weeks are analyzed by using the three-mode component analysis to determine the basic and important competitive conditions in the market under study. On the basis of the estimated component structure of the UPCs, of the stores and of the weeks as well as on the basis of the core array, which provides the information of how the components of different modes (here UPCs, stores, and weeks) are related to each other the appropriateness of the six research hypotheses is tested. The empirical results support the theoretical implications that the price competition between UPCs and retailers in one product category and one trading area is primarily determined by manufacturers\\u0027 pricing strategies. The manufacturer set the retail prices (shelf prices and temporary price reductions) by deciding on the number and size of the trade deals whereas the retailers exert passive pricing strategies by passing some or most of the trade deals through to their consumers.\"],\"language\":\"eng\",\"subjects\":[\"ddc:330\",\"Pricing Research\",\"Game Theory\",\"Price Competition among Manufacturers and Retailers\",\"Empirical Industrial Organization\"],\"creators\":[\"Klapper, Daniel\",\"Cooper, Lee G.\",\"Hildebrandt, Lutz\"],\"publicationdate\":\"1999-01-01\",\"publisher\":\"Humboldt-Universität Berlin\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/61737\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d25638\",\"license\":\"OPEN\",\"hostedby\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d25638\",\"license\":\"OPEN\",\"hostedby\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d25638\",\"id\":\"oai:HUBerlin.de:25638\"},\"trust\":0.79258585}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/61737"},"target_publication_author_list":{"type":"LIST_STRING","value":["Klapper, Daniel","Cooper, Lee G.","Hildebrandt, Lutz"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HUBerlin.de:25638"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9fc3d7152ba9336a670e36d0ed79bc43"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330","Pricing Research","Game Theory","Price Competition among Manufacturers and Retailers","Empirical Industrial Organization"]},"trust":{"type":"FLOAT","value":0.79258585},"target_publication_title":{"type":"STRING","value":"The congruence of theoretical and empirical patterns of inter-store price competition"},"provenance_datasource_name":{"type":"STRING","value":"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin"},"target_dateofacceptance":{"type":"DATE","value":"1999-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/61737\",\"titles\":[\"The congruence of theoretical and empirical patterns of inter-store price competition\"],\"abstracts\":[\"The present paper concentrates on the nature and structure of inter-store price competition. It focusses especially on price competition between different retailers within one trading area and within one product category. Six theoretically founded hypotheses postulate competitive relations between manufacturers\\u0027 UPCs and the retailers covering various possible competitive conditions such as competitive independencies or various degrees of competitive dependency among the UPCs and the retailers. These hypotheses have been tested empirically with store-level scanner data. UPC is the Universal Product Code, the most dominant coding technology in the United States. It allows for point-of-sale (POS) scanning systems and to continuously collect data by item at the retail level. The retail prices of 27 UPCs from a five stores suburban market place measured over 104 weeks are analyzed by using the three-mode component analysis to determine the basic and important competitive conditions in the market under study. On the basis of the estimated component structure of the UPCs, of the stores and of the weeks as well as on the basis of the core array, which provides the information of how the components of different modes (here UPCs, stores, and weeks) are related to each other the appropriateness of the six research hypotheses is tested. The empirical results support the theoretical implications that the price competition between UPCs and retailers in one product category and one trading area is primarily determined by manufacturers\\u0027 pricing strategies. The manufacturer set the retail prices (shelf prices and temporary price reductions) by deciding on the number and size of the trade deals whereas the retailers exert passive pricing strategies by passing some or most of the trade deals through to their consumers.\"],\"language\":\"eng\",\"subjects\":[\"ddc:330\",\"Pricing Research\",\"Game Theory\",\"Price Competition among Manufacturers and Retailers\",\"Empirical Industrial Organization\"],\"creators\":[\"Klapper, Daniel\",\"Cooper, Lee G.\",\"Hildebrandt, Lutz\"],\"publicationdate\":\"1999-01-01\",\"publisher\":\"Humboldt-Universität Berlin\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/61737\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://econstor.eu/bitstream/10419/61737/1/722278667.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/61737/1/722278667.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econstor.eu/bitstream/10419/61737/1/722278667.pdf\",\"id\":\"oai:RePEc:zbw:sfb373:199944\"},\"trust\":0.65367234}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/61737"},"target_publication_author_list":{"type":"LIST_STRING","value":["Klapper, Daniel","Cooper, Lee G.","Hildebrandt, Lutz"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:zbw:sfb373:199944"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330","Pricing Research","Game Theory","Price Competition among Manufacturers and Retailers","Empirical Industrial Organization"]},"trust":{"type":"FLOAT","value":0.65367234},"target_publication_title":{"type":"STRING","value":"The congruence of theoretical and empirical patterns of inter-store price competition"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1999-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:zbw:sfb373:199944\",\"titles\":[\"The congruence of theoretical and empirical patterns of inter-store price competition\"],\"abstracts\":[\"The present paper concentrates on the nature and structure of inter-store price competition. It focusses especially on price competition between different retailers within one trading area and within one product category. Six theoretically founded hypotheses postulate competitive relations between manufacturers\\u0027 UPCs and the retailers covering various possible competitive conditions such as competitive independencies or various degrees of competitive dependency among the UPCs and the retailers. These hypotheses have been tested empirically with store-level scanner data. UPC is the Universal Product Code, the most dominant coding technology in the United States. It allows for point-of-sale (POS) scanning systems and to continuously collect data by item at the retail level. The retail prices of 27 UPCs from a five stores suburban market place measured over 104 weeks are analyzed by using the three-mode component analysis to determine the basic and important competitive conditions in the market under study. On the basis of the estimated component structure of the UPCs, of the stores and of the weeks as well as on the basis of the core array, which provides the information of how the components of different modes (here UPCs, stores, and weeks) are related to each other the appropriateness of the six research hypotheses is tested. The empirical results support the theoretical implications that the price competition between UPCs and retailers in one product category and one trading area is primarily determined by manufacturers\\u0027 pricing strategies. The manufacturer set the retail prices (shelf prices and temporary price reductions) by deciding on the number and size of the trade deals whereas the retailers exert passive pricing strategies by passing some or most of the trade deals through to their consumers.\"],\"language\":\"und\",\"subjects\":[\"Pricing Research,Game Theory,Price Competition among Manufacturers and Retailers,Empirical Industrial Organization\"],\"creators\":[\"Klapper, Daniel\",\"Cooper, Lee G.\",\"Hildebrandt, Lutz\"],\"publicationdate\":\"1999-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/61737/1/722278667.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d25638\",\"license\":\"OPEN\",\"hostedby\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d25638\",\"license\":\"OPEN\",\"hostedby\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d25638\",\"id\":\"oai:HUBerlin.de:25638\"},\"trust\":0.8145528}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:zbw:sfb373:199944"},"target_publication_author_list":{"type":"LIST_STRING","value":["Klapper, Daniel","Cooper, Lee G.","Hildebrandt, Lutz"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HUBerlin.de:25638"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9fc3d7152ba9336a670e36d0ed79bc43"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Pricing Research,Game Theory,Price Competition among Manufacturers and Retailers,Empirical Industrial Organization"]},"trust":{"type":"FLOAT","value":0.8145528},"target_publication_title":{"type":"STRING","value":"The congruence of theoretical and empirical patterns of inter-store price competition"},"provenance_datasource_name":{"type":"STRING","value":"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin"},"target_dateofacceptance":{"type":"DATE","value":"1999-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:zbw:sfb373:199944\",\"titles\":[\"The congruence of theoretical and empirical patterns of inter-store price competition\"],\"abstracts\":[\"The present paper concentrates on the nature and structure of inter-store price competition. It focusses especially on price competition between different retailers within one trading area and within one product category. Six theoretically founded hypotheses postulate competitive relations between manufacturers\\u0027 UPCs and the retailers covering various possible competitive conditions such as competitive independencies or various degrees of competitive dependency among the UPCs and the retailers. These hypotheses have been tested empirically with store-level scanner data. UPC is the Universal Product Code, the most dominant coding technology in the United States. It allows for point-of-sale (POS) scanning systems and to continuously collect data by item at the retail level. The retail prices of 27 UPCs from a five stores suburban market place measured over 104 weeks are analyzed by using the three-mode component analysis to determine the basic and important competitive conditions in the market under study. On the basis of the estimated component structure of the UPCs, of the stores and of the weeks as well as on the basis of the core array, which provides the information of how the components of different modes (here UPCs, stores, and weeks) are related to each other the appropriateness of the six research hypotheses is tested. The empirical results support the theoretical implications that the price competition between UPCs and retailers in one product category and one trading area is primarily determined by manufacturers\\u0027 pricing strategies. The manufacturer set the retail prices (shelf prices and temporary price reductions) by deciding on the number and size of the trade deals whereas the retailers exert passive pricing strategies by passing some or most of the trade deals through to their consumers.\"],\"language\":\"und\",\"subjects\":[\"Pricing Research,Game Theory,Price Competition among Manufacturers and Retailers,Empirical Industrial Organization\"],\"creators\":[\"Klapper, Daniel\",\"Cooper, Lee G.\",\"Hildebrandt, Lutz\"],\"publicationdate\":\"1999-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/61737/1/722278667.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/61737\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/61737\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/61737\",\"id\":\"oai:econstor.eu:10419/61737\"},\"trust\":0.30158025}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:zbw:sfb373:199944"},"target_publication_author_list":{"type":"LIST_STRING","value":["Klapper, Daniel","Cooper, Lee G.","Hildebrandt, Lutz"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/61737"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Pricing Research,Game Theory,Price Competition among Manufacturers and Retailers,Empirical Industrial Organization"]},"trust":{"type":"FLOAT","value":0.30158025},"target_publication_title":{"type":"STRING","value":"The congruence of theoretical and empirical patterns of inter-store price competition"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"1999-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:vrs:organi:v:43:y:2010:i:1:p:21-34\",\"titles\":[\"The Importance of Perception and Consciousness for E-Learning\"],\"abstracts\":[\"The article presents the results of a research on perception during the learning process of adults in a virtual environment. The aim of the research was to determine why the process of e-learning introduction in Slovenia has been slowed down. Perception and its effects upon learning are important on the conscious as well as on the unconscious level but they have not been given as much attention as in the classical learning environment. Disturbed perception which results from the lack of expertise in preparation of the e-environment is a serious obstacle for learning. The objective of the research was to find solutions for the actual teaching practice but at the same time the research emphasizes that conclusions cannot always be made on the basis of former facts about students. We have to bear in mind that the impact of technology changes the students as well. Lack of professional arguments and of good practice leads to pedagogical conservatism which can cause the school\\u0027s progress, also in the area of adult education, to be directed in the opposite direction from the one required by business processes in the organizations in which the adult students come from or in which the students are employed after they finish their education.\"],\"language\":\"und\",\"subjects\":[\"e-learning,e-education,virtual learning environment,perception,adults,remembrance,\"],\"creators\":[\"Rebolj Vanda\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Organizacija\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://versita.metapress.com/content/Q562014869K57107/fulltext.pl\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.degruyter.com/view/j/orga.2010.43.issue-1/v10051-010-0003-4/v10051-010-0003-4.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.degruyter.com/view/j/orga.2010.43.issue-1/v10051-010-0003-4/v10051-010-0003-4.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.degruyter.com/view/j/orga.2010.43.issue-1/v10051-010-0003-4/v10051-010-0003-4.xml?format\\u003dINT\",\"id\":\"oai:RePEc:vrs:organi:v:43:y:2010:i:1:p:21-34:n:3\"},\"trust\":0.69922245}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:vrs:organi:v:43:y:2010:i:1:p:21-34"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rebolj Vanda"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:vrs:organi:v:43:y:2010:i:1:p:21-34:n:3"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["e-learning,e-education,virtual learning environment,perception,adults,remembrance,"]},"trust":{"type":"FLOAT","value":0.69922245},"target_publication_title":{"type":"STRING","value":"The Importance of Perception and Consciousness for E-Learning"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:vrs:organi:v:43:y:2010:i:1:p:21-34:n:3\",\"titles\":[\"The Importance of Perception and Consciousness for E-Learning\"],\"abstracts\":[\"The article presents the results of a research on perception during the learning process of adults in a virtual environment. The aim of the research was to determine why the process of e-learning introduction in Slovenia has been slowed down. Perception and its effects upon learning are important on the conscious as well as on the unconscious level but they have not been given as much attention as in the classical learning environment. Disturbed perception which results from the lack of expertise in preparation of the e-environment is a serious obstacle for learning. The objective of the research was to find solutions for the actual teaching practice but at the same time the research emphasizes that conclusions cannot always be made on the basis of former facts about students. We have to bear in mind that the impact of technology changes the students as well. Lack of professional arguments and of good practice leads to pedagogical conservatism which can cause the school\\u0027s progress, also in the area of adult education, to be directed in the opposite direction from the one required by business processes in the organizations in which the adult students come from or in which the students are employed after they finish their education.\"],\"language\":\"und\",\"subjects\":[\"e-learning, e-education, virtual learning environment, perception, adults, remembrance\"],\"creators\":[\"Rebolj Vanda\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Organizacija\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.degruyter.com/view/j/orga.2010.43.issue-1/v10051-010-0003-4/v10051-010-0003-4.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://versita.metapress.com/content/Q562014869K57107/fulltext.pl\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://versita.metapress.com/content/Q562014869K57107/fulltext.pl\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://versita.metapress.com/content/Q562014869K57107/fulltext.pl\",\"id\":\"oai:RePEc:vrs:organi:v:43:y:2010:i:1:p:21-34\"},\"trust\":0.6433599}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:vrs:organi:v:43:y:2010:i:1:p:21-34:n:3"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rebolj Vanda"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:vrs:organi:v:43:y:2010:i:1:p:21-34"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["e-learning, e-education, virtual learning environment, perception, adults, remembrance"]},"trust":{"type":"FLOAT","value":0.6433599},"target_publication_title":{"type":"STRING","value":"The Importance of Perception and Consciousness for E-Learning"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1615066\",\"titles\":[\"Recurrent pneumothorax developing during chemotherapy in a patient with miliary tuberculosis\"],\"abstracts\":[\"Despite the fact that miliary tuberculosis is frequently seen, associated pneumothorax developing during antitubercular chemotherapy for miliary tuberculosis is rare. Pneumothorax is potentially life threatening in association with miliary tuberculosis; and its symptoms may be masked by those of miliary tuberculosis, leading to avoidable delay in the diagnosis of pneumothorax. Here we describe a 24-year-old female patient developing recurrent pneumothorax while on antitubercular chemotherapy for miliary tuberculosis.\"],\"language\":\"eng\",\"subjects\":[\"Case Report\",\"Computed tomogram features\",\"miliary tuberculosis\",\"nonimmunocompromised patient\",\"recurrent pneumothorax\"],\"creators\":[\"Gupta, Prem Parkash\",\"Mehta, Dinesh\",\"Agarwal, Dipti\",\"Chand, Trilok\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Medknow Publications\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Annals of Thoracic Medicine\",\"issn\":\"1817-1737\",\"eissn\":\"1998-3557\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4103/1817-1737.36555\",\"type\":\"doi\"},{\"value\":\"PMC2732102\",\"type\":\"pmc\"},{\"value\":\"19727372\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2732102\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.thoracicmedicine.org/article.asp?issn\\u003d1817-1737;year\\u003d2007;volume\\u003d2;issue\\u003d4;spage\\u003d173;epage\\u003d175;aulast\\u003dGupta\",\"license\":\"OPEN\",\"hostedby\":\"Annals of Thoracic Medicine\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.thoracicmedicine.org/article.asp?issn\\u003d1817-1737;year\\u003d2007;volume\\u003d2;issue\\u003d4;spage\\u003d173;epage\\u003d175;aulast\\u003dGupta\",\"license\":\"OPEN\",\"hostedby\":\"Annals of Thoracic Medicine\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.thoracicmedicine.org/article.asp?issn\\u003d1817-1737;year\\u003d2007;volume\\u003d2;issue\\u003d4;spage\\u003d173;epage\\u003d175;aulast\\u003dGupta\",\"id\":\"oai:doaj.org/article:83b76dbb712f4e4294450e220591e976\"},\"trust\":0.48809868}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1615066"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gupta, Prem Parkash","Mehta, Dinesh","Agarwal, Dipti","Chand, Trilok"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:83b76dbb712f4e4294450e220591e976"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Case Report","Computed tomogram features","miliary tuberculosis","nonimmunocompromised patient","recurrent pneumothorax"]},"trust":{"type":"FLOAT","value":0.48809868},"target_publication_title":{"type":"STRING","value":"Recurrent pneumothorax developing during chemotherapy in a patient with miliary tuberculosis"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/105262\",\"titles\":[\"Health-based reassessment of current administrative occupational exposure limits in the Netherlands. Ferrocene (CAS reg.nr. 102-54-5)\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Sectie Toxicologie\"],\"creators\":[\"Maclaine Pont, M. A.\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"Health Council of the Netherlands\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/22265\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"External research report\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/105262\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/105262\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/105262\",\"id\":\"wur:oai:library.wur.nl:wurpubs/105262\"},\"trust\":0.70167166}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/105262"},"target_publication_author_list":{"type":"LIST_STRING","value":["Maclaine Pont, M. A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/105262"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Sectie Toxicologie"]},"trust":{"type":"FLOAT","value":0.70167166},"target_publication_title":{"type":"STRING","value":"Health-based reassessment of current administrative occupational exposure limits in the Netherlands. Ferrocene (CAS reg.nr. 102-54-5)"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2318091\",\"titles\":[\"Design of a Water Environment Monitoring System Based on Wireless Sensor Networks\"],\"abstracts\":[\"A water environmental monitoring system based on a wireless sensor network is proposed. It consists of three parts: data monitoring nodes, data base station and remote monitoring center. This system is suitable for the complex and large-scale water environment monitoring, such as for reservoirs, lakes, rivers, swamps, and shallow or deep groundwaters. This paper is devoted to the explanation and illustration for our new water environment monitoring system design. The system had successfully accomplished the online auto-monitoring of the water temperature and pH value environment of an artificial lake. The system\\u0027s measurement capacity ranges from 0 to 80 °C for water temperature, with an accuracy of ±0.5 °C; from 0 to 14 on pH value, with an accuracy of ±0.05 pH units. Sensors applicable to different water quality scenarios should be installed at the nodes to meet the monitoring demands for a variety of water environments and to obtain different parameters. The monitoring system thus promises broad applicability prospects.\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"water environment monitoring\",\"wireless sensor networks\",\"data monitoring nodes\",\"data base station\",\"remote monitoring center\"],\"creators\":[\"Jiang, Peng\",\"Xia, Hongbo\",\"He, Zhiye\",\"Wang, Zheming\"],\"publicationdate\":\"2009-08-01\",\"publisher\":\"Molecular Diversity Preservation International (MDPI)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Sensors (Basel, Switzerland)\",\"issn\":\"\",\"eissn\":\"1424-8220\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3390/s90806411\",\"type\":\"doi\"},{\"value\":\"PMC3312451\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3312451\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.mdpi.com/1424-8220/9/8/6411/\",\"license\":\"OPEN\",\"hostedby\":\"Sensors\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.mdpi.com/1424-8220/9/8/6411/\",\"license\":\"OPEN\",\"hostedby\":\"Sensors\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.mdpi.com/1424-8220/9/8/6411/\",\"id\":\"oai:doaj.org/article:ab96d0cbf8014c2f997225f73ba5752c\"},\"trust\":0.4261099}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2318091"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jiang, Peng","Xia, Hongbo","He, Zhiye","Wang, Zheming"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:ab96d0cbf8014c2f997225f73ba5752c"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","water environment monitoring","wireless sensor networks","data monitoring nodes","data base station","remote monitoring center"]},"trust":{"type":"FLOAT","value":0.4261099},"target_publication_title":{"type":"STRING","value":"Design of a Water Environment Monitoring System Based on Wireless Sensor Networks"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dare.ubvu.vu.nl:1871/12221\",\"titles\":[\"On generalization in the relational model\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Boogaard, M.\"],\"publicationdate\":\"1991-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at VU\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/1871/12221\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Unknown\"},{\"url\":\"http://degree.ubvu.vu.nl/repec/vua/wpaper/pdf/19910037.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://degree.ubvu.vu.nl/repec/vua/wpaper/pdf/19910037.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://degree.ubvu.vu.nl/repec/vua/wpaper/pdf/19910037.pdf\",\"id\":\"oai:RePEc:vua:wpaper:1991-37\"},\"trust\":0.49720275}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_publication_id":{"type":"STRING","value":"oai:dare.ubvu.vu.nl:1871/12221"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boogaard, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:vua:wpaper:1991-37"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.49720275},"target_publication_title":{"type":"STRING","value":"On generalization in the relational model"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1991-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dare.ubvu.vu.nl:1871/12221\",\"titles\":[\"On generalization in the relational model\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Boogaard, M.\"],\"publicationdate\":\"1991-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at VU\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/1871/12221\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hdl.handle.net/1871/12221\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1871/12221\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1871/12221\",\"id\":\"vu:oai:dare.ubvu.vu.nl:1871/12221\"},\"trust\":0.71133345}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_publication_id":{"type":"STRING","value":"oai:dare.ubvu.vu.nl:1871/12221"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boogaard, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["vu:oai:dare.ubvu.vu.nl:1871/12221"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.71133345},"target_publication_title":{"type":"STRING","value":"On generalization in the relational model"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1991-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:vua:wpaper:1991-37\",\"titles\":[\"On generalization in the relational model\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Boogaard, M.\"],\"publicationdate\":\"1991-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://degree.ubvu.vu.nl/repec/vua/wpaper/pdf/19910037.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/1871/12221\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1871/12221\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"DSpace at VU\",\"url\":\"http://hdl.handle.net/1871/12221\",\"id\":\"oai:dare.ubvu.vu.nl:1871/12221\"},\"trust\":0.96771723}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:vua:wpaper:1991-37"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boogaard, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dare.ubvu.vu.nl:1871/12221"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"},"trust":{"type":"FLOAT","value":0.96771723},"target_publication_title":{"type":"STRING","value":"On generalization in the relational model"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_dateofacceptance":{"type":"DATE","value":"1991-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:vua:wpaper:1991-37\",\"titles\":[\"On generalization in the relational model\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Boogaard, M.\"],\"publicationdate\":\"1991-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://degree.ubvu.vu.nl/repec/vua/wpaper/pdf/19910037.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/1871/12221\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1871/12221\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1871/12221\",\"id\":\"vu:oai:dare.ubvu.vu.nl:1871/12221\"},\"trust\":0.16013062}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:vua:wpaper:1991-37"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boogaard, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["vu:oai:dare.ubvu.vu.nl:1871/12221"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.16013062},"target_publication_title":{"type":"STRING","value":"On generalization in the relational model"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1991-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:inria-00076488\",\"titles\":[\"An example of failure detection:design and comparative study of some algorithms\"],\"abstracts\":[\"Disponible dans les fichiers attachés à ce document\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_OH] Computer Science/Other\",\"[INFO:INFO_OH] Informatique/Autre\"],\"creators\":[\"Basseville, Michèle\",\"Benveniste, Albert\"],\"publicationdate\":\"1981-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00076488\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"},{\"url\":\"https://hal.inria.fr/inria-00076488\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00076488\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/inria-00076488\",\"id\":\"oai:HAL:inria-00076488v1\"},\"trust\":0.9712938}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:inria-00076488"},"target_publication_author_list":{"type":"LIST_STRING","value":["Basseville, Michèle","Benveniste, Albert"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:inria-00076488v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_OH] Computer Science/Other","[INFO:INFO_OH] Informatique/Autre"]},"trust":{"type":"FLOAT","value":0.9712938},"target_publication_title":{"type":"STRING","value":"An example of failure detection:design and comparative study of some algorithms"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1981-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:inria-00076488v1\",\"titles\":[\"An example of failure detection:design and comparative study of some algorithms\"],\"abstracts\":[\"Disponible dans les fichiers attachés à ce document\"],\"language\":\"eng\",\"subjects\":[\"[INFO.INFO-OH] Computer Science/Other\"],\"creators\":[\"Basseville, Michèle\",\"Benveniste, Albert\"],\"publicationdate\":\"1981-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"AS (INRIA - IRISA) ; INRIA - Université de Rennes 1 - Institut National des Sciences Appliquées (INSA) - Rennes - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00076488\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.inria.fr/inria-00076488\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00076488\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/inria-00076488\",\"id\":\"oai:hal.inria.fr:inria-00076488\"},\"trust\":0.4936548}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:inria-00076488v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Basseville, Michèle","Benveniste, Albert"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:inria-00076488"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO.INFO-OH] Computer Science/Other"]},"trust":{"type":"FLOAT","value":0.4936548},"target_publication_title":{"type":"STRING","value":"An example of failure detection:design and comparative study of some algorithms"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1981-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:49101\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"und\",\"subjects\":[\"culture, politics, economics, environment, ecosystems, education\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:49099\"},\"trust\":0.39856178}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:49101"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:49099"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["culture, politics, economics, environment, ecosystems, education"]},"trust":{"type":"FLOAT","value":0.39856178},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:49101\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"und\",\"subjects\":[\"culture, politics, economics, environment, ecosystems, education\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:62124\"},\"trust\":0.065953314}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:49101"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:62124"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["culture, politics, economics, environment, ecosystems, education"]},"trust":{"type":"FLOAT","value":0.065953314},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:49101\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"und\",\"subjects\":[\"culture, politics, economics, environment, ecosystems, education\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:55585\"},\"trust\":0.11112869}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:49101"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:55585"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["culture, politics, economics, environment, ecosystems, education"]},"trust":{"type":"FLOAT","value":0.11112869},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:49101\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"und\",\"subjects\":[\"culture, politics, economics, environment, ecosystems, education\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:45360\"},\"trust\":0.37439257}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:49101"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:45360"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["culture, politics, economics, environment, ecosystems, education"]},"trust":{"type":"FLOAT","value":0.37439257},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:49101\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"und\",\"subjects\":[\"culture, politics, economics, environment, ecosystems, education\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"id\":\"62124\"},\"trust\":0.022026658}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:49101"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["62124"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["culture, politics, economics, environment, ecosystems, education"]},"trust":{"type":"FLOAT","value":0.022026658},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:49101\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"und\",\"subjects\":[\"culture, politics, economics, environment, ecosystems, education\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:49101\"},\"trust\":0.6198925}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:49101"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:49101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["culture, politics, economics, environment, ecosystems, education"]},"trust":{"type":"FLOAT","value":0.6198925},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:49101\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"und\",\"subjects\":[\"culture, politics, economics, environment, ecosystems, education\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"id\":\"oai:RePEc:pra:mprapa:45360\"},\"trust\":0.13888597}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:49101"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:45360"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["culture, politics, economics, environment, ecosystems, education"]},"trust":{"type":"FLOAT","value":0.13888597},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:49099\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"id\":\"oai:RePEc:pra:mprapa:49101\"},\"trust\":0.91746485}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:49099"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:49101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.91746485},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:49099\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:62124\"},\"trust\":0.80167836}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:49099"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:62124"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.80167836},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:49099\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:55585\"},\"trust\":0.49680752}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:49099"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:55585"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.49680752},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:49099\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:45360\"},\"trust\":0.66425496}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:49099"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:45360"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.66425496},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:49099\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"id\":\"62124\"},\"trust\":0.37821496}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:49099"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["62124"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.37821496},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:49099\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:49101\"},\"trust\":0.19253576}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:49099"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:49101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.19253576},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:49099\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"id\":\"oai:RePEc:pra:mprapa:45360\"},\"trust\":0.56082237}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:49099"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:45360"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.56082237},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:62124\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology\",\"Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"id\":\"oai:RePEc:pra:mprapa:49101\"},\"trust\":0.58209246}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:62124"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:49101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology","Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.58209246},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:62124\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology\",\"Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:49099\"},\"trust\":0.7182095}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:62124"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:49099"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology","Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.7182095},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:62124\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology\",\"Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:55585\"},\"trust\":0.033996284}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:62124"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:55585"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology","Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.033996284},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:62124\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology\",\"Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:45360\"},\"trust\":0.7606474}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:62124"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:45360"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology","Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.7606474},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:62124\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology\",\"Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"id\":\"62124\"},\"trust\":0.2701887}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:62124"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["62124"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology","Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.2701887},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:62124\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology\",\"Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:49101\"},\"trust\":0.39377934}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:62124"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:49101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology","Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.39377934},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:62124\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology\",\"Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"id\":\"oai:RePEc:pra:mprapa:45360\"},\"trust\":0.018262386}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:62124"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:45360"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology","Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.018262386},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:55585\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"id\":\"oai:RePEc:pra:mprapa:49101\"},\"trust\":0.9802848}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:55585"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:49101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.9802848},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:55585\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:49099\"},\"trust\":0.950425}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:55585"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:49099"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.950425},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:55585\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:62124\"},\"trust\":0.59408414}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:55585"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:62124"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.59408414},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:55585\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:45360\"},\"trust\":0.22255039}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:55585"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:45360"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.22255039},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:55585\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"id\":\"62124\"},\"trust\":0.14589775}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:55585"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["62124"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.14589775},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:55585\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:49101\"},\"trust\":0.3266036}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:55585"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:49101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.3266036},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:55585\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"id\":\"oai:RePEc:pra:mprapa:45360\"},\"trust\":0.85448253}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:55585"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:45360"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.85448253},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:45360\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"id\":\"oai:RePEc:pra:mprapa:49101\"},\"trust\":0.44336152}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:45360"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:49101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.44336152},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:45360\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:49099\"},\"trust\":0.13962638}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:45360"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:49099"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.13962638},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:45360\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:62124\"},\"trust\":0.8622306}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:45360"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:62124"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.8622306},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:45360\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:55585\"},\"trust\":0.22098827}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:45360"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:55585"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.22098827},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:45360\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"id\":\"62124\"},\"trust\":0.32109797}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:45360"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["62124"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.32109797},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:45360\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:49101\"},\"trust\":0.32113022}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:45360"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:49101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.32113022},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:45360\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"id\":\"oai:RePEc:pra:mprapa:45360\"},\"trust\":0.31153488}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:45360"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:45360"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.31153488},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"62124\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology\",\"Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"id\":\"oai:RePEc:pra:mprapa:49101\"},\"trust\":0.39159465}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"62124"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:49101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology","Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.39159465},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"62124\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology\",\"Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:49099\"},\"trust\":0.49330366}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"62124"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:49099"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology","Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.49330366},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"62124\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology\",\"Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:62124\"},\"trust\":0.7076389}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"62124"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:62124"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology","Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.7076389},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"62124\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology\",\"Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:55585\"},\"trust\":0.36700195}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"62124"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:55585"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology","Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.36700195},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"62124\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology\",\"Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:45360\"},\"trust\":0.5102468}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"62124"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:45360"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology","Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.5102468},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"62124\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology\",\"Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:49101\"},\"trust\":0.26481235}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"62124"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:49101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology","Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.26481235},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"62124\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology\",\"Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"id\":\"oai:RePEc:pra:mprapa:45360\"},\"trust\":0.11329281}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"62124"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:45360"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development ; Environment and Trade ; Sustainability ; Environmental Accounts and Accounting ; Environmental Equity ; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics ; Economic Sociology ; Economic Anthropology","Z13 - Economic Sociology ; Economic Anthropology ; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.11329281},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:49101\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"id\":\"oai:RePEc:pra:mprapa:49101\"},\"trust\":0.5367059}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:49101"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:49101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.5367059},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:49101\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:49099\"},\"trust\":0.5392457}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:49101"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:49099"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.5392457},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:49101\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:62124\"},\"trust\":0.53308356}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:49101"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:62124"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.53308356},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:49101\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:55585\"},\"trust\":0.7985538}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:49101"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:55585"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.7985538},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:49101\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:45360\"},\"trust\":0.61471975}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:49101"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:45360"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.61471975},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:49101\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"id\":\"62124\"},\"trust\":0.385862}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:49101"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["62124"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.385862},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:49101\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"eng\",\"subjects\":[\"I00 - General\",\"Q28 - Government Policy\",\"Q51 - Valuation of Environmental Effects\",\"Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth\",\"Q58 - Government Policy\",\"Z1 - Cultural Economics; Economic Sociology; Economic Anthropology\",\"Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"id\":\"oai:RePEc:pra:mprapa:45360\"},\"trust\":0.9570076}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:49101"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:45360"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I00 - General","Q28 - Government Policy","Q51 - Valuation of Environmental Effects","Q56 - Environment and Development; Environment and Trade; Sustainability; Environmental Accounts and Accounting; Environmental Equity; Population Growth","Q58 - Government Policy","Z1 - Cultural Economics; Economic Sociology; Economic Anthropology","Z13 - Economic Sociology; Economic Anthropology; Social and Economic Stratification"]},"trust":{"type":"FLOAT","value":0.9570076},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:45360\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"und\",\"subjects\":[\"culture, politics, economics, environment, ecosystems, education\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/49101/9/MPRA_paper_49101.pdf\",\"id\":\"oai:RePEc:pra:mprapa:49101\"},\"trust\":0.43046921}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:45360"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:49101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["culture, politics, economics, environment, ecosystems, education"]},"trust":{"type":"FLOAT","value":0.43046921},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:45360\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"und\",\"subjects\":[\"culture, politics, economics, environment, ecosystems, education\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/49099/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:49099\"},\"trust\":0.3578856}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:45360"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:49099"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["culture, politics, economics, environment, ecosystems, education"]},"trust":{"type":"FLOAT","value":0.3578856},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:45360\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"und\",\"subjects\":[\"culture, politics, economics, environment, ecosystems, education\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/62124/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:62124\"},\"trust\":0.2089436}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:45360"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:62124"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["culture, politics, economics, environment, ecosystems, education"]},"trust":{"type":"FLOAT","value":0.2089436},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:45360\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"und\",\"subjects\":[\"culture, politics, economics, environment, ecosystems, education\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/55585/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:55585\"},\"trust\":0.6074611}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:45360"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:55585"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["culture, politics, economics, environment, ecosystems, education"]},"trust":{"type":"FLOAT","value":0.6074611},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:45360\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"und\",\"subjects\":[\"culture, politics, economics, environment, ecosystems, education\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/45360/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:45360\"},\"trust\":0.40456766}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:45360"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:45360"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["culture, politics, economics, environment, ecosystems, education"]},"trust":{"type":"FLOAT","value":0.40456766},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:45360\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"und\",\"subjects\":[\"culture, politics, economics, environment, ecosystems, education\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/62124/\",\"id\":\"62124\"},\"trust\":0.23222595}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:45360"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["62124"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["culture, politics, economics, environment, ecosystems, education"]},"trust":{"type":"FLOAT","value":0.23222595},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:45360\",\"titles\":[\"Building a New World: An Ecosystemic Approach for Global Change \\u0026 Development Design\"],\"abstracts\":[\"Problems of difficult settlement or solution in the world cannot be solved by segmented academic formats, market-place interests or mass-media headlines; instead of dealing with taken for granted issues (the apparent “bubbles” in the surface), public policies, research and teaching programmes should detect the issues and deal with them deep inside the boiling pot. Policy discussions and policy making require new paradigms of growth, power, wealth, work and freedom embedded into the cultural, social, political and economical institutions (more critical than individual motives and morals). Urban planning cannot be subordinated to the interests of business corporations, cities cannot remain as privileged centers for profit and capital accumulation, transforming citizens in mere users and consumers, but must preserve and develop mankind heritage, encompassing history, values, architecture, landscapes, the arts, the letters. Being-in-the-world is more than living on it, it demands an ecosystemic approach, the construction of a new social fabric, as new structures emerge in the socio-cultural learning niches and develop critical capacities to operate changes in the system. Problem solving implies dynamic and complex configurations intertwining four dimensions of being-in-the-world, as they combine, as donors and recipients, to induce the events (deficits and assets), cope with consequences (desired or undesired) and contribute for change (diagnosis and prognosis): intimate (subject’s cognitive and affective processes), interactive (groups’ mutual support and values), social (political, economical and cultural systems) and biophysical (biological endowment, natural and man-made environments). An integrated ecosystemic approach to education, culture, environment, health, politics, economics and quality of life should develop the connections and seal the ruptures between the different dimensions of being-in-the-world, in view of their mutual support and dynamic equilibrium.\"],\"language\":\"und\",\"subjects\":[\"culture, politics, economics, environment, ecosystems, education\"],\"creators\":[\"Pilon, André Francisco\"],\"publicationdate\":\"2013-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/45360/1/MPRA_paper_45360.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/49101/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:49101\"},\"trust\":0.58129686}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:45360"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pilon, André Francisco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:49101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["culture, politics, economics, environment, ecosystems, education"]},"trust":{"type":"FLOAT","value":0.58129686},"target_publication_title":{"type":"STRING","value":"Building a New World: An Ecosystemic Approach for Global Change \u0026 Development Design"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:dem:demres:v:29:y:2013:i:7\",\"titles\":[\"Age at marriage and the risk of divorce in England and Wales\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"divorce trends, marriage market, maturity, relative age at marriage, selection\"],\"creators\":[\"Richard Lampard\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Demographic Research\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.4054/DemRes.2013.29.7\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.demographic-research.org/volumes/vol29/7/29-7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.4054/DemRes.2013.29.7\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://wrap.warwick.ac.uk/60059/1/WRAP_Lampard_29-7.pdf\",\"id\":\"oai:wrap.warwick.ac.uk:60059\"},\"trust\":0.4522748}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:dem:demres:v:29:y:2013:i:7"},"target_publication_author_list":{"type":"LIST_STRING","value":["Richard Lampard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:wrap.warwick.ac.uk:60059"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["divorce trends, marriage market, maturity, relative age at marriage, selection"]},"trust":{"type":"FLOAT","value":0.4522748},"target_publication_title":{"type":"STRING","value":"Age at marriage and the risk of divorce in England and Wales"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:dem:demres:v:29:y:2013:i:7\",\"titles\":[\"Age at marriage and the risk of divorce in England and Wales\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"divorce trends, marriage market, maturity, relative age at marriage, selection\"],\"creators\":[\"Richard Lampard\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Demographic Research\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.4054/DemRes.2013.29.7\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.demographic-research.org/volumes/vol29/7/29-7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.4054/DemRes.2013.29.7\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://wrap.warwick.ac.uk/60059/1/WRAP_Lampard_29-7.pdf\",\"id\":\"oai:wrap.warwick.ac.uk:60059\"},\"trust\":0.4522748}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:dem:demres:v:29:y:2013:i:7"},"target_publication_author_list":{"type":"LIST_STRING","value":["Richard Lampard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:wrap.warwick.ac.uk:60059"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["divorce trends, marriage market, maturity, relative age at marriage, selection"]},"trust":{"type":"FLOAT","value":0.4522748},"target_publication_title":{"type":"STRING","value":"Age at marriage and the risk of divorce in England and Wales"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:dem:demres:v:29:y:2013:i:7\",\"titles\":[\"Age at marriage and the risk of divorce in England and Wales\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"divorce trends, marriage market, maturity, relative age at marriage, selection\"],\"creators\":[\"Richard Lampard\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Demographic Research\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.demographic-research.org/volumes/vol29/7/29-7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://wrap.warwick.ac.uk/60059/1/WRAP_Lampard_29-7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Warwick Research Archives Portal Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://wrap.warwick.ac.uk/60059/1/WRAP_Lampard_29-7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Warwick Research Archives Portal Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://wrap.warwick.ac.uk/60059/1/WRAP_Lampard_29-7.pdf\",\"id\":\"oai:wrap.warwick.ac.uk:60059\"},\"trust\":0.5878947}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:dem:demres:v:29:y:2013:i:7"},"target_publication_author_list":{"type":"LIST_STRING","value":["Richard Lampard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:wrap.warwick.ac.uk:60059"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["divorce trends, marriage market, maturity, relative age at marriage, selection"]},"trust":{"type":"FLOAT","value":0.5878947},"target_publication_title":{"type":"STRING","value":"Age at marriage and the risk of divorce in England and Wales"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:dem:demres:v:29:y:2013:i:7\",\"titles\":[\"Age at marriage and the risk of divorce in England and Wales\"],\"abstracts\":[\"Background: A well-documented association exists between age at marriage and the risk of divorce. However, substantial gaps in our knowledge and understanding of its origins, nature, and implications still exist. \\\\ud \\\\ud Objectives: This article documents the relationship between women\\u0027s ages at first marriage and marriage cohort divorce rates, assessing the importance of relative ages at marriage (based on rankings within marriage cohorts) and of absolute, chronological ages at marriage, and evaluating the contribution of changes in the age at marriage distribution to observed divorce rates. \\\\ud \\\\ud Methods: Direct standardisation and logistic regression analyses are applied to published marriage and divorce data for the 1974-1994 marriage cohorts in England and Wales. \\\\ud \\\\ud Results: Changing ages at marriage appear to have constrained the rise in divorce across the cohorts examined. However, the results suggest that much of the impact of age at marriage is linked to relative ages, reducing the extent of this \\u0027braking\\u0027 effect. It also appears that a positive effect of relative age at marriage on the risk of divorce for later marriages is outweighed by the negative effect of absolute age at marriage at higher ages. \\\\ud \\\\ud Conclusions: Both explanations relating to \\u0027maturity\\u0027 and explanations focusing on \\u0027selection\\u0027 or \\u0027marriage markets\\u0027 appear of relevance to the association between age at marriage and divorce.\"],\"language\":\"und\",\"subjects\":[\"divorce trends, marriage market, maturity, relative age at marriage, selection\"],\"creators\":[\"Richard Lampard\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Demographic Research\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.demographic-research.org/volumes/vol29/7/29-7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"Background: A well-documented association exists between age at marriage and the risk of divorce. However, substantial gaps in our knowledge and understanding of its origins, nature, and implications still exist. \\\\ud \\\\ud Objectives: This article documents the relationship between women\\u0027s ages at first marriage and marriage cohort divorce rates, assessing the importance of relative ages at marriage (based on rankings within marriage cohorts) and of absolute, chronological ages at marriage, and evaluating the contribution of changes in the age at marriage distribution to observed divorce rates. \\\\ud \\\\ud Methods: Direct standardisation and logistic regression analyses are applied to published marriage and divorce data for the 1974-1994 marriage cohorts in England and Wales. \\\\ud \\\\ud Results: Changing ages at marriage appear to have constrained the rise in divorce across the cohorts examined. However, the results suggest that much of the impact of age at marriage is linked to relative ages, reducing the extent of this \\u0027braking\\u0027 effect. It also appears that a positive effect of relative age at marriage on the risk of divorce for later marriages is outweighed by the negative effect of absolute age at marriage at higher ages. \\\\ud \\\\ud Conclusions: Both explanations relating to \\u0027maturity\\u0027 and explanations focusing on \\u0027selection\\u0027 or \\u0027marriage markets\\u0027 appear of relevance to the association between age at marriage and divorce.\"]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://wrap.warwick.ac.uk/60059/1/WRAP_Lampard_29-7.pdf\",\"id\":\"oai:wrap.warwick.ac.uk:60059\"},\"trust\":0.7285609}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:dem:demres:v:29:y:2013:i:7"},"target_publication_author_list":{"type":"LIST_STRING","value":["Richard Lampard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:wrap.warwick.ac.uk:60059"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["divorce trends, marriage market, maturity, relative age at marriage, selection"]},"trust":{"type":"FLOAT","value":0.7285609},"target_publication_title":{"type":"STRING","value":"Age at marriage and the risk of divorce in England and Wales"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:dem:demres:v:29:y:2013:i:7\",\"titles\":[\"Age at marriage and the risk of divorce in England and Wales\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"divorce trends, marriage market, maturity, relative age at marriage, selection\"],\"creators\":[\"Richard Lampard\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Demographic Research\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.demographic-research.org/volumes/vol29/7/29-7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.demographic-research.org/volumes/vol29/7/\",\"license\":\"OPEN\",\"hostedby\":\"Demographic Research\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.demographic-research.org/volumes/vol29/7/\",\"license\":\"OPEN\",\"hostedby\":\"Demographic Research\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.demographic-research.org/volumes/vol29/7/\",\"id\":\"oai:doaj.org/article:a9f3318b581b4c0092270f46603a6981\"},\"trust\":0.8291706}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:dem:demres:v:29:y:2013:i:7"},"target_publication_author_list":{"type":"LIST_STRING","value":["Richard Lampard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:a9f3318b581b4c0092270f46603a6981"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["divorce trends, marriage market, maturity, relative age at marriage, selection"]},"trust":{"type":"FLOAT","value":0.8291706},"target_publication_title":{"type":"STRING","value":"Age at marriage and the risk of divorce in England and Wales"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:dem:demres:v:29:y:2013:i:7\",\"titles\":[\"Age at marriage and the risk of divorce in England and Wales\"],\"abstracts\":[\"BACKGROUND A well-documented association exists between age at marriage and the risk of divorce. However, substantial gaps in our knowledge and understanding of ist origins, nature, and implications still exist. OBJECTIVE This article documents the relationship between women\\u0027s ages at first marriage and marriage cohort divorce rates, assessing the importance of relative ages at marriage (based on rankings within marriage cohorts) and of absolute, chronological ages at marriage, and evaluating the contribution of changes in the age at marriage distribution to observed divorce rates. METHODS Direct standardisation and logistic regression analyses are applied to published marriage and divorce data for the 1974-1994 marriage cohorts in England and Wales. RESULTS Changing ages at marriage appear to have constrained the rise in divorce across the cohorts examined. However, the results suggest that much of the impact of age at marriage is linked to relative ages, reducing the extent of this \\u0027braking\\u0027 effect. It also appears that a positive effect of relative age at marriage on the risk of divorce for later marriages is outweighed by the negative effect of absolute age at marriage at higher ages. CONCLUSIONS Both explanations relating to \\u0027maturity\\u0027 and explanations focusing on \\u0027selection\\u0027 or \\u0027marriage markets\\u0027 appear of relevance to the association between age at marriage and divorce. COMMENTS The data source provides over five million cases; however, it does not provide any scope to control for cohabitation, education, etc., and the analyses are restricted to divorces within about ten years of marriage. Further, related studies would be useful. \"],\"language\":\"und\",\"subjects\":[\"divorce trends, marriage market, maturity, relative age at marriage, selection\"],\"creators\":[\"Richard Lampard\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Demographic Research\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.demographic-research.org/volumes/vol29/7/29-7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"BACKGROUND A well-documented association exists between age at marriage and the risk of divorce. However, substantial gaps in our knowledge and understanding of ist origins, nature, and implications still exist. OBJECTIVE This article documents the relationship between women\\u0027s ages at first marriage and marriage cohort divorce rates, assessing the importance of relative ages at marriage (based on rankings within marriage cohorts) and of absolute, chronological ages at marriage, and evaluating the contribution of changes in the age at marriage distribution to observed divorce rates. METHODS Direct standardisation and logistic regression analyses are applied to published marriage and divorce data for the 1974-1994 marriage cohorts in England and Wales. RESULTS Changing ages at marriage appear to have constrained the rise in divorce across the cohorts examined. However, the results suggest that much of the impact of age at marriage is linked to relative ages, reducing the extent of this \\u0027braking\\u0027 effect. It also appears that a positive effect of relative age at marriage on the risk of divorce for later marriages is outweighed by the negative effect of absolute age at marriage at higher ages. CONCLUSIONS Both explanations relating to \\u0027maturity\\u0027 and explanations focusing on \\u0027selection\\u0027 or \\u0027marriage markets\\u0027 appear of relevance to the association between age at marriage and divorce. COMMENTS The data source provides over five million cases; however, it does not provide any scope to control for cohabitation, education, etc., and the analyses are restricted to divorces within about ten years of marriage. Further, related studies would be useful. \"]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.demographic-research.org/volumes/vol29/7/\",\"id\":\"oai:doaj.org/article:a9f3318b581b4c0092270f46603a6981\"},\"trust\":0.97479016}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:dem:demres:v:29:y:2013:i:7"},"target_publication_author_list":{"type":"LIST_STRING","value":["Richard Lampard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:a9f3318b581b4c0092270f46603a6981"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["divorce trends, marriage market, maturity, relative age at marriage, selection"]},"trust":{"type":"FLOAT","value":0.97479016},"target_publication_title":{"type":"STRING","value":"Age at marriage and the risk of divorce in England and Wales"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/344338\",\"titles\":[\"On the ecology and evolution of fungal senescence\"],\"abstracts\":[\"Aging evolves in the shadow of natural selection: Since the efficiency of natural selection declines with age, organisms will over the course of generations accumulate intrinsic, genetic factors that have a negative effect only late in life. This is generally known as the \\u0027mutation accumulation\\u0027 theory of aging. Should these factors additionally have a\\u003cspan class\\u003dSpellE\\u003epleiotropic\\u003c/span\\u003e, positive effect early on in life, for example on fertility, they could even be\\u003cspan class\\u003dSpellE\\u003efavored\\u003c/span\\u003eby natural selection. This is known as the \\u0027antagonistic\\u003cspan class\\u003dSpellE\\u003epleiotropy\\u003c/span\\u003e\\u0027 theory of aging. Aging is thus expected to be a multi-causal process resulting from intrinsic factors with negative effects late in life and possibly additional, positive effects early in life. It can be seen as the result of a lack of investment in somatic maintenance, a legacy of an organism\\u0027s evolutionary past.\\u003co:p\\u003e\\u003c/o:p\\u003e\\u003c/span\\u003eIn contrast to unitary organisms like most animals, modular organisms like plants, fungi and colonial invertebrates should not be subject to aging: In these organisms, there is no clear distinction between germ line and soma. Because the germ line should be immortal, in modular organisms aging or senescence is generally not expected, though parts or modules may be subject to aging or senescence. Though this is rare, there are striking examples of\\u003cspan class\\u003dSpellE\\u003eorganismal\\u003c/span\\u003esenescence in fungi and plants, in which all parts of an individual die at the same time.\\u003co:p\\u003e\\u003c/o:p\\u003e\\u003c/span\\u003eThis thesis deals with aging in two genera of filamentous fungi:\\u003cspan class\\u003dSpellE\\u003eNeurospora\\u003c/span\\u003eand\\u003cspan class\\u003dSpellE\\u003ePodospora\\u003c/span\\u003e. It deals with the question whether there are similarities, both at the proximate or mechanistic level and at the ultimate or evolutionary level, between aging processes in fungi and aging processes as we know them from animals. It is shown that, at least in the pseudo-homothallic filamentous\\u003cspan class\\u003dSpellE\\u003eascomycete\\u003c/span\\u003e\\u003cspan class\\u003dSpellE\\u003ePodospora\\u003c/span\\u003e\\u003cspan class\\u003dSpellE\\u003eanserina\\u003c/span\\u003e, aging is an intrinsic and\\u003cspan class\\u003dSpellE\\u003emulticausal\\u003c/span\\u003eprocess as may be expected. An analysis of natural variation in life span shows that the main source of variation in life span corresponds to the presence or absence of mitochondrial plasmids, molecular parasites that interfere with respiration. Variation that arises spontaneously in the laboratory often corresponds to mitochondrial mutations in the electron transport chain. The latter mutations are all associated with the induction of alternative; nuclear encoded respiratory pathways and this leads via a yet unknown route to a stabilization of the otherwise unstable mitochondrial genome, a reduced level of reactive oxygen species as well as a reduced energy level. These mutations hence confer longevity at the cost of fertility. In addition to spontaneous mutations and chemical modifications of the electron transport chain, a dietary\\u003cspan style\\u003d\\u0027mso-spacerun:yes\\u0027\\u003e  \\u003c/span\\u003ereduction in the amount of glucose can extend life span in fungi. The latter effect is strongly reduced by the presence of a type of mitochondrial plasmid that interferes with respiration, which indicates that it is strongly dependent on properly functioning mitochondria. The latter underlines the critical role of mitochondria in the fungal senescence\"],\"language\":\"eng\",\"subjects\":[\"pezizomycotina\",\"pezizomycotina\",\"neurospora\",\"neurospora\",\"veroudering\",\"senescence\",\"verouderen\",\"aging\",\"ecologie\",\"ecology\",\"evolutie\",\"evolution\",\"mitochondria\",\"mitochondria\",\"plasmiden\",\"plasmids\",\"celbiologie\",\"cellular biology\",\"mutaties\",\"mutations\",\"genetica\",\"genetics\",\"Ascomycota\",\"Ascomycota\",\"Genetics (General)\",\"Genetica (algemeen)\"],\"creators\":[\"Maas, M. F. P. M.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"S.n.\",\"embargoenddate\":\"\",\"contributor\":[\"Rolf Hoekstra\",\"Fons Debets\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/41736\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/344338\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/344338\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/344338\",\"id\":\"wur:oai:library.wur.nl:wurpubs/344338\"},\"trust\":0.34227753}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/344338"},"target_publication_author_list":{"type":"LIST_STRING","value":["Maas, M. F. P. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/344338"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["pezizomycotina","pezizomycotina","neurospora","neurospora","veroudering","senescence","verouderen","aging","ecologie","ecology","evolutie","evolution","mitochondria","mitochondria","plasmiden","plasmids","celbiologie","cellular biology","mutaties","mutations","genetica","genetics","Ascomycota","Ascomycota","Genetics (General)","Genetica (algemeen)"]},"trust":{"type":"FLOAT","value":0.34227753},"target_publication_title":{"type":"STRING","value":"On the ecology and evolution of fungal senescence"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3465483\",\"titles\":[\"Rapid Knockout and Reporter Mouse Line Generation and Breeding Colony Establishment Using EUCOMM Conditional-Ready Embryonic Stem Cells: A Case Study\"],\"abstracts\":[\"As little as a decade ago, generation of a single knockout mouse line was an expensive and time-consuming undertaking available to relatively few researchers. The International Knockout Mouse Consortium, established in 2007, has revolutionized the use of such models by creating an open-access repository of embryonic stem (ES) cells that, through sequential breeding with first FLP1 recombinase and then Cre recombinase transgenic mice, facilitates germline global or conditional deletion of almost every gene in the mouse genome. In this Case Study, we describe our experience using the repository to create mouse lines for a variety of experimental purposes. Specifically, we discuss the process of obtaining germline transmission of two European Conditional Mouse Mutagenesis Program (EUCOMM) “knockout-first” gene targeted constructs and the advantages and pitfalls of using this system. We then outline our breeding strategy and the outcomes of our efforts to generate global and conditional knockouts and reporter mice for the genes of interest. Line maintenance, removal of recombinase transgenes, and cryopreservation are also considered. Our approach led to the generation of heterozygous knockout mice within 6 months of commencing breeding to the founder mice. By describing our experiences with the EUCOMM ES cells and subsequent breeding steps, we hope to assist other researchers with the application of this valuable approach to generating versatile knockout mouse lines.\"],\"language\":\"eng\",\"subjects\":[\"Endocrinology\",\"Methods\",\"EUCOMM\",\"conditional knockout\",\"Cre recombinase\",\"Flp recombinase\",\"mouse model\",\"inducible knockout\",\"C57BL/6\"],\"creators\":[\"Coleman, James L. J.\",\"Brennan, Karen\",\"Ngo, Tony\",\"Balaji, Poornima\",\"Graham, Robert M.\",\"Smith, Nicola J.\"],\"publicationdate\":\"2015-06-01\",\"publisher\":\"Frontiers Media S.A.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Frontiers in Endocrinology\",\"issn\":\"\",\"eissn\":\"1664-2392\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3389/fendo.2015.00105\",\"type\":\"doi\"},{\"value\":\"PMC4485191\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4485191\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.3389/fendo.2015.00105\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Endocrinology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.3389/fendo.2015.00105\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Endocrinology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Frontiers\",\"url\":\"http://dx.doi.org/10.3389/fendo.2015.00105\",\"id\":\"10.3389/fendo.2015.00105\"},\"trust\":0.4336229}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3465483"},"target_publication_author_list":{"type":"LIST_STRING","value":["Coleman, James L. J.","Brennan, Karen","Ngo, Tony","Balaji, Poornima","Graham, Robert M.","Smith, Nicola J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.3389/fendo.2015.00105"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::3db634fc5446f389d0b826ea400a5da6"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Endocrinology","Methods","EUCOMM","conditional knockout","Cre recombinase","Flp recombinase","mouse model","inducible knockout","C57BL/6"]},"trust":{"type":"FLOAT","value":0.4336229},"target_publication_title":{"type":"STRING","value":"Rapid Knockout and Reporter Mouse Line Generation and Breeding Colony Establishment Using EUCOMM Conditional-Ready Embryonic Stem Cells: A Case Study"},"provenance_datasource_name":{"type":"STRING","value":"Frontiers"},"target_dateofacceptance":{"type":"DATE","value":"2015-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:gesis.izsoz.de:25086\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"und\",\"subjects\":[\"Economics\",\"Wirtschaft\",\"C52; C32; G11; Generalised hyperbolic distribution; Maximum likelihood; Portfolio frontiers; Sortino ratio; Spanning tests; Tail dependence\",\"Economic Statistics, Econometrics, Business Informatics\",\"Wirtschaftsstatistik, Ökonometrie, Wirtschaftsinformatik\"],\"creators\":[\"Mencía, Javier\",\"Sentana, Enrique\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"Netherlands\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Social Science Open Access Repository\"],\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.ssoar.info/ssoar/handle/document/25086\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/2262/55574\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2262/55574\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"}]},\"provenance\":{\"repositoryName\":\"Trinity\\u0027s Access to Research Archive\",\"url\":\"http://hdl.handle.net/2262/55574\",\"id\":\"oai:www.tara.tcd.ie:2262/55574\"},\"trust\":0.36323297}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Social Science Open Access Repository"},"target_publication_id":{"type":"STRING","value":"oai:gesis.izsoz.de:25086"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mencía, Javier","Sentana, Enrique"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.tara.tcd.ie:2262/55574"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Economics","Wirtschaft","C52; C32; G11; Generalised hyperbolic distribution; Maximum likelihood; Portfolio frontiers; Sortino ratio; Spanning tests; Tail dependence","Economic Statistics, Econometrics, Business Informatics","Wirtschaftsstatistik, Ökonometrie, Wirtschaftsinformatik"]},"trust":{"type":"FLOAT","value":0.36323297},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7810ccd41bf26faaa2c4e1f20db70a71"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:gesis.izsoz.de:25086\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"und\",\"subjects\":[\"Economics\",\"Wirtschaft\",\"C52; C32; G11; Generalised hyperbolic distribution; Maximum likelihood; Portfolio frontiers; Sortino ratio; Spanning tests; Tail dependence\",\"Economic Statistics, Econometrics, Business Informatics\",\"Wirtschaftsstatistik, Ökonometrie, Wirtschaftsinformatik\"],\"creators\":[\"Mencía, Javier\",\"Sentana, Enrique\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"Netherlands\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Social Science Open Access Repository\"],\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.ssoar.info/ssoar/handle/document/25086\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"id\":\"oai:RePEc:bde:wpaper:0909\"},\"trust\":0.7228991}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Social Science Open Access Repository"},"target_publication_id":{"type":"STRING","value":"oai:gesis.izsoz.de:25086"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mencía, Javier","Sentana, Enrique"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bde:wpaper:0909"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Economics","Wirtschaft","C52; C32; G11; Generalised hyperbolic distribution; Maximum likelihood; Portfolio frontiers; Sortino ratio; Spanning tests; Tail dependence","Economic Statistics, Econometrics, Business Informatics","Wirtschaftsstatistik, Ökonometrie, Wirtschaftsinformatik"]},"trust":{"type":"FLOAT","value":0.7228991},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7810ccd41bf26faaa2c4e1f20db70a71"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:gesis.izsoz.de:25086\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"und\",\"subjects\":[\"Economics\",\"Wirtschaft\",\"C52; C32; G11; Generalised hyperbolic distribution; Maximum likelihood; Portfolio frontiers; Sortino ratio; Spanning tests; Tail dependence\",\"Economic Statistics, Econometrics, Business Informatics\",\"Wirtschaftsstatistik, Ökonometrie, Wirtschaftsinformatik\"],\"creators\":[\"Mencía, Javier\",\"Sentana, Enrique\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"Netherlands\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Social Science Open Access Repository\"],\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.ssoar.info/ssoar/handle/document/25086\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00592580\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00592580\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00592580\",\"id\":\"oai:HAL:hal-00592580v1\"},\"trust\":0.9066284}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Social Science Open Access Repository"},"target_publication_id":{"type":"STRING","value":"oai:gesis.izsoz.de:25086"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mencía, Javier","Sentana, Enrique"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00592580v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Economics","Wirtschaft","C52; C32; G11; Generalised hyperbolic distribution; Maximum likelihood; Portfolio frontiers; Sortino ratio; Spanning tests; Tail dependence","Economic Statistics, Econometrics, Business Informatics","Wirtschaftsstatistik, Ökonometrie, Wirtschaftsinformatik"]},"trust":{"type":"FLOAT","value":0.9066284},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7810ccd41bf26faaa2c4e1f20db70a71"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.tara.tcd.ie:2262/55574\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"Abstract\\n We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"eng\",\"subjects\":[\"C52\",\"C32\",\"G11\",\"Generalised hyperbolic distribution\",\"Maximum likelihood\",\"Portfolio frontiers\",\"Sortino ratio\",\"Spanning tests\",\"Tail dependence\"],\"creators\":[],\"publicationdate\":\"2009-05-13\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Trinity\\u0027s Access to Research Archive\"],\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/2262/55574\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"},{\"url\":\"http://www.ssoar.info/ssoar/handle/document/25086\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ssoar.info/ssoar/handle/document/25086\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Social Science Open Access Repository\",\"url\":\"http://www.ssoar.info/ssoar/handle/document/25086\",\"id\":\"oai:gesis.izsoz.de:25086\"},\"trust\":0.9557902}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:www.tara.tcd.ie:2262/55574"},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:gesis.izsoz.de:25086"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7810ccd41bf26faaa2c4e1f20db70a71"},"target_publication_subject_list":{"type":"LIST_STRING","value":["C52","C32","G11","Generalised hyperbolic distribution","Maximum likelihood","Portfolio frontiers","Sortino ratio","Spanning tests","Tail dependence"]},"trust":{"type":"FLOAT","value":0.9557902},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"Social Science Open Access Repository"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.tara.tcd.ie:2262/55574\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"Abstract\\n We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"eng\",\"subjects\":[\"C52\",\"C32\",\"G11\",\"Generalised hyperbolic distribution\",\"Maximum likelihood\",\"Portfolio frontiers\",\"Sortino ratio\",\"Spanning tests\",\"Tail dependence\"],\"creators\":[],\"publicationdate\":\"2009-05-13\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Trinity\\u0027s Access to Research Archive\"],\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/2262/55574\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"},{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"id\":\"oai:RePEc:bde:wpaper:0909\"},\"trust\":0.7853691}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:www.tara.tcd.ie:2262/55574"},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bde:wpaper:0909"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["C52","C32","G11","Generalised hyperbolic distribution","Maximum likelihood","Portfolio frontiers","Sortino ratio","Spanning tests","Tail dependence"]},"trust":{"type":"FLOAT","value":0.7853691},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.tara.tcd.ie:2262/55574\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"Abstract\\n We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"eng\",\"subjects\":[\"C52\",\"C32\",\"G11\",\"Generalised hyperbolic distribution\",\"Maximum likelihood\",\"Portfolio frontiers\",\"Sortino ratio\",\"Spanning tests\",\"Tail dependence\"],\"creators\":[],\"publicationdate\":\"2009-05-13\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Trinity\\u0027s Access to Research Archive\"],\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/2262/55574\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00592580\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00592580\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00592580\",\"id\":\"oai:HAL:hal-00592580v1\"},\"trust\":0.22615772}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:www.tara.tcd.ie:2262/55574"},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00592580v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["C52","C32","G11","Generalised hyperbolic distribution","Maximum likelihood","Portfolio frontiers","Sortino ratio","Spanning tests","Tail dependence"]},"trust":{"type":"FLOAT","value":0.22615772},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bde:wpaper:0909\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"und\",\"subjects\":[\"Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence\"],\"creators\":[\"Javier Mencía\",\"Enrique Sentana\"],\"publicationdate\":\"2009-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Social Science Open Access Repository\",\"url\":\"http://www.ssoar.info/ssoar/handle/document/25086\",\"id\":\"oai:gesis.izsoz.de:25086\"},\"trust\":0.629165}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bde:wpaper:0909"},"target_publication_author_list":{"type":"LIST_STRING","value":["Javier Mencía","Enrique Sentana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:gesis.izsoz.de:25086"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7810ccd41bf26faaa2c4e1f20db70a71"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence"]},"trust":{"type":"FLOAT","value":0.629165},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"Social Science Open Access Repository"},"target_dateofacceptance":{"type":"DATE","value":"2009-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bde:wpaper:0909\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"und\",\"subjects\":[\"Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence\"],\"creators\":[\"Javier Mencía\",\"Enrique Sentana\"],\"publicationdate\":\"2009-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Social Science Open Access Repository\",\"url\":\"http://www.ssoar.info/ssoar/handle/document/25086\",\"id\":\"oai:gesis.izsoz.de:25086\"},\"trust\":0.629165}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bde:wpaper:0909"},"target_publication_author_list":{"type":"LIST_STRING","value":["Javier Mencía","Enrique Sentana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:gesis.izsoz.de:25086"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7810ccd41bf26faaa2c4e1f20db70a71"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence"]},"trust":{"type":"FLOAT","value":0.629165},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"Social Science Open Access Repository"},"target_dateofacceptance":{"type":"DATE","value":"2009-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bde:wpaper:0909\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"und\",\"subjects\":[\"Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence\"],\"creators\":[\"Javier Mencía\",\"Enrique Sentana\"],\"publicationdate\":\"2009-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.ssoar.info/ssoar/handle/document/25086\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ssoar.info/ssoar/handle/document/25086\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Social Science Open Access Repository\",\"url\":\"http://www.ssoar.info/ssoar/handle/document/25086\",\"id\":\"oai:gesis.izsoz.de:25086\"},\"trust\":0.89294004}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bde:wpaper:0909"},"target_publication_author_list":{"type":"LIST_STRING","value":["Javier Mencía","Enrique Sentana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:gesis.izsoz.de:25086"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7810ccd41bf26faaa2c4e1f20db70a71"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence"]},"trust":{"type":"FLOAT","value":0.89294004},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"Social Science Open Access Repository"},"target_dateofacceptance":{"type":"DATE","value":"2009-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bde:wpaper:0909\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"und\",\"subjects\":[\"Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence\"],\"creators\":[\"Javier Mencía\",\"Enrique Sentana\"],\"publicationdate\":\"2009-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Trinity\\u0027s Access to Research Archive\",\"url\":\"http://hdl.handle.net/2262/55574\",\"id\":\"oai:www.tara.tcd.ie:2262/55574\"},\"trust\":0.20697784}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bde:wpaper:0909"},"target_publication_author_list":{"type":"LIST_STRING","value":["Javier Mencía","Enrique Sentana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.tara.tcd.ie:2262/55574"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence"]},"trust":{"type":"FLOAT","value":0.20697784},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bde:wpaper:0909\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"und\",\"subjects\":[\"Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence\"],\"creators\":[\"Javier Mencía\",\"Enrique Sentana\"],\"publicationdate\":\"2009-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Trinity\\u0027s Access to Research Archive\",\"url\":\"http://hdl.handle.net/2262/55574\",\"id\":\"oai:www.tara.tcd.ie:2262/55574\"},\"trust\":0.20697784}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bde:wpaper:0909"},"target_publication_author_list":{"type":"LIST_STRING","value":["Javier Mencía","Enrique Sentana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.tara.tcd.ie:2262/55574"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence"]},"trust":{"type":"FLOAT","value":0.20697784},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bde:wpaper:0909\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"und\",\"subjects\":[\"Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence\"],\"creators\":[\"Javier Mencía\",\"Enrique Sentana\"],\"publicationdate\":\"2009-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/2262/55574\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2262/55574\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"}]},\"provenance\":{\"repositoryName\":\"Trinity\\u0027s Access to Research Archive\",\"url\":\"http://hdl.handle.net/2262/55574\",\"id\":\"oai:www.tara.tcd.ie:2262/55574\"},\"trust\":0.8812254}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bde:wpaper:0909"},"target_publication_author_list":{"type":"LIST_STRING","value":["Javier Mencía","Enrique Sentana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.tara.tcd.ie:2262/55574"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence"]},"trust":{"type":"FLOAT","value":0.8812254},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bde:wpaper:0909\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"und\",\"subjects\":[\"Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence\"],\"creators\":[\"Javier Mencía\",\"Enrique Sentana\"],\"publicationdate\":\"2009-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00592580\",\"id\":\"oai:HAL:hal-00592580v1\"},\"trust\":0.43786663}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bde:wpaper:0909"},"target_publication_author_list":{"type":"LIST_STRING","value":["Javier Mencía","Enrique Sentana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00592580v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence"]},"trust":{"type":"FLOAT","value":0.43786663},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2009-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bde:wpaper:0909\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"und\",\"subjects\":[\"Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence\"],\"creators\":[\"Javier Mencía\",\"Enrique Sentana\"],\"publicationdate\":\"2009-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00592580\",\"id\":\"oai:HAL:hal-00592580v1\"},\"trust\":0.43786663}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bde:wpaper:0909"},"target_publication_author_list":{"type":"LIST_STRING","value":["Javier Mencía","Enrique Sentana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00592580v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence"]},"trust":{"type":"FLOAT","value":0.43786663},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2009-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bde:wpaper:0909\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"und\",\"subjects\":[\"Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence\"],\"creators\":[\"Javier Mencía\",\"Enrique Sentana\"],\"publicationdate\":\"2009-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00592580\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00592580\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00592580\",\"id\":\"oai:HAL:hal-00592580v1\"},\"trust\":0.053535283}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bde:wpaper:0909"},"target_publication_author_list":{"type":"LIST_STRING","value":["Javier Mencía","Enrique Sentana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00592580v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Generalised Hyperbolic Distribution, Maximum Likelihood, Portfolio Frontiers, Sortino Ratio, Spanning Tests, Tail Dependence"]},"trust":{"type":"FLOAT","value":0.053535283},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2009-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00592580v1\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"International audience\",\"We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"eng\",\"subjects\":[\"C52\",\"C32\",\"G11\",\"Generalised hyperbolic distribution\",\"Maximum likelihood\",\"Portfolio frontiers\",\"Sortino ratio\",\"Spanning tests\",\"Tail dependence\"],\"creators\":[\"Mencía, Javier\",\"Sentana, Enrique\"],\"publicationdate\":\"2009-05-13\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00592580\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.ssoar.info/ssoar/handle/document/25086\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ssoar.info/ssoar/handle/document/25086\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Social Science Open Access Repository\",\"url\":\"http://www.ssoar.info/ssoar/handle/document/25086\",\"id\":\"oai:gesis.izsoz.de:25086\"},\"trust\":0.877377}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00592580v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mencía, Javier","Sentana, Enrique"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:gesis.izsoz.de:25086"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7810ccd41bf26faaa2c4e1f20db70a71"},"target_publication_subject_list":{"type":"LIST_STRING","value":["C52","C32","G11","Generalised hyperbolic distribution","Maximum likelihood","Portfolio frontiers","Sortino ratio","Spanning tests","Tail dependence"]},"trust":{"type":"FLOAT","value":0.877377},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"Social Science Open Access Repository"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00592580v1\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"International audience\",\"We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"eng\",\"subjects\":[\"C52\",\"C32\",\"G11\",\"Generalised hyperbolic distribution\",\"Maximum likelihood\",\"Portfolio frontiers\",\"Sortino ratio\",\"Spanning tests\",\"Tail dependence\"],\"creators\":[\"Mencía, Javier\",\"Sentana, Enrique\"],\"publicationdate\":\"2009-05-13\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00592580\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hdl.handle.net/2262/55574\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2262/55574\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"}]},\"provenance\":{\"repositoryName\":\"Trinity\\u0027s Access to Research Archive\",\"url\":\"http://hdl.handle.net/2262/55574\",\"id\":\"oai:www.tara.tcd.ie:2262/55574\"},\"trust\":0.6757362}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00592580v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mencía, Javier","Sentana, Enrique"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.tara.tcd.ie:2262/55574"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["C52","C32","G11","Generalised hyperbolic distribution","Maximum likelihood","Portfolio frontiers","Sortino ratio","Spanning tests","Tail dependence"]},"trust":{"type":"FLOAT","value":0.6757362},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00592580v1\",\"titles\":[\"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation\"],\"abstracts\":[\"International audience\",\"We show that the distribution of any portfolio whose components jointly follow a location-scale mixture of normals can be characterised solely by its mean, variance and skewness. Under this distributional assumption, we derive the mean-variance-skewness frontier in closed form, and show that it can be spanned by three funds. For practical purposes, we derive a standardised distribution, provide analytical expressions for the log-likelihood score and explain how to evaluate the information matrix. Finally, we present an empirical application in which we obtain the mean-variance-skewness frontier generated by the ten Datastream US sectoral indices, and conduct spanning tests.\"],\"language\":\"eng\",\"subjects\":[\"C52\",\"C32\",\"G11\",\"Generalised hyperbolic distribution\",\"Maximum likelihood\",\"Portfolio frontiers\",\"Sortino ratio\",\"Spanning tests\",\"Tail dependence\"],\"creators\":[\"Mencía, Javier\",\"Sentana, Enrique\"],\"publicationdate\":\"2009-05-13\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1016/j.jeconom.2009.05.001\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00592580\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/09/Fic/dt0909e.pdf\",\"id\":\"oai:RePEc:bde:wpaper:0909\"},\"trust\":0.8302023}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00592580v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mencía, Javier","Sentana, Enrique"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bde:wpaper:0909"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["C52","C32","G11","Generalised hyperbolic distribution","Maximum likelihood","Portfolio frontiers","Sortino ratio","Spanning tests","Tail dependence"]},"trust":{"type":"FLOAT","value":0.8302023},"target_publication_title":{"type":"STRING","value":"Multivariate location-scale mixtures of normals and mean-variance-skewness portfolio allocation"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-05-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2675944\",\"titles\":[\"Bilateral Vocal Cord Carcinoma in a Sarcoidosis Patient during Infliximab Therapy\"],\"abstracts\":[\"Introduction. Although the role of TNF- α in tumor development is not fully understood, an increased risk of malignancy with TNF- α -inhibitors, such as infliximab, has been suggested. Case Presentation. We present a 54-year-old nonsmoking female sarcoidosis patient. After seven months of infliximab therapy a T1aN0M0 larynx carcinoma of the right vocal cord was found and excised. Within a year, whilst still on treatment, a second larynx carcinoma of the opposite vocal cord appeared. Discussion. A bilateral vocal cord tumor is rare, especially in a never smoker. Evidence on the role of infliximab in carcinogenesis is inconclusive. To date, there are no follow-up studies evaluating malignancy risk of infliximab therapy in sarcoidosis patients. No studies in other diseases focus on laryngeal carcinomas during infliximab use. We argue that infliximab treatment might have attributed to the rapid progression of vocal cord carcinomas in this patient with an a priori low risk tumor profile. This case illustrates that caution remains warranted in patients with previous malignancies when considering initiation of TNF- α -inhibitors.\"],\"language\":\"eng\",\"subjects\":[\"Case Report\"],\"creators\":[\"Vorselaars, Adriane D. M.\",\"Sjögren, Elisabeth V.\",\"Moorsel, Coline H. M.\",\"Grutters, Jan C.\"],\"publicationdate\":\"2013-05-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Case Reports in Pulmonology\",\"issn\":\"2090-6846\",\"eissn\":\"2090-6854\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2013/308092\",\"type\":\"doi\"},{\"value\":\"PMC3671292\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3671292\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2013/308092\",\"license\":\"OPEN\",\"hostedby\":\"Case Reports in Pulmonology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2013/308092\",\"license\":\"OPEN\",\"hostedby\":\"Case Reports in Pulmonology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2013/308092\",\"id\":\"oai:doaj.org/article:53f78cc67cef4edb8e9c8d47aa54c66a\"},\"trust\":0.097829044}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2675944"},"target_publication_author_list":{"type":"LIST_STRING","value":["Vorselaars, Adriane D. M.","Sjögren, Elisabeth V.","Moorsel, Coline H. M.","Grutters, Jan C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:53f78cc67cef4edb8e9c8d47aa54c66a"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Case Report"]},"trust":{"type":"FLOAT","value":0.097829044},"target_publication_title":{"type":"STRING","value":"Bilateral Vocal Cord Carcinoma in a Sarcoidosis Patient during Infliximab Therapy"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2013-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:pastel-00003122v1\",\"titles\":[\"Algorithmes multidimensionnels et multispectraux en Morphologie Mathématique : approche par méta-programmation.\"],\"abstracts\":[\"This PhD focuses on algorithms in the field of Mathematical Morphology and Image Processing, from the point of view of modern programming techniques. Computer science is often considered as a simple witness of hardware improvements dictated by Moore\\u0027s law. However, software techniques evolve as well, and new programming tools such as metaprogramming are now available for the scientific community. Programming is of paramount interest for image processing; for this task, meta-programming brings significant improvements both in scientific terms by providing a powerful mean of abstraction, and in terms of practicability by providing portability, development centralizing, error reduction, etc. The work presented in this thesis is structured around the elaboration of a general algorithmic framework for - morphological - image processing. Furthermore, examples drawn from concrete industrial applications (in the fields of visual surveillance and car security) are described in order to illustrate the use of some of these developments. Prior to any algorithmic development, the thesis first proposes a model identifying underlying mathematical notions and their connections: data structures - images, graphs, topology, orders, and priority queues - are revisited with the meta-programming paradigm. This model clearly distinguishes the different actors and reaches the targeted abstraction level. Using specific mechanisms, the automation of numerous tasks is enabled with the compiler. Algorithms are then closer in description to the original mathematical formulations. These developments open for a wide area of research, including N dimensional and hyperspectral images which we further investigate in the following. The support of both N dimensional imaging and generic programming philosophy led us to define an exact distance transform algorithm. The hypotheses assumed regarding the underlying distance are few (homogeneity in space and convexity of the unit ball), which allows the use of a wide class of functions. Following a theoretical study, an algorithm is proposed based on ordered propagation. The error-proneness on many examples in 4D space (Euclidian, L5, oriented, non-isometric) is also illustrated. A different approach uses morphological distance transforms, popular in the field of mathematical morphology. This approach has recently seen a significant extension from binary to grey-scale images: Beucher\\u0027s « quasi-distance ». In this thesis, an algorithm is proposed which features lower complexity than the one proposed originally for this purpose. The handling of colour, or more generally of hyperspectral images (i.e. vectorial data), is rather delicate in the field of Mathematical Morphology. This thesis tackles this issue, and proposes three different approaches: the use of colour metrics, then of local statistics and finally of algebraic lattices by means of lexicographical orders. The programming framework introduced in the document suits all the needs of such approaches. Colour metrics enable the definition of morphological gradients in colour spaces. However, this definition is computationally expensive and practically unusable for wide neighbourhoods. In this case, local statistics provide an interesting alternative solution. Focus was put on circular statistics in HLS colour space, which led to a chromatic gradient. Lexicographical orders also provide an algebraic framework suitable for mathematical morphology in colour spaces. Using the framework proposed in this thesis, such orders do not require a fundamental revisiting of the existing algorithms. Operators based on orders and geodesy (extrema, reconstructions, granulometries ...) are extended with a very low cost in development. These abstract considerations are illustrated within two concrete applications: skin colour characterization robust to illumination changes (automotive security context), and motion detection (visual surveillance). Finally, this thesis deals with the issue of segmentation - more precisely, the watershed algorithm. An efficient implementation of the watershed uses hierarchically ordered queues. However the original algorithm using this method leads to some bias. The algorithm proposed in this thesis corrects these biases. Again, a great benefit comes from the proposed framework and, as a result, the algorithm is bound neither to space nor to relief data: watersheds in 4D, on real or colour images are now possible. Region construction is then modified in order to have a finer control on segmentations from a few numbers of markers. The first modification brings external information (e.g. colour or statistical consistency) using a cost function, computed either on the contour or the interior of the region. The second modification is based on contours\\u0027 local geometrical configuration and simulates a viscous flooding.\",\"Au cours de ces travaux de thèse, nous nous sommes intéressés d\\u0027un point de vue global aux algorithmes en Traitement d\\u0027Image et plus particulièrement en Morphologie Mathématique, selon certaines techniques nouvelles de programmation. L\\u0027évolution matérielle des moyens informatiques suit les prédictions de la loi de Moore. Cependant, une évolution parallèle, d\\u0027ordre logicielle, met à la disposition de la recherche scientifique des moyens de programmation nouveaux, dont la méta-programmation. Les avantages sont considérables, tant en terme scientifique par les possibilités offertes, qu\\u0027en termes simplement pratiques (portabilité, capitalisation des développements, réduction des erreurs, etc.). La présentation des travaux est structurée autour de la conception d\\u0027une bibliothèque de traitement - morphologique - d\\u0027image. Les différents aspects sont illustrés en partie par des exemples pris dans les domaines de la vidéosurveillance et de la sécurité automobile, et issus de projets industriels. Nous présentons dans un premier temps le cadre informatique utilisé pour l\\u0027écriture algorithmique. Afin de rendre efficace l\\u0027utilisation des nouvelles techniques de programmation, une étude préalable des notions mathématiques en Morphologie Mathématique - images, graphes, relations d\\u0027ordre, voisinages, éléments structurant, ... -, ainsi que des outils informatiques associés, est réalisée. La séparation correcte des rôles permet en outre l\\u0027écriture des structures indépendamment de la nature des données qu\\u0027ils contiennent, l\\u0027automatisation de nombreuses opérations par le compilateur, et une écriture algorithmique fidèle à une formulation mathématique. La conjonction de ces développements ouvre un grand champ d\\u0027exploration comme celui émanant des images nD et hyperspectrales, dont nous nous proposons d\\u0027explorer certains aspects. Le support des images nD associé à la programmation générique a sollicité le développement d\\u0027un algorithme de transformée exacte en distance. Les hypothèses sur la fonction distance sont faibles (homogénéité dans l\\u0027espace et convexité de la boule unité associée) afin d\\u0027utiliser les mêmes développements pour une large classe de fonction. Suite à une étude théorique, nous proposons un algorithme de calcul basé sur des propagations. Le même algorithme est utilisé pour l\\u0027ensemble des illustrations (fonctions de distance - L2, L5, orienté, non isométrique, ... - sur des images 4D). Les transformées morphologiques en distance sont d\\u0027approche totalement différente et d\\u0027usage courant en morphologie mathématique. Elles connaissent actuellement de nouveaux développements grâce à l\\u0027extension numérique proposée par Beucher: les « quasi-distances ». Nous proposons un algorithme de calcul rapide de ces distances. La couleur et plus généralement les images multispectrales (données vectorielles) sont d\\u0027une manipulation délicate en morphologie mathématique. Nous présentons trois approches complémentaires: l\\u0027utilisation de métriques couleurs, des statistiques locales et enfin les relations d\\u0027ordre lexicographique. Notre cadre informatique et algorithmique est parfaitement adapté à ces trois types de traitement. Le cadre métrique permet d\\u0027étendre la définition du gradient morphologique aux espaces couleurs, et plusieurs métriques dans Lab et HLS sont envisagées. Cette formulation est cependant coûteuse en termes de calcul et devient impraticable lorsque le voisinage utilisé pour le gradient s\\u0027agrandit. L\\u0027usage de statistiques locales permet de contourner ce problème. Nous nous sommes particulièrement intéressés à des statistiques circulaires dans HLS, ce qui nous a amené à la définition d\\u0027un gradient chromatique dans cet espace. Enfin, l\\u0027utilisation de relation d\\u0027ordre lexicographique étend le cadre algébrique classique à la couleur, sans modification fondamentale des algorithmes. Dans cette optique, nous verrons quels sont les moyens à notre disposition pour étendre la plupart des opérateurs (extrema, reconstruction, granulométries, ...) en maintenant un coût de développement bas. Deux études illustrent ces développements : la caractérisation chromatique de la peau, robuste aux changements d\\u0027illumination (contexte automobile), et la détection des zones de mouvement (vidéosurveillance). Le dernier sujet d\\u0027intérêt concerne la segmentation, et plus particulièrement l\\u0027algorithme de ligne de partage des eaux. L\\u0027implémentation de référence à l\\u0027aide de files d\\u0027attente hiérarchiques conduit à certains biais que nous corrigeons. L\\u0027algorithme proposé étant générique, nous l\\u0027appliquons sur des images de dimension 4, sur des reliefs en précision flottante ou couleur. Nous modifions ensuite la construction des bassins versants de manière à contourner certaines difficultés rencontrées lors de la segmentation avec un nombre faible de marqueurs. La première modification injecte dans le processus de propagation une information extérieure exprimée sous forme de fonction de coût. Cette fonction concerne aussi bien le contour que l\\u0027intérieur de la région en cours de construction. La seconde modification utilise une contrainte locale et rend le fluide visqueux. Des analogies sont établies entre ces nouvelles propagations et les équations d\\u0027évolution de courbe à l\\u0027aide de dérivées partielles.\"],\"language\":\"eng\",\"subjects\":[\"Mathematical morphology\",\"Meta-programming\",\"C++\",\"N dimensional images\",\"Multi-spectral images\",\"Exact distance transforms\",\"Morphological distances\",\"Quasi-distances\",\"Colour\",\"Circular statistics\",\"Lexicographical orders\",\"Robust skin detection\",\"Illumination changes\",\"Motion detection with colour\",\"Segmentation\",\"Watershed\",\"Hierarchically ordered queues\",\"Viscous floodings\",\"Constraint floodings.\",\"[MATH] Mathematics\",\"[OTHER] domain_other\"],\"creators\":[\"Enficiaud, Raffi\"],\"publicationdate\":\"2007-02-26\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"École Nationale Supérieure des Mines de Paris\",\"Michel Bilodeau\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://pastel.archives-ouvertes.fr/pastel-00003122\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://pastel.archives-ouvertes.fr/pastel-00003122\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://pastel.archives-ouvertes.fr/pastel-00003122\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://pastel.archives-ouvertes.fr/pastel-00003122\",\"id\":\"oai:pastel.archives-ouvertes.fr:pastel-00003122\"},\"trust\":0.25479496}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:pastel-00003122v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Enficiaud, Raffi"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:pastel.archives-ouvertes.fr:pastel-00003122"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematical morphology","Meta-programming","C++","N dimensional images","Multi-spectral images","Exact distance transforms","Morphological distances","Quasi-distances","Colour","Circular statistics","Lexicographical orders","Robust skin detection","Illumination changes","Motion detection with colour","Segmentation","Watershed","Hierarchically ordered queues","Viscous floodings","Constraint floodings.","[MATH] Mathematics","[OTHER] domain_other"]},"trust":{"type":"FLOAT","value":0.25479496},"target_publication_title":{"type":"STRING","value":"Algorithmes multidimensionnels et multispectraux en Morphologie Mathématique : approche par méta-programmation."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2007-02-26"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:pastel.archives-ouvertes.fr:pastel-00003122\",\"titles\":[\"Algorithmes multidimensionnels et multispectraux en Morphologie Mathématique : approche par méta-programmation.\"],\"abstracts\":[\"Au cours de ces travaux de thèse, nous nous sommes intéressés d\\u0027un point de vue global aux algorithmes en Traitement d\\u0027Image et plus particulièrement en Morphologie Mathématique, selon certaines techniques nouvelles de programmation. L\\u0027évolution matérielle des moyens informatiques suit les prédictions de la loi de Moore. Cependant, une évolution parallèle, d\\u0027ordre logicielle, met à la disposition de la recherche scientifique des moyens de programmation nouveaux, dont la méta-programmation. Les avantages sont considérables, tant en terme scientifique par les possibilités offertes, qu\\u0027en termes simplement pratiques (portabilité, capitalisation des développements, réduction des erreurs, etc.). La présentation des travaux est structurée autour de la conception d\\u0027une bibliothèque de traitement - morphologique - d\\u0027image. Les différents aspects sont illustrés en partie par des exemples pris dans les domaines de la vidéosurveillance et de la sécurité automobile, et issus de projets industriels. Nous présentons dans un premier temps le cadre informatique utilisé pour l\\u0027écriture algorithmique. Afin de rendre efficace l\\u0027utilisation des nouvelles techniques de programmation, une étude préalable des notions mathématiques en Morphologie Mathématique - images, graphes, relations d\\u0027ordre, voisinages, éléments structurant, ... -, ainsi que des outils informatiques associés, est réalisée. La séparation correcte des rôles permet en outre l\\u0027écriture des structures indépendamment de la nature des données qu\\u0027ils contiennent, l\\u0027automatisation de nombreuses opérations par le compilateur, et une écriture algorithmique fidèle à une formulation mathématique. La conjonction de ces développements ouvre un grand champ d\\u0027exploration comme celui émanant des images nD et hyperspectrales, dont nous nous proposons d\\u0027explorer certains aspects. Le support des images nD associé à la programmation générique a sollicité le développement d\\u0027un algorithme de transformée exacte en distance. Les hypothèses sur la fonction distance sont faibles (homogénéité dans l\\u0027espace et convexité de la boule unité associée) afin d\\u0027utiliser les mêmes développements pour une large classe de fonction. Suite à une étude théorique, nous proposons un algorithme de calcul basé sur des propagations. Le même algorithme est utilisé pour l\\u0027ensemble des illustrations (fonctions de distance - L2, L5, orienté, non isométrique, ... - sur des images 4D). Les transformées morphologiques en distance sont d\\u0027approche totalement différente et d\\u0027usage courant en morphologie mathématique. Elles connaissent actuellement de nouveaux développements grâce à l\\u0027extension numérique proposée par Beucher: les « quasi-distances ». Nous proposons un algorithme de calcul rapide de ces distances. La couleur et plus généralement les images multispectrales (données vectorielles) sont d\\u0027une manipulation délicate en morphologie mathématique. Nous présentons trois approches complémentaires: l\\u0027utilisation de métriques couleurs, des statistiques locales et enfin les relations d\\u0027ordre lexicographique. Notre cadre informatique et algorithmique est parfaitement adapté à ces trois types de traitement. Le cadre métrique permet d\\u0027étendre la définition du gradient morphologique aux espaces couleurs, et plusieurs métriques dans Lab et HLS sont envisagées. Cette formulation est cependant coûteuse en termes de calcul et devient impraticable lorsque le voisinage utilisé pour le gradient s\\u0027agrandit. L\\u0027usage de statistiques locales permet de contourner ce problème. Nous nous sommes particulièrement intéressés à des statistiques circulaires dans HLS, ce qui nous a amené à la définition d\\u0027un gradient chromatique dans cet espace. Enfin, l\\u0027utilisation de relation d\\u0027ordre lexicographique étend le cadre algébrique classique à la couleur, sans modification fondamentale des algorithmes. Dans cette optique, nous verrons quels sont les moyens à notre disposition pour étendre la plupart des opérateurs (extrema, reconstruction, granulométries, ...) en maintenant un coût de développement bas. Deux études illustrent ces développements : la caractérisation chromatique de la peau, robuste aux changements d\\u0027illumination (contexte automobile), et la détection des zones de mouvement (vidéosurveillance). Le dernier sujet d\\u0027intérêt concerne la segmentation, et plus particulièrement l\\u0027algorithme de ligne de partage des eaux. L\\u0027implémentation de référence à l\\u0027aide de files d\\u0027attente hiérarchiques conduit à certains biais que nous corrigeons. L\\u0027algorithme proposé étant générique, nous l\\u0027appliquons sur des images de dimension 4, sur des reliefs en précision flottante ou couleur. Nous modifions ensuite la construction des bassins versants de manière à contourner certaines difficultés rencontrées lors de la segmentation avec un nombre faible de marqueurs. La première modification injecte dans le processus de propagation une information extérieure exprimée sous forme de fonction de coût. Cette fonction concerne aussi bien le contour que l\\u0027intérieur de la région en cours de construction. La seconde modification utilise une contrainte locale et rend le fluide visqueux. Des analogies sont établies entre ces nouvelles propagations et les équations d\\u0027évolution de courbe à l\\u0027aide de dérivées partielles.\"],\"language\":\"und\",\"subjects\":[\"[MATH] Mathematics\",\"[MATH] Mathématiques\",\"Morphologie mathématique\",\"Méta-programmation\",\"C++\",\"images en N dimensions\",\"Images multispectrales\",\"Transformée en distance exacte\",\"Distances morphologiques\",\"Quasi-distances\",\"Couleur\",\"Statistiques circulaires\",\"Ordres lexicographiques\",\"Détection robuste de peau\",\"Changement d\\u0027illuminant\",\"Détection de mouvement par la couleur\",\"Segmentation\",\"Ligne de partage des eaux\",\"Files hiérarchiques d\\u0027attente\",\"Propagations visqueuses\",\"Propagations contraintes\"],\"creators\":[\"Enficiaud, Raffi\"],\"publicationdate\":\"2007-02-26\",\"publisher\":\"École Nationale Supérieure des Mines de Paris\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://pastel.archives-ouvertes.fr/pastel-00003122\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"https://pastel.archives-ouvertes.fr/pastel-00003122\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://pastel.archives-ouvertes.fr/pastel-00003122\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://pastel.archives-ouvertes.fr/pastel-00003122\",\"id\":\"oai:HAL:pastel-00003122v1\"},\"trust\":0.83023775}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:pastel.archives-ouvertes.fr:pastel-00003122"},"target_publication_author_list":{"type":"LIST_STRING","value":["Enficiaud, Raffi"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:pastel-00003122v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH] Mathematics","[MATH] Mathématiques","Morphologie mathématique","Méta-programmation","C++","images en N dimensions","Images multispectrales","Transformée en distance exacte","Distances morphologiques","Quasi-distances","Couleur","Statistiques circulaires","Ordres lexicographiques","Détection robuste de peau","Changement d\u0027illuminant","Détection de mouvement par la couleur","Segmentation","Ligne de partage des eaux","Files hiérarchiques d\u0027attente","Propagations visqueuses","Propagations contraintes"]},"trust":{"type":"FLOAT","value":0.83023775},"target_publication_title":{"type":"STRING","value":"Algorithmes multidimensionnels et multispectraux en Morphologie Mathématique : approche par méta-programmation."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2007-02-26"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00584792\",\"titles\":[\"Les traités persans sur les sciences indiennes : médecine, zoologie, alchimie\"],\"abstracts\":[\"Les historiens de la médecine dans le monde musulman ont nourri l\\u0027idée que la première modernité est une période de déclin pour les études médicales, caractérisée par une production littéraire de second plan qui ne serait qu\\u0027une copie stérile de textes classiques arabes écrits avant le treizième siècle, tel le Qānūn d\\u0027Ibn Sīnā (m. 370/980), textes qui eurent par ailleurs, une grande résonance dans le monde latin. Or, l\\u0027époque du déclin de la production médicale en langue arabe correspond à celle du développement des études médicales en Inde musulmane, dont la vaste production littéraire en persan n\\u0027a encore jamais fait l\\u0027objet d\\u0027une étude exhaustive. Une analyse plus approfondie des sources montre qu\\u0027il serait en effet injustifié de définir le corpus de la littérature médicale indo-persane comme une production manquant d\\u0027originalité par rapport à la littérature arabe. Au contraire, la production médicale en langue persane de l\\u0027Inde, marquée par des traits indianisants, est précisément caractérisée par son identité spécifique vis-à-vis de l\\u0027héritage de la littérature arabe. Les contacts avec les sciences indiennes s\\u0027étaient amorcés assez tôt dans le monde musulman et les savants musulmans avaient déjà connaissance de certains éléments scientifiques d\\u0027origine indienne bien avant l\\u0027implantation du pouvoir musulman dans le sous-continent. La phase indienne des traductions et des traités en persan sur les sciences indiennes commença après l\\u0027instauration du sultanat de Delhi, fondé au début du XIIIe siècle. Ce mouvement se développa notamment durant l\\u0027époque moghole, plusieurs textes appartenant à la période moghole tardive. Le courant d\\u0027études en persan, puis en ourdou, portant sur la médecine et les sciences indiennes doit être considéré comme l\\u0027un des grands mouvements de transfert du savoir scientifique réalisés dans le monde musulman. En ce qui concerne la médecine et les sciences de la nature, les études en persan et en ourdou portant sur le savoir indien constituent dans le monde musulman de la première modernité et à l\\u0027époque moderne, le mouvement le plus important de ce type à avoir été réalisé à partir d\\u0027une tradition préislamique.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:HIST] Humanities and Social Sciences/History\",\"[SHS:HIST] Sciences de l\\u0027Homme et Société/Histoire\",\"[SHS:HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences\",\"[SHS:HISPHILSO] Sciences de l\\u0027Homme et Société/Histoire, Philosophie et Sociologie des sciences\",\"persan\",\"sanscrit\",\"ourdou\",\"Inde\",\"Mughal\",\"traductions\"],\"creators\":[\"Speziale, Fabrizio\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00584792\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00584792\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00584792\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00584792\",\"id\":\"oai:HAL:halshs-00584792v1\"},\"trust\":0.6378116}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00584792"},"target_publication_author_list":{"type":"LIST_STRING","value":["Speziale, Fabrizio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00584792v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:HIST] Humanities and Social Sciences/History","[SHS:HIST] Sciences de l\u0027Homme et Société/Histoire","[SHS:HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences","[SHS:HISPHILSO] Sciences de l\u0027Homme et Société/Histoire, Philosophie et Sociologie des sciences","persan","sanscrit","ourdou","Inde","Mughal","traductions"]},"trust":{"type":"FLOAT","value":0.6378116},"target_publication_title":{"type":"STRING","value":"Les traités persans sur les sciences indiennes : médecine, zoologie, alchimie"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00584792v1\",\"titles\":[\"Les traités persans sur les sciences indiennes : médecine, zoologie, alchimie\"],\"abstracts\":[\"This article discusses the production of Persian and Urdu texts on Indian sciences in early-modern and modern India, by focusing on the works composed in the field of medicine, zoology and alchemy. It examines the main grounds, trends and works that characterized this movement of studies, which had already emerged during the sultanate period and endured until the Colonial epoch. This can be considered as one of the major movements of scientific studies dealing with a pre-Islamic tradition that took place in the Muslim world. Several of these works were produced for Muslim nobles. However, the writing of these treatises, especially the medical ones, was to a large extent stimulated by practical reasons, such as identify drugs in the local pharmacopoeia. Studying Indian pharmacopoeia became a way to adapt Muslim physicians\\u0027 practice to local conditions. Moreover, scientific texts in Persian and later on in Urdu were composed by Hindu scholars. During the Colonial epoch, Persian works on Indian sciences and English translations from Persian were made for and by the British; works on the subject appeared in Urdu as well.\",\"Les historiens de la médecine dans le monde musulman ont nourri l\\u0027idée que la première modernité est une période de déclin pour les études médicales, caractérisée par une production littéraire de second plan qui ne serait qu\\u0027une copie stérile de textes classiques arabes écrits avant le treizième siècle, tel le Qānūn d\\u0027Ibn Sīnā (m. 370/980), textes qui eurent par ailleurs, une grande résonance dans le monde latin. Or, l\\u0027époque du déclin de la production médicale en langue arabe correspond à celle du développement des études médicales en Inde musulmane, dont la vaste production littéraire en persan n\\u0027a encore jamais fait l\\u0027objet d\\u0027une étude exhaustive. Une analyse plus approfondie des sources montre qu\\u0027il serait en effet injustifié de définir le corpus de la littérature médicale indo-persane comme une production manquant d\\u0027originalité par rapport à la littérature arabe. Au contraire, la production médicale en langue persane de l\\u0027Inde, marquée par des traits indianisants, est précisément caractérisée par son identité spécifique vis-à-vis de l\\u0027héritage de la littérature arabe. Les contacts avec les sciences indiennes s\\u0027étaient amorcés assez tôt dans le monde musulman et les savants musulmans avaient déjà connaissance de certains éléments scientifiques d\\u0027origine indienne bien avant l\\u0027implantation du pouvoir musulman dans le sous-continent. La phase indienne des traductions et des traités en persan sur les sciences indiennes commença après l\\u0027instauration du sultanat de Delhi, fondé au début du XIIIe siècle. Ce mouvement se développa notamment durant l\\u0027époque moghole, plusieurs textes appartenant à la période moghole tardive. Le courant d\\u0027études en persan, puis en ourdou, portant sur la médecine et les sciences indiennes doit être considéré comme l\\u0027un des grands mouvements de transfert du savoir scientifique réalisés dans le monde musulman. En ce qui concerne la médecine et les sciences de la nature, les études en persan et en ourdou portant sur le savoir indien constituent dans le monde musulman de la première modernité et à l\\u0027époque moderne, le mouvement le plus important de ce type à avoir été réalisé à partir d\\u0027une tradition préislamique.\"],\"language\":\"fra/fre\",\"subjects\":[\"Persian\",\"Sanskrit\",\"Urdu\",\"India\",\"Mughal\",\"translations\",\"[SHS.HIST] Humanities and Social Sciences/History\",\"[SHS.HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences\"],\"creators\":[\"Speziale, Fabrizio\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"Klaus Schwarz Verlag\",\"embargoenddate\":\"\",\"contributor\":[\"Mondes iranien et indien ; INALCO - École Pratique des Hautes Études [EPHE] - Université Paris III - Sorbonne nouvelle - CNRS\",\"Institut Français de Recherche en Iran, D. Hermann - F. Speziale\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00584792\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00584792\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00584792\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00584792\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00584792\"},\"trust\":0.12417835}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00584792v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Speziale, Fabrizio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00584792"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Persian","Sanskrit","Urdu","India","Mughal","translations","[SHS.HIST] Humanities and Social Sciences/History","[SHS.HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences"]},"trust":{"type":"FLOAT","value":0.12417835},"target_publication_title":{"type":"STRING","value":"Les traités persans sur les sciences indiennes : médecine, zoologie, alchimie"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:doc.utwente.nl:80749\",\"titles\":[\"Neurotoxicity of Alzheimer\\u0027s disease Aβ peptides is induced by small changes in the Aβ$_{42}$ to Aβ$_{40}$ ratio\"],\"abstracts\":[\"The amyloid peptides Aβ$_{40}$ and Aβ$_{42}$ of Alzheimer\\u0027s disease are thought to contribute differentially to the disease process. Although Aβ$_{42}$ seems more pathogenic than Aβ$_{40}$, the reason for this is not well understood. We show here that small alterations in the Aβ42:Aβ40 ratio dramatically affect the biophysical and biological properties of the Aβ mixtures reflected in their aggregation kinetics, the morphology of the resulting amyloid fibrils and synaptic function tested in vitro and in vivo. A minor increase in the Aβ$_{42}$:Aβ$_{40}$ ratio stabilizes toxic oligomeric species with intermediate conformations. The initial toxic impact of these Aβ species is synaptic in nature, but this can spread into the cells leading to neuronal cell death. The fact that the relative ratio of Aβ peptides is more crucial than the absolute amounts of peptides for the induction of neurotoxic conformations has important implications for anti-amyloid therapy. Our work also suggests the dynamic nature of the equilibrium between toxic and non-toxic intermediates.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Kuperstein, Inna\",\"Broersen, Kerensa\",\"Benilova, Iryna\",\"Rozenski, Jef\",\"Jonckheere, Wim\",\"Segers-Nolten, Ine\",\"Werf, Kees\",\"Subramaniam, Vinod\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"European Molecular Biology Organization\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit Twente Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://purl.utwente.nl/publications/80749\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://purl.utwente.nl/publications/80749\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://purl.utwente.nl/publications/80749\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://purl.utwente.nl/publications/80749\",\"id\":\"ut:oai:doc.utwente.nl:80749\"},\"trust\":0.53455997}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit Twente Repository"},"target_publication_id":{"type":"STRING","value":"oai:doc.utwente.nl:80749"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kuperstein, Inna","Broersen, Kerensa","Benilova, Iryna","Rozenski, Jef","Jonckheere, Wim","Segers-Nolten, Ine","Werf, Kees","Subramaniam, Vinod"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["ut:oai:doc.utwente.nl:80749"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.53455997},"target_publication_title":{"type":"STRING","value":"Neurotoxicity of Alzheimer\u0027s disease Aβ peptides is induced by small changes in the Aβ$_{42}$ to Aβ$_{40}$ ratio"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8dd48d6a2e2cad213179a3992c0be53c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:356878\",\"titles\":[\"Knowledge and creativity at work in the Minch region. Pathways to creative and knowledge-based regions\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hafner, S.\",\"Miosga, M.\",\"Sickermann, K.\",\"Sreit, A. Von\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"AMIDSt, University of Amsterdam\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://dare.uva.nl/record/356878\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Internal report\"},{\"url\":\"http://hdl.handle.net/11245/1.427919\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/11245/1.427919\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/11245/1.427919\",\"id\":\"uvapub:oai:uva.nl:427919\"},\"trust\":0.4255274}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:356878"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hafner, S.","Miosga, M.","Sickermann, K.","Sreit, A. Von"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uvapub:oai:uva.nl:427919"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.4255274},"target_publication_title":{"type":"STRING","value":"Knowledge and creativity at work in the Minch region. Pathways to creative and knowledge-based regions"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2400102\",\"titles\":[\"MOSCHweb — a matrix-based interactive key to the genera of the Palaearctic Tachinidae (Insecta, Diptera)\"],\"abstracts\":[\"Abstract We provide a general overview of features and technical specifications of an original interactive key web application for the identification of Palaearctic Tachinidae genera. The full list of terminal taxa included in the key, which is the most updated list of genera currently recorded for the Palaearctic Region, is given. We also briefly discuss the need for dealing with detailed and standardized taxa descriptions as a base to keep matrix-based interactive tools easily updated, by proposing a standardized protocol.\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"Interactive key\",\"identification tool\",\"web application\",\"data matrix\",\"morphology\",\"description protocol\",\"Diptera\",\"Tachinidae\",\"Palaearctic Region\"],\"creators\":[\"Cerretti, Pierfilippo\",\"Tschorsnig, Hans-Peter\",\"Lopresti, Massimo\",\"Giovanni, Filippo Di\"],\"publicationdate\":\"2012-07-01\",\"publisher\":\"Pensoft Publishers\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"ZooKeys\",\"issn\":\"1313-2989\",\"eissn\":\"1313-2970\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3897/zookeys.205.3409\",\"type\":\"doi\"},{\"value\":\"PMC3391727\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3391727\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.3897/zookeys.205.3409\",\"license\":\"OPEN\",\"hostedby\":\"ZooKeys\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.3897/zookeys.205.3409\",\"license\":\"OPEN\",\"hostedby\":\"ZooKeys\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Pensoft\",\"url\":\"http://dx.doi.org/10.3897/zookeys.205.3409\",\"id\":\"10.3897/zookeys.205.3409\"},\"trust\":0.30902553}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2400102"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cerretti, Pierfilippo","Tschorsnig, Hans-Peter","Lopresti, Massimo","Giovanni, Filippo Di"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.3897/zookeys.205.3409"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdc7e0400d8c1634cdaf8051dbae23db"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","Interactive key","identification tool","web application","data matrix","morphology","description protocol","Diptera","Tachinidae","Palaearctic Region"]},"trust":{"type":"FLOAT","value":0.30902553},"target_publication_title":{"type":"STRING","value":"MOSCHweb — a matrix-based interactive key to the genera of the Palaearctic Tachinidae (Insecta, Diptera)"},"provenance_datasource_name":{"type":"STRING","value":"Pensoft"},"target_dateofacceptance":{"type":"DATE","value":"2012-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2400102\",\"titles\":[\"MOSCHweb — a matrix-based interactive key to the genera of the Palaearctic Tachinidae (Insecta, Diptera)\"],\"abstracts\":[\"Abstract We provide a general overview of features and technical specifications of an original interactive key web application for the identification of Palaearctic Tachinidae genera. The full list of terminal taxa included in the key, which is the most updated list of genera currently recorded for the Palaearctic Region, is given. We also briefly discuss the need for dealing with detailed and standardized taxa descriptions as a base to keep matrix-based interactive tools easily updated, by proposing a standardized protocol.\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"Interactive key\",\"identification tool\",\"web application\",\"data matrix\",\"morphology\",\"description protocol\",\"Diptera\",\"Tachinidae\",\"Palaearctic Region\"],\"creators\":[\"Cerretti, Pierfilippo\",\"Tschorsnig, Hans-Peter\",\"Lopresti, Massimo\",\"Giovanni, Filippo Di\"],\"publicationdate\":\"2012-07-01\",\"publisher\":\"Pensoft Publishers\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"ZooKeys\",\"issn\":\"1313-2989\",\"eissn\":\"1313-2970\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3897/zookeys.205.3409\",\"type\":\"doi\"},{\"value\":\"PMC3391727\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3391727\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://zookeys.pensoft.net/lib/ajax_srv/article_elements_srv.php?action\\u003ddownload_pdf\\u0026item_id\\u003d2895\",\"license\":\"OPEN\",\"hostedby\":\"ZooKeys\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://zookeys.pensoft.net/lib/ajax_srv/article_elements_srv.php?action\\u003ddownload_pdf\\u0026item_id\\u003d2895\",\"license\":\"OPEN\",\"hostedby\":\"ZooKeys\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://zookeys.pensoft.net/lib/ajax_srv/article_elements_srv.php?action\\u003ddownload_pdf\\u0026item_id\\u003d2895\",\"id\":\"oai:doaj.org/article:1842df2a116845669517b744edba4a8f\"},\"trust\":0.7659352}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2400102"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cerretti, Pierfilippo","Tschorsnig, Hans-Peter","Lopresti, Massimo","Giovanni, Filippo Di"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:1842df2a116845669517b744edba4a8f"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","Interactive key","identification tool","web application","data matrix","morphology","description protocol","Diptera","Tachinidae","Palaearctic Region"]},"trust":{"type":"FLOAT","value":0.7659352},"target_publication_title":{"type":"STRING","value":"MOSCHweb — a matrix-based interactive key to the genera of the Palaearctic Tachinidae (Insecta, Diptera)"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:zbw:opodis:200903\",\"titles\":[\"Realwirtschaft und Liquidität\"],\"abstracts\":[\"Die augenblickliche Finanzkrise ist nur möglich geworden, weil die amerikanische Notenbank die Kreditzinsen künstlich niedrig gehalten hat und auf diese Weise eine enorme Verlängerung der Bankbilanzen ermöglichte. Diese Verlängerung führte einerseits zu einer starken Verschuldung der Privathaushalte, die im Wesentlichen hypothekarisch abgesichert wurde. Hinzu kommt, dass eine Tilgung dieser Kredite meist gar nicht vorgesehen ist. Wenn noch nicht einmal der volle Zinsbetrag zu leisten ist, sondern die Differenz zwischen dem geleisteten Schuldendienst und den verbleibenden Zinsen einfach als Schuld der Hypothekensumme zugeschlagen wird, entsteht eine schier unvorstellbare Entkopplung zwischen Geldwirtschaft und Realwirtschaft. Im Vergleich zum natürlichen Zins Knut Wicksells, das ist jener Zins, der sich als Rendite realer kreditfinanzierter Projekte versteht, ist also der Zentralbankzins viel zu niedrig, und so entsteht künstlich eine Überliquidität, die in der Realwirtschaft gar nicht zum Tragen kommt und eine klassische Spekulationsblase nährt.\"],\"language\":\"und\",\"subjects\":[\"Produktion und Überliquidität,Karl Brunner,John Maynard Keynes,Wilhelm Lautenbach\"],\"creators\":[\"Backhaus, Jürgen\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/55423/1/685097706.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/55423\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/55423\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/55423\",\"id\":\"oai:econstor.eu:10419/55423\"},\"trust\":0.4303239}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:zbw:opodis:200903"},"target_publication_author_list":{"type":"LIST_STRING","value":["Backhaus, Jürgen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/55423"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Produktion und Überliquidität,Karl Brunner,John Maynard Keynes,Wilhelm Lautenbach"]},"trust":{"type":"FLOAT","value":0.4303239},"target_publication_title":{"type":"STRING","value":"Realwirtschaft und Liquidität"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/55423\",\"titles\":[\"Realwirtschaft und Liquidität\"],\"abstracts\":[\"Die augenblickliche Finanzkrise ist nur möglich geworden, weil die amerikanische Notenbank die Kreditzinsen künstlich niedrig gehalten hat und auf diese Weise eine enorme Verlängerung der Bankbilanzen ermöglichte. Diese Verlängerung führte einerseits zu einer starken Verschuldung der Privathaushalte, die im Wesentlichen hypothekarisch abgesichert wurde. Hinzu kommt, dass eine Tilgung dieser Kredite meist gar nicht vorgesehen ist. Wenn noch nicht einmal der volle Zinsbetrag zu leisten ist, sondern die Differenz zwischen dem geleisteten Schuldendienst und den verbleibenden Zinsen einfach als Schuld der Hypothekensumme zugeschlagen wird, entsteht eine schier unvorstellbare Entkopplung zwischen Geldwirtschaft und Realwirtschaft. Im Vergleich zum natürlichen Zins Knut Wicksells, das ist jener Zins, der sich als Rendite realer kreditfinanzierter Projekte versteht, ist also der Zentralbankzins viel zu niedrig, und so entsteht künstlich eine Überliquidität, die in der Realwirtschaft gar nicht zum Tragen kommt und eine klassische Spekulationsblase nährt.\"],\"language\":\"deu/ger\",\"subjects\":[\"ddc:330\",\"Produktion und Überliquidität\",\"Karl Brunner\",\"John Maynard Keynes\",\"Wilhelm Lautenbach\"],\"creators\":[\"Backhaus, Jürgen\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/55423\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://econstor.eu/bitstream/10419/55423/1/685097706.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/55423/1/685097706.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econstor.eu/bitstream/10419/55423/1/685097706.pdf\",\"id\":\"oai:RePEc:zbw:opodis:200903\"},\"trust\":0.7602035}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/55423"},"target_publication_author_list":{"type":"LIST_STRING","value":["Backhaus, Jürgen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:zbw:opodis:200903"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330","Produktion und Überliquidität","Karl Brunner","John Maynard Keynes","Wilhelm Lautenbach"]},"trust":{"type":"FLOAT","value":0.7602035},"target_publication_title":{"type":"STRING","value":"Realwirtschaft und Liquidität"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/344223\",\"titles\":[\"Real life saving of energy in the home by the use of a solar heat collector system\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Leerstoelgroep Consumententechnologie en productgebruik\",\"Consumer Technology and Product Use\",\"Leerstoelgroep Economie van consumenten en huishoudens\",\"Economics of Consumers and Households Group\",\"MGS\",\"MGS\"],\"creators\":[\"Terpstra, P. M. J.\",\"Ophem, J. A. C.\",\"Janssen, W. D.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/28941\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/344223\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/344223\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/344223\",\"id\":\"wur:oai:library.wur.nl:wurpubs/344223\"},\"trust\":0.8820118}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/344223"},"target_publication_author_list":{"type":"LIST_STRING","value":["Terpstra, P. M. J.","Ophem, J. A. C.","Janssen, W. D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/344223"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Leerstoelgroep Consumententechnologie en productgebruik","Consumer Technology and Product Use","Leerstoelgroep Economie van consumenten en huishoudens","Economics of Consumers and Households Group","MGS","MGS"]},"trust":{"type":"FLOAT","value":0.8820118},"target_publication_title":{"type":"STRING","value":"Real life saving of energy in the home by the use of a solar heat collector system"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fip:fedgws:13\",\"titles\":[\"Agencies announce pilot project to improve supervision of subprime mortgage lenders\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Mortgage loans\"],\"creators\":[\"anonymous\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.federalreserve.gov/boarddocs/press/bcreg/2007/20070717/default.htm\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.federalreserve.gov/boarddocs/press/bcreg/2007/20070717/default.htm\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.federalreserve.gov/boarddocs/press/bcreg/2007/20070717/default.htm\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.federalreserve.gov/boarddocs/press/bcreg/2007/20070717/default.htm\",\"id\":\"oai:RePEc:fip:fedgws:y:2007:i:jun:x:3\"},\"trust\":0.9143867}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fip:fedgws:13"},"target_publication_author_list":{"type":"LIST_STRING","value":["anonymous"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fip:fedgws:y:2007:i:jun:x:3"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mortgage loans"]},"trust":{"type":"FLOAT","value":0.9143867},"target_publication_title":{"type":"STRING","value":"Agencies announce pilot project to improve supervision of subprime mortgage lenders"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fip:fedgws:y:2007:i:jun:x:3\",\"titles\":[\"Agencies announce pilot project to improve supervision of subprime mortgage lenders\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Mortgage loans\"],\"creators\":[\"anonymous\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.federalreserve.gov/boarddocs/press/bcreg/2007/20070717/default.htm\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.federalreserve.gov/boarddocs/press/bcreg/2007/20070717/default.htm\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.federalreserve.gov/boarddocs/press/bcreg/2007/20070717/default.htm\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.federalreserve.gov/boarddocs/press/bcreg/2007/20070717/default.htm\",\"id\":\"oai:RePEc:fip:fedgws:13\"},\"trust\":0.09464687}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fip:fedgws:y:2007:i:jun:x:3"},"target_publication_author_list":{"type":"LIST_STRING","value":["anonymous"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fip:fedgws:13"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mortgage loans"]},"trust":{"type":"FLOAT","value":0.09464687},"target_publication_title":{"type":"STRING","value":"Agencies announce pilot project to improve supervision of subprime mortgage lenders"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:pseose:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches,comportement collusif: approches écoomique et juridique\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00989261\"},\"trust\":0.32847375}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:pseose:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches,comportement collusif: approches écoomique et juridique"]},"trust":{"type":"FLOAT","value":0.32847375},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:pseose:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches,comportement collusif: approches écoomique et juridique\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00989261\"},\"trust\":0.32847375}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:pseose:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches,comportement collusif: approches écoomique et juridique"]},"trust":{"type":"FLOAT","value":0.32847375},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:pseose:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches,comportement collusif: approches écoomique et juridique\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00989261\"},\"trust\":0.8221254}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:pseose:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches,comportement collusif: approches écoomique et juridique"]},"trust":{"type":"FLOAT","value":0.8221254},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:pseose:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches,comportement collusif: approches écoomique et juridique\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"id\":\"oai:RePEc:hal:journl:halshs-00989261\"},\"trust\":0.084943354}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:pseose:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:journl:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches,comportement collusif: approches écoomique et juridique"]},"trust":{"type":"FLOAT","value":0.084943354},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:pseose:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches,comportement collusif: approches écoomique et juridique\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:HAL:halshs-00989261v1\"},\"trust\":0.30414748}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:pseose:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00989261v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches,comportement collusif: approches écoomique et juridique"]},"trust":{"type":"FLOAT","value":0.30414748},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:pseose:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches,comportement collusif: approches écoomique et juridique\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:HAL:halshs-00989261v1\"},\"trust\":0.30414748}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:pseose:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00989261v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches,comportement collusif: approches écoomique et juridique"]},"trust":{"type":"FLOAT","value":0.30414748},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:pseose:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches,comportement collusif: approches écoomique et juridique\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:HAL:halshs-00989261v1\"},\"trust\":0.97333604}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:pseose:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00989261v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches,comportement collusif: approches écoomique et juridique"]},"trust":{"type":"FLOAT","value":0.97333604},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:pseose:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches,comportement collusif: approches écoomique et juridique\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"id\":\"oai:RePEc:hal:cesptp:halshs-00989261\"},\"trust\":0.4206547}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:pseose:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:cesptp:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches,comportement collusif: approches écoomique et juridique"]},"trust":{"type":"FLOAT","value":0.4206547},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"eng\",\"subjects\":[\"[SHS:ECO] Humanities and Social Sciences/Economy and finances\",\"[SHS:ECO] Sciences de l\\u0027Homme et Société/Economie et finances\",\"collusive behavior: economic and legal approaches\"],\"creators\":[\"Encaoua, David\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"id\":\"oai:RePEc:hal:pseose:halshs-00989261\"},\"trust\":0.09815872}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["Encaoua, David"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:pseose:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:ECO] Humanities and Social Sciences/Economy and finances","[SHS:ECO] Sciences de l\u0027Homme et Société/Economie et finances","collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.09815872},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"eng\",\"subjects\":[\"[SHS:ECO] Humanities and Social Sciences/Economy and finances\",\"[SHS:ECO] Sciences de l\\u0027Homme et Société/Economie et finances\",\"collusive behavior: economic and legal approaches\"],\"creators\":[\"Encaoua, David\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"id\":\"oai:RePEc:hal:journl:halshs-00989261\"},\"trust\":0.74532115}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["Encaoua, David"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:journl:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:ECO] Humanities and Social Sciences/Economy and finances","[SHS:ECO] Sciences de l\u0027Homme et Société/Economie et finances","collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.74532115},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"eng\",\"subjects\":[\"[SHS:ECO] Humanities and Social Sciences/Economy and finances\",\"[SHS:ECO] Sciences de l\\u0027Homme et Société/Economie et finances\",\"collusive behavior: economic and legal approaches\"],\"creators\":[\"Encaoua, David\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:HAL:halshs-00989261v1\"},\"trust\":0.6953582}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["Encaoua, David"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00989261v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:ECO] Humanities and Social Sciences/Economy and finances","[SHS:ECO] Sciences de l\u0027Homme et Société/Economie et finances","collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.6953582},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"eng\",\"subjects\":[\"[SHS:ECO] Humanities and Social Sciences/Economy and finances\",\"[SHS:ECO] Sciences de l\\u0027Homme et Société/Economie et finances\",\"collusive behavior: economic and legal approaches\"],\"creators\":[\"Encaoua, David\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"id\":\"oai:RePEc:hal:cesptp:halshs-00989261\"},\"trust\":0.08593577}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["Encaoua, David"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:cesptp:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:ECO] Humanities and Social Sciences/Economy and finances","[SHS:ECO] Sciences de l\u0027Homme et Société/Economie et finances","collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.08593577},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"id\":\"oai:RePEc:hal:pseose:halshs-00989261\"},\"trust\":0.18551558}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:pseose:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.18551558},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00989261\"},\"trust\":0.15543765}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.15543765},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00989261\"},\"trust\":0.15543765}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.15543765},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00989261\"},\"trust\":0.45271373}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.45271373},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:HAL:halshs-00989261v1\"},\"trust\":0.51503605}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00989261v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.51503605},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:HAL:halshs-00989261v1\"},\"trust\":0.51503605}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00989261v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.51503605},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:HAL:halshs-00989261v1\"},\"trust\":0.74360746}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00989261v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.74360746},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"id\":\"oai:RePEc:hal:cesptp:halshs-00989261\"},\"trust\":0.43253428}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:cesptp:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.43253428},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00989261v1\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\",\": Book review\"],\"abstracts\":[\"International audience\",\"\"],\"language\":\"eng\",\"subjects\":[\"comportement collusif: approches écoomique et juridique\",\"JEL : [L:L4]\",\"[SHS.ECO] Humanities and Social Sciences/Economies and finances\"],\"creators\":[\"Encaoua, David\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"Springer Verlag (Germany)\",\"embargoenddate\":\"\",\"contributor\":[\"Centre d\\u0027économie de la Sorbonne (CES) ; Université Paris I - Panthéon-Sorbonne - CNRS\",\"Ecole d\\u0027Économie de Paris - Paris School of Economics (EEP-PSE) ; Ecole d\\u0027Économie de Paris\",\"\\\" Ce travail a bénéficié d\\u0027une aide de l\\u0027Etat gérée par l\\u0027Agence Nationale de la Recherche au titre du programme \\\" Investissements d\\u0027avenir \\\" portant la référence ANR-10-LABX-93-01\\\". \\\"This work was supported by the French National Research Agency, through the program Investissements d\\u0027Avenir, ANR-10--LABX-93-01\\\"\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"id\":\"oai:RePEc:hal:pseose:halshs-00989261\"},\"trust\":0.8860759}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00989261v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Encaoua, David"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:pseose:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["comportement collusif: approches écoomique et juridique","JEL : [L:L4]","[SHS.ECO] Humanities and Social Sciences/Economies and finances"]},"trust":{"type":"FLOAT","value":0.8860759},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00989261v1\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\",\": Book review\"],\"abstracts\":[\"International audience\",\"\"],\"language\":\"eng\",\"subjects\":[\"comportement collusif: approches écoomique et juridique\",\"JEL : [L:L4]\",\"[SHS.ECO] Humanities and Social Sciences/Economies and finances\"],\"creators\":[\"Encaoua, David\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"Springer Verlag (Germany)\",\"embargoenddate\":\"\",\"contributor\":[\"Centre d\\u0027économie de la Sorbonne (CES) ; Université Paris I - Panthéon-Sorbonne - CNRS\",\"Ecole d\\u0027Économie de Paris - Paris School of Economics (EEP-PSE) ; Ecole d\\u0027Économie de Paris\",\"\\\" Ce travail a bénéficié d\\u0027une aide de l\\u0027Etat gérée par l\\u0027Agence Nationale de la Recherche au titre du programme \\\" Investissements d\\u0027avenir \\\" portant la référence ANR-10-LABX-93-01\\\". \\\"This work was supported by the French National Research Agency, through the program Investissements d\\u0027Avenir, ANR-10--LABX-93-01\\\"\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00989261\"},\"trust\":0.57625645}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00989261v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Encaoua, David"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["comportement collusif: approches écoomique et juridique","JEL : [L:L4]","[SHS.ECO] Humanities and Social Sciences/Economies and finances"]},"trust":{"type":"FLOAT","value":0.57625645},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00989261v1\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\",\": Book review\"],\"abstracts\":[\"International audience\",\"\"],\"language\":\"eng\",\"subjects\":[\"comportement collusif: approches écoomique et juridique\",\"JEL : [L:L4]\",\"[SHS.ECO] Humanities and Social Sciences/Economies and finances\"],\"creators\":[\"Encaoua, David\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"Springer Verlag (Germany)\",\"embargoenddate\":\"\",\"contributor\":[\"Centre d\\u0027économie de la Sorbonne (CES) ; Université Paris I - Panthéon-Sorbonne - CNRS\",\"Ecole d\\u0027Économie de Paris - Paris School of Economics (EEP-PSE) ; Ecole d\\u0027Économie de Paris\",\"\\\" Ce travail a bénéficié d\\u0027une aide de l\\u0027Etat gérée par l\\u0027Agence Nationale de la Recherche au titre du programme \\\" Investissements d\\u0027avenir \\\" portant la référence ANR-10-LABX-93-01\\\". \\\"This work was supported by the French National Research Agency, through the program Investissements d\\u0027Avenir, ANR-10--LABX-93-01\\\"\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"id\":\"oai:RePEc:hal:journl:halshs-00989261\"},\"trust\":0.31425065}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00989261v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Encaoua, David"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:journl:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["comportement collusif: approches écoomique et juridique","JEL : [L:L4]","[SHS.ECO] Humanities and Social Sciences/Economies and finances"]},"trust":{"type":"FLOAT","value":0.31425065},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00989261v1\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\",\": Book review\"],\"abstracts\":[\"International audience\",\"\"],\"language\":\"eng\",\"subjects\":[\"comportement collusif: approches écoomique et juridique\",\"JEL : [L:L4]\",\"[SHS.ECO] Humanities and Social Sciences/Economies and finances\"],\"creators\":[\"Encaoua, David\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"Springer Verlag (Germany)\",\"embargoenddate\":\"\",\"contributor\":[\"Centre d\\u0027économie de la Sorbonne (CES) ; Université Paris I - Panthéon-Sorbonne - CNRS\",\"Ecole d\\u0027Économie de Paris - Paris School of Economics (EEP-PSE) ; Ecole d\\u0027Économie de Paris\",\"\\\" Ce travail a bénéficié d\\u0027une aide de l\\u0027Etat gérée par l\\u0027Agence Nationale de la Recherche au titre du programme \\\" Investissements d\\u0027avenir \\\" portant la référence ANR-10-LABX-93-01\\\". \\\"This work was supported by the French National Research Agency, through the program Investissements d\\u0027Avenir, ANR-10--LABX-93-01\\\"\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"id\":\"oai:RePEc:hal:cesptp:halshs-00989261\"},\"trust\":0.38499266}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00989261v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Encaoua, David"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:cesptp:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["comportement collusif: approches écoomique et juridique","JEL : [L:L4]","[SHS.ECO] Humanities and Social Sciences/Economies and finances"]},"trust":{"type":"FLOAT","value":0.38499266},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:cesptp:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261/document\",\"id\":\"oai:RePEc:hal:pseose:halshs-00989261\"},\"trust\":0.3489933}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:cesptp:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:pseose:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.3489933},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:cesptp:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00989261\"},\"trust\":0.6421827}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:cesptp:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.6421827},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:cesptp:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00989261\"},\"trust\":0.6421827}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:cesptp:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.6421827},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:cesptp:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00989261\"},\"trust\":0.61155736}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:cesptp:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.61155736},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:cesptp:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"id\":\"oai:RePEc:hal:journl:halshs-00989261\"},\"trust\":0.53069055}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:cesptp:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:journl:halshs-00989261"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.53069055},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:cesptp:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:HAL:halshs-00989261v1\"},\"trust\":0.29547304}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:cesptp:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00989261v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.29547304},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:cesptp:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s00712-014-0402-8\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:HAL:halshs-00989261v1\"},\"trust\":0.29547304}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:cesptp:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00989261v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.29547304},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:cesptp:halshs-00989261\",\"titles\":[\"Kaplow, Louis: Competition Policy and Price Fixing\"],\"abstracts\":[\"Book\\u0027s Review:Louis Kaplow, Competition Policy and Price Fixing, Princeton University Press, Princeton and Oxford, 2013\"],\"language\":\"und\",\"subjects\":[\"collusive behavior: economic and legal approaches\"],\"creators\":[\"David Encaoua\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/98/92/61/PDF/Book_s_review.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00989261\",\"id\":\"oai:HAL:halshs-00989261v1\"},\"trust\":0.41069096}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:cesptp:halshs-00989261"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Encaoua"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00989261v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["collusive behavior: economic and legal approaches"]},"trust":{"type":"FLOAT","value":0.41069096},"target_publication_title":{"type":"STRING","value":"Kaplow, Louis: Competition Policy and Price Fixing"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2447039\",\"titles\":[\"A decade of partnering to stop HIV in West Africa: GAIA VF prevention, education, access to care and vaccine trial site development in Bamako, Mali\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Poster Presentation\"],\"creators\":[\"Groot, A.\",\"Tounkara, K.\",\"Aboubacar, B.\",\"Diallo, F. Siby\",\"Bougoudogo, F.\",\"Koita, O.\",\"Koita, O.\",\"Dao, S.\",\"Diallo, S.\",\"Traoré, Y.\"],\"publicationdate\":\"2012-09-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Retrovirology\",\"issn\":\"\",\"eissn\":\"1742-4690\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1742-4690-9-S2-P112\",\"type\":\"doi\"},{\"value\":\"PMC3441768\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3441768\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://vaccineenterprise.org/conference/2012/\",\"license\":\"OPEN\",\"hostedby\":\"Retrovirology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://vaccineenterprise.org/conference/2012/\",\"license\":\"OPEN\",\"hostedby\":\"Retrovirology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://vaccineenterprise.org/conference/2012/\",\"id\":\"oai:doaj.org/article:9a505a1fe9f5416c809206e320776c30\"},\"trust\":0.60423106}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2447039"},"target_publication_author_list":{"type":"LIST_STRING","value":["Groot, A.","Tounkara, K.","Aboubacar, B.","Diallo, F. Siby","Bougoudogo, F.","Koita, O.","Koita, O.","Dao, S.","Diallo, S.","Traoré, Y."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:9a505a1fe9f5416c809206e320776c30"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Poster Presentation"]},"trust":{"type":"FLOAT","value":0.60423106},"target_publication_title":{"type":"STRING","value":"A decade of partnering to stop HIV in West Africa: GAIA VF prevention, education, access to care and vaccine trial site development in Bamako, Mali"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pri:indrel:34\",\"titles\":[\"Estimating Labor Supply Functions\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Orley Ashenfelter\",\"James Heckman\"],\"publicationdate\":\"1972-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://arks.princeton.edu/ark:/88435/dsp01jd472w46n\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arks.princeton.edu/ark:/88435/dsp01jd472w46n\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://arks.princeton.edu/ark:/88435/dsp01jd472w46n\",\"id\":\"oai:RePEc:pri:indrel:dsp01jd472w46n\"},\"trust\":0.5952907}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pri:indrel:34"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orley Ashenfelter","James Heckman"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pri:indrel:dsp01jd472w46n"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.5952907},"target_publication_title":{"type":"STRING","value":"Estimating Labor Supply Functions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1972-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pri:indrel:34\",\"titles\":[\"Estimating Labor Supply Functions\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Orley Ashenfelter\",\"James Heckman\"],\"publicationdate\":\"1972-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"id\":\"oai:RePEc:fth:prinin:34\"},\"trust\":0.16035986}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pri:indrel:34"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orley Ashenfelter","James Heckman"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fth:prinin:34"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.16035986},"target_publication_title":{"type":"STRING","value":"Estimating Labor Supply Functions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1972-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pri:indrel:34\",\"titles\":[\"Estimating Labor Supply Functions\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Orley Ashenfelter\",\"James Heckman\"],\"publicationdate\":\"1972-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"id\":\"oai:RePEc:pri:indrel:409\"},\"trust\":0.88576525}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pri:indrel:34"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orley Ashenfelter","James Heckman"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pri:indrel:409"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.88576525},"target_publication_title":{"type":"STRING","value":"Estimating Labor Supply Functions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1972-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pri:indrel:dsp01jd472w46n\",\"titles\":[\"Estimating Labor Supply Functions\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Orley Ashenfelter\",\"James Heckman\"],\"publicationdate\":\"1972-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://arks.princeton.edu/ark:/88435/dsp01jd472w46n\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"id\":\"oai:RePEc:pri:indrel:34\"},\"trust\":0.6628094}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pri:indrel:dsp01jd472w46n"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orley Ashenfelter","James Heckman"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pri:indrel:34"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.6628094},"target_publication_title":{"type":"STRING","value":"Estimating Labor Supply Functions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1972-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pri:indrel:dsp01jd472w46n\",\"titles\":[\"Estimating Labor Supply Functions\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Orley Ashenfelter\",\"James Heckman\"],\"publicationdate\":\"1972-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://arks.princeton.edu/ark:/88435/dsp01jd472w46n\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"id\":\"oai:RePEc:fth:prinin:34\"},\"trust\":0.57575995}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pri:indrel:dsp01jd472w46n"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orley Ashenfelter","James Heckman"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fth:prinin:34"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.57575995},"target_publication_title":{"type":"STRING","value":"Estimating Labor Supply Functions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1972-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pri:indrel:dsp01jd472w46n\",\"titles\":[\"Estimating Labor Supply Functions\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Orley Ashenfelter\",\"James Heckman\"],\"publicationdate\":\"1972-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://arks.princeton.edu/ark:/88435/dsp01jd472w46n\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"id\":\"oai:RePEc:pri:indrel:409\"},\"trust\":0.45486724}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pri:indrel:dsp01jd472w46n"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orley Ashenfelter","James Heckman"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pri:indrel:409"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.45486724},"target_publication_title":{"type":"STRING","value":"Estimating Labor Supply Functions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1972-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fth:prinin:34\",\"titles\":[\"Estimating Labor Supply Functions.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Orley Ashenfelter\",\"James Heckman\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"id\":\"oai:RePEc:pri:indrel:34\"},\"trust\":0.47988528}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fth:prinin:34"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orley Ashenfelter","James Heckman"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pri:indrel:34"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.47988528},"target_publication_title":{"type":"STRING","value":"Estimating Labor Supply Functions."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fth:prinin:34\",\"titles\":[\"Estimating Labor Supply Functions.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Orley Ashenfelter\",\"James Heckman\"],\"publicationdate\":\"1972-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"1972-02-01\"},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"id\":\"oai:RePEc:pri:indrel:34\"},\"trust\":0.49641597}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fth:prinin:34"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orley Ashenfelter","James Heckman"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pri:indrel:34"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.49641597},"target_publication_title":{"type":"STRING","value":"Estimating Labor Supply Functions."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1972-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fth:prinin:34\",\"titles\":[\"Estimating Labor Supply Functions.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Orley Ashenfelter\",\"James Heckman\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://arks.princeton.edu/ark:/88435/dsp01jd472w46n\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arks.princeton.edu/ark:/88435/dsp01jd472w46n\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://arks.princeton.edu/ark:/88435/dsp01jd472w46n\",\"id\":\"oai:RePEc:pri:indrel:dsp01jd472w46n\"},\"trust\":0.6095456}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fth:prinin:34"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orley Ashenfelter","James Heckman"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pri:indrel:dsp01jd472w46n"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.6095456},"target_publication_title":{"type":"STRING","value":"Estimating Labor Supply Functions."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fth:prinin:34\",\"titles\":[\"Estimating Labor Supply Functions.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Orley Ashenfelter\",\"James Heckman\"],\"publicationdate\":\"1972-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"1972-02-01\"},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://arks.princeton.edu/ark:/88435/dsp01jd472w46n\",\"id\":\"oai:RePEc:pri:indrel:dsp01jd472w46n\"},\"trust\":0.3483222}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fth:prinin:34"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orley Ashenfelter","James Heckman"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pri:indrel:dsp01jd472w46n"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.3483222},"target_publication_title":{"type":"STRING","value":"Estimating Labor Supply Functions."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1972-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fth:prinin:34\",\"titles\":[\"Estimating Labor Supply Functions.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Orley Ashenfelter\",\"James Heckman\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"id\":\"oai:RePEc:pri:indrel:409\"},\"trust\":0.37771106}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fth:prinin:34"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orley Ashenfelter","James Heckman"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pri:indrel:409"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.37771106},"target_publication_title":{"type":"STRING","value":"Estimating Labor Supply Functions."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fth:prinin:34\",\"titles\":[\"Estimating Labor Supply Functions.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Orley Ashenfelter\",\"James Heckman\"],\"publicationdate\":\"1972-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"1972-02-01\"},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"id\":\"oai:RePEc:pri:indrel:409\"},\"trust\":0.17924339}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fth:prinin:34"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orley Ashenfelter","James Heckman"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pri:indrel:409"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.17924339},"target_publication_title":{"type":"STRING","value":"Estimating Labor Supply Functions."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1972-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pri:indrel:409\",\"titles\":[\"Estimating Labor Supply Functions\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Orley Ashenfelter\",\"James Heckman\"],\"publicationdate\":\"1972-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.irs.princeton.edu/pubs/pdfs/34.pdf\",\"id\":\"oai:RePEc:pri:indrel:34\"},\"trust\":0.1642769}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pri:indrel:409"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orley Ashenfelter","James Heckman"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pri:indrel:34"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.1642769},"target_publication_title":{"type":"STRING","value":"Estimating Labor Supply Functions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1972-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} diff --git a/dhp-broker-application/.svn/pristine/19/19ec579b166e6d1d8399c55de16e504c185da377.svn-base b/dhp-broker-application/.svn/pristine/19/19ec579b166e6d1d8399c55de16e504c185da377.svn-base deleted file mode 100644 index 2e562ef8..00000000 --- a/dhp-broker-application/.svn/pristine/19/19ec579b166e6d1d8399c55de16e504c185da377.svn-base +++ /dev/null @@ -1,28 +0,0 @@ -
- No subscriptions -
- - -
-
- - - - - - - - - - - - - - - - -
- Datasource: {{ds}} -
Topic# notifications
{{s.topic}}{{s.count}}
-
-
\ No newline at end of file diff --git a/dhp-broker-application/.svn/pristine/1b/1b641db6088d7ac2c2887a668f968b3be4802217.svn-base b/dhp-broker-application/.svn/pristine/1b/1b641db6088d7ac2c2887a668f968b3be4802217.svn-base deleted file mode 100644 index dabeeac1..00000000 --- a/dhp-broker-application/.svn/pristine/1b/1b641db6088d7ac2c2887a668f968b3be4802217.svn-base +++ /dev/null @@ -1,5 +0,0 @@ -package eu.dnetlib.lbs.subscriptions; - -public enum NotificationFrequency { - never, realtime, daily, weekly, monthly -} diff --git a/dhp-broker-application/.svn/pristine/1c/1c77718ef8554df42439f42b084c84f11fefc39f.svn-base b/dhp-broker-application/.svn/pristine/1c/1c77718ef8554df42439f42b084c84f11fefc39f.svn-base deleted file mode 100644 index 258ab06a..00000000 --- a/dhp-broker-application/.svn/pristine/1c/1c77718ef8554df42439f42b084c84f11fefc39f.svn-base +++ /dev/null @@ -1,1000 +0,0 @@ - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3205525\",\"titles\":[\"Auditory learning through active engagement with sound: biological impact of community music lessons in at-risk children\"],\"abstracts\":[\"The young nervous system is primed for sensory learning, facilitating the acquisition of language and communication skills. Social and linguistic impoverishment can limit these learning opportunities, eventually leading to language-related challenges such as poor reading. Music training offers a promising auditory learning strategy by directing attention to meaningful acoustic elements of the soundscape. In light of evidence that music training improves auditory skills and their neural substrates, there are increasing efforts to enact community-based programs to provide music instruction to at-risk children. Harmony Project is a community foundation that has provided free music instruction to over 1000 children from Los Angeles gang-reduction zones over the past decade. We conducted an independent evaluation of biological effects of participating in Harmony Project by following a cohort of children for 1 year. Here we focus on a comparison between students who actively engaged with sound through instrumental music training vs. students who took music appreciation classes. All children began with an introductory music appreciation class, but midway through the year half of the children transitioned to the instrumental training. After the year of training, the children who actively engaged with sound through instrumental music training had faster and more robust neural processing of speech than the children who stayed in the music appreciation class, observed in neural responses to a speech sound /d/. The neurophysiological measures found to be enhanced in the instrumentally-trained children have been previously linked to reading ability, suggesting a gain in neural processes important for literacy stemming from active auditory learning. Despite intrinsic constraints on our study imposed by a community setting, these findings speak to the potential of active engagement with sound (i.e., music-making) to engender experience-dependent neuroplasticity and may inform the development of strategies for auditory learning.\"],\"language\":\"eng\",\"subjects\":[\"Psychology\",\"Original Research Article\",\"music training\",\"neural plasticity\",\"at-risk development\",\"electrophysiology\",\"reading\",\"speech\",\"community interventions\",\"auditory learning\"],\"creators\":[\"Kraus, Nina\",\"Slater, Jessica\",\"Thompson, Elaine C.\",\"Hornickel, Jane\",\"Strait, Dana L.\",\"Nicol, Trent\",\"White-Schwoch, Travis\"],\"publicationdate\":\"2014-11-01\",\"publisher\":\"Frontiers Media S.A.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Frontiers in Neuroscience\",\"issn\":\"1662-4548\",\"eissn\":\"1662-453X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3389/fnins.2014.00351\",\"type\":\"doi\"},{\"value\":\"PMC4220673\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4220673\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.3389/fnins.2014.00351\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.3389/fnins.2014.00351\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Frontiers\",\"url\":\"http://dx.doi.org/10.3389/fnins.2014.00351\",\"id\":\"10.3389/fnins.2014.00351\"},\"trust\":0.0063862205}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3205525"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kraus, Nina","Slater, Jessica","Thompson, Elaine C.","Hornickel, Jane","Strait, Dana L.","Nicol, Trent","White-Schwoch, Travis"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.3389/fnins.2014.00351"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::3db634fc5446f389d0b826ea400a5da6"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Psychology","Original Research Article","music training","neural plasticity","at-risk development","electrophysiology","reading","speech","community interventions","auditory learning"]},"trust":{"type":"FLOAT","value":0.0063862205},"target_publication_title":{"type":"STRING","value":"Auditory learning through active engagement with sound: biological impact of community music lessons in at-risk children"},"provenance_datasource_name":{"type":"STRING","value":"Frontiers"},"target_dateofacceptance":{"type":"DATE","value":"2014-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00731607\",\"titles\":[\"Des exemples des possibilités offertes par le Dictionnaire du Moyen Français\"],\"abstracts\":[\"Le DMF dans sa version 2010 n\\u0027est pas seulement un dictionnaire dans lequel on cherche un mot pour trouver son sens. La communication faite lors du colloque anglo-normand a permis de montrer à des utilisateurs réguliers du DMF, des possibilités qu\\u0027ils n\\u0027utilisaient pas et qui pourraient leur rendre service dans leurs travaux. Cet article se veut être l\\u0027écho de la démonstration.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:LANGUE] Humanities and Social Sciences/Linguistics\",\"[SHS:LANGUE] Sciences de l\\u0027Homme et Société/Linguistique\"],\"creators\":[\"Souvay, Gilles\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00731607\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00731607\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00731607\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00731607\",\"id\":\"oai:HAL:hal-00731607v1\"},\"trust\":0.27620083}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00731607"},"target_publication_author_list":{"type":"LIST_STRING","value":["Souvay, Gilles"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00731607v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:LANGUE] Humanities and Social Sciences/Linguistics","[SHS:LANGUE] Sciences de l\u0027Homme et Société/Linguistique"]},"trust":{"type":"FLOAT","value":0.27620083},"target_publication_title":{"type":"STRING","value":"Des exemples des possibilités offertes par le Dictionnaire du Moyen Français"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00731607v1\",\"titles\":[\"Des exemples des possibilités offertes par le Dictionnaire du Moyen Français\"],\"abstracts\":[\"International audience\",\"Le DMF dans sa version 2010 n\\u0027est pas seulement un dictionnaire dans lequel on cherche un mot pour trouver son sens. La communication faite lors du colloque anglo-normand a permis de montrer à des utilisateurs réguliers du DMF, des possibilités qu\\u0027ils n\\u0027utilisaient pas et qui pourraient leur rendre service dans leurs travaux. Cet article se veut être l\\u0027écho de la démonstration.\"],\"language\":\"fra/fre\",\"subjects\":[\"lemmatisation\",\"Moyen Français\",\"dictionnaire\",\"glossaire\",\"[SHS.LANGUE] Humanities and Social Sciences/Linguistics\"],\"creators\":[\"Souvay, Gilles\"],\"publicationdate\":\"2011-07-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Linguistqiue historique française et romane ; Analyse et Traitement Informatique de la Langue Française (ATILF) ; Université de Lorraine - CNRS - Université de Lorraine - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00731607\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00731607\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00731607\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00731607\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00731607\"},\"trust\":0.88788086}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00731607v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Souvay, Gilles"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00731607"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["lemmatisation","Moyen Français","dictionnaire","glossaire","[SHS.LANGUE] Humanities and Social Sciences/Linguistics"]},"trust":{"type":"FLOAT","value":0.88788086},"target_publication_title":{"type":"STRING","value":"Des exemples des possibilités offertes par le Dictionnaire du Moyen Français"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00901602\",\"titles\":[\"A PRELIMINARY STUDY ON SELENIUM CONTENT OF FORAGES AND LOCAL BY-PRODUCTS IN THE TADLA AREA (MOROCCO) IN CONNECTION WITH OVINE NUTRITIONAL MYOPATHY\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:BBM:BM] Life Sciences/Biochemistry, Molecular Biology/Molecular biology\",\"[SDV:BBM:BM] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biologie moléculaire\",\"[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics\",\"[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale\",\"[SDV:BC] Life Sciences/Cellular Biology\",\"[SDV:BC] Sciences du Vivant/Biologie cellulaire\",\"[SDV:BC:IC] Life Sciences/Cellular Biology/Cell Behavior\",\"[SDV:BC:IC] Sciences du Vivant/Biologie cellulaire/Interactions cellulaires\",\"[SDV:MP] Life Sciences/Microbiology and Parasitology\",\"[SDV:MP] Sciences du Vivant/Microbiologie et Parasitologie\",\"[SDV:IMM] Life Sciences/Immunology\",\"[SDV:IMM] Sciences du Vivant/Immunologie\",\"[SDV:NEU] Life Sciences/Neurons and Cognition\",\"[SDV:NEU] Sciences du Vivant/Neurosciences\",\"[SDV:SPEE] Life Sciences/Santé publique et épidémiologie\",\"[SDV:SPEE] Sciences du Vivant/Santé publique et épidémiologie\",\"[SDV:BA] Life Sciences/Animal biology\",\"[SDV:BA] Sciences du Vivant/Biologie animale\"],\"creators\":[\"Mahin, L.\",\"Lamand, M.\",\"Coulibaly, H.\",\"Chadli, M.\"],\"publicationdate\":\"1985-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00901602\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00901602\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00901602\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00901602\",\"id\":\"oai:HAL:hal-00901602v1\"},\"trust\":0.32162017}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00901602"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mahin, L.","Lamand, M.","Coulibaly, H.","Chadli, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00901602v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BBM:BM] Life Sciences/Biochemistry, Molecular Biology/Molecular biology","[SDV:BBM:BM] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biologie moléculaire","[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics","[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale","[SDV:BC] Life Sciences/Cellular Biology","[SDV:BC] Sciences du Vivant/Biologie cellulaire","[SDV:BC:IC] Life Sciences/Cellular Biology/Cell Behavior","[SDV:BC:IC] Sciences du Vivant/Biologie cellulaire/Interactions cellulaires","[SDV:MP] Life Sciences/Microbiology and Parasitology","[SDV:MP] Sciences du Vivant/Microbiologie et Parasitologie","[SDV:IMM] Life Sciences/Immunology","[SDV:IMM] Sciences du Vivant/Immunologie","[SDV:NEU] Life Sciences/Neurons and Cognition","[SDV:NEU] Sciences du Vivant/Neurosciences","[SDV:SPEE] Life Sciences/Santé publique et épidémiologie","[SDV:SPEE] Sciences du Vivant/Santé publique et épidémiologie","[SDV:BA] Life Sciences/Animal biology","[SDV:BA] Sciences du Vivant/Biologie animale"]},"trust":{"type":"FLOAT","value":0.32162017},"target_publication_title":{"type":"STRING","value":"A PRELIMINARY STUDY ON SELENIUM CONTENT OF FORAGES AND LOCAL BY-PRODUCTS IN THE TADLA AREA (MOROCCO) IN CONNECTION WITH OVINE NUTRITIONAL MYOPATHY"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1985-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00901602\",\"titles\":[\"A PRELIMINARY STUDY ON SELENIUM CONTENT OF FORAGES AND LOCAL BY-PRODUCTS IN THE TADLA AREA (MOROCCO) IN CONNECTION WITH OVINE NUTRITIONAL MYOPATHY\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:BBM:BM] Life Sciences/Biochemistry, Molecular Biology/Molecular biology\",\"[SDV:BBM:BM] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biologie moléculaire\",\"[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics\",\"[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale\",\"[SDV:BC] Life Sciences/Cellular Biology\",\"[SDV:BC] Sciences du Vivant/Biologie cellulaire\",\"[SDV:BC:IC] Life Sciences/Cellular Biology/Cell Behavior\",\"[SDV:BC:IC] Sciences du Vivant/Biologie cellulaire/Interactions cellulaires\",\"[SDV:MP] Life Sciences/Microbiology and Parasitology\",\"[SDV:MP] Sciences du Vivant/Microbiologie et Parasitologie\",\"[SDV:IMM] Life Sciences/Immunology\",\"[SDV:IMM] Sciences du Vivant/Immunologie\",\"[SDV:NEU] Life Sciences/Neurons and Cognition\",\"[SDV:NEU] Sciences du Vivant/Neurosciences\",\"[SDV:SPEE] Life Sciences/Santé publique et épidémiologie\",\"[SDV:SPEE] Sciences du Vivant/Santé publique et épidémiologie\",\"[SDV:BA] Life Sciences/Animal biology\",\"[SDV:BA] Sciences du Vivant/Biologie animale\"],\"creators\":[\"Mahin, L.\",\"Lamand, M.\",\"Coulibaly, H.\",\"Chadli, M.\"],\"publicationdate\":\"1985-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00901602\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"International audience\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00901602\",\"id\":\"oai:HAL:hal-00901602v1\"},\"trust\":0.9231308}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00901602"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mahin, L.","Lamand, M.","Coulibaly, H.","Chadli, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00901602v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BBM:BM] Life Sciences/Biochemistry, Molecular Biology/Molecular biology","[SDV:BBM:BM] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biologie moléculaire","[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics","[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale","[SDV:BC] Life Sciences/Cellular Biology","[SDV:BC] Sciences du Vivant/Biologie cellulaire","[SDV:BC:IC] Life Sciences/Cellular Biology/Cell Behavior","[SDV:BC:IC] Sciences du Vivant/Biologie cellulaire/Interactions cellulaires","[SDV:MP] Life Sciences/Microbiology and Parasitology","[SDV:MP] Sciences du Vivant/Microbiologie et Parasitologie","[SDV:IMM] Life Sciences/Immunology","[SDV:IMM] Sciences du Vivant/Immunologie","[SDV:NEU] Life Sciences/Neurons and Cognition","[SDV:NEU] Sciences du Vivant/Neurosciences","[SDV:SPEE] Life Sciences/Santé publique et épidémiologie","[SDV:SPEE] Sciences du Vivant/Santé publique et épidémiologie","[SDV:BA] Life Sciences/Animal biology","[SDV:BA] Sciences du Vivant/Biologie animale"]},"trust":{"type":"FLOAT","value":0.9231308},"target_publication_title":{"type":"STRING","value":"A PRELIMINARY STUDY ON SELENIUM CONTENT OF FORAGES AND LOCAL BY-PRODUCTS IN THE TADLA AREA (MOROCCO) IN CONNECTION WITH OVINE NUTRITIONAL MYOPATHY"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1985-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00901602v1\",\"titles\":[\"A PRELIMINARY STUDY ON SELENIUM CONTENT OF FORAGES AND LOCAL BY-PRODUCTS IN THE TADLA AREA (MOROCCO) IN CONNECTION WITH OVINE NUTRITIONAL MYOPATHY\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.BBM.BM] Life Sciences/Biochemistry, Molecular Biology/Molecular biology\",\"[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics\",\"[SDV.BC] Life Sciences/Cellular Biology\",\"[SDV.BC.IC] Life Sciences/Cellular Biology/Cell Behavior\",\"[SDV.MP] Life Sciences/Microbiology and Parasitology\",\"[SDV.IMM] Life Sciences/Immunology\",\"[SDV.NEU] Life Sciences/Neurons and Cognition\",\"[SDV.SPEE] Life Sciences/Santé publique et épidémiologie\",\"[SDV.BA] Life Sciences/Animal biology\"],\"creators\":[\"Mahin, L.\",\"Lamand, M.\",\"Coulibaly, H.\",\"Chadli, M.\"],\"publicationdate\":\"1985-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00901602\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00901602\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00901602\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00901602\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00901602\"},\"trust\":0.17313212}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00901602v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mahin, L.","Lamand, M.","Coulibaly, H.","Chadli, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00901602"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.BBM.BM] Life Sciences/Biochemistry, Molecular Biology/Molecular biology","[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics","[SDV.BC] Life Sciences/Cellular Biology","[SDV.BC.IC] Life Sciences/Cellular Biology/Cell Behavior","[SDV.MP] Life Sciences/Microbiology and Parasitology","[SDV.IMM] Life Sciences/Immunology","[SDV.NEU] Life Sciences/Neurons and Cognition","[SDV.SPEE] Life Sciences/Santé publique et épidémiologie","[SDV.BA] Life Sciences/Animal biology"]},"trust":{"type":"FLOAT","value":0.17313212},"target_publication_title":{"type":"STRING","value":"A PRELIMINARY STUDY ON SELENIUM CONTENT OF FORAGES AND LOCAL BY-PRODUCTS IN THE TADLA AREA (MOROCCO) IN CONNECTION WITH OVINE NUTRITIONAL MYOPATHY"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1985-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ird.fr:fdi:16029\",\"titles\":[\"Les sols vertiques, les vertisols et les sols tirsifiés de la Tunisie du Nord\",\"Conférence sur les sols méditerranéens\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"VERTISOL\",\"CARACTERE MORPHOLOGIQUE\",\"CARACTERISTIQUE PHYSIQUE\",\"CARACTERISTIQUE CHIMIQUE\",\"ARGILE\",\"MINERALOGIE\",\"DIFFERENCIATION PEDOGENETIQUE\"],\"creators\":[\"Mori, Auguste\"],\"publicationdate\":\"1966-01-01\",\"publisher\":\"ORSTOM\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Horizon / Pleins textes\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.documentation.ird.fr/hor/fdi:16029\",\"license\":\"OPEN\",\"hostedby\":\"Horizon / Pleins textes\",\"instancetype\":\"Article\"},{\"url\":\"http://www.documentation.ird.fr/hor/fdi:13391\",\"license\":\"OPEN\",\"hostedby\":\"Horizon / Pleins textes\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.documentation.ird.fr/hor/fdi:13391\",\"license\":\"OPEN\",\"hostedby\":\"Horizon / Pleins textes\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Horizon / Pleins textes\",\"url\":\"http://www.documentation.ird.fr/hor/fdi:13391\",\"id\":\"oai:ird.fr:fdi:13391\"},\"trust\":0.12283826}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Horizon / Pleins textes"},"target_publication_id":{"type":"STRING","value":"oai:ird.fr:fdi:16029"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mori, Auguste"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ird.fr:fdi:13391"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::d2ed45a52bc0edfa11c2064e9edee8bf"},"target_publication_subject_list":{"type":"LIST_STRING","value":["VERTISOL","CARACTERE MORPHOLOGIQUE","CARACTERISTIQUE PHYSIQUE","CARACTERISTIQUE CHIMIQUE","ARGILE","MINERALOGIE","DIFFERENCIATION PEDOGENETIQUE"]},"trust":{"type":"FLOAT","value":0.12283826},"target_publication_title":{"type":"STRING","value":"Les sols vertiques, les vertisols et les sols tirsifiés de la Tunisie du Nord"},"provenance_datasource_name":{"type":"STRING","value":"Horizon / Pleins textes"},"target_dateofacceptance":{"type":"DATE","value":"1966-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d2ed45a52bc0edfa11c2064e9edee8bf"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ird.fr:fdi:13391\",\"titles\":[\"Les sols vertiques, les vertisols et les sols tirsifiés de la Tunisie du Nord\",\"Conférence sur les sols méditerranéens\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"VERTISOL\",\"CARACTERE MORPHOLOGIQUE\",\"CARACTERISTIQUE PHYSIQUE\",\"CARACTERISTIQUE CHIMIQUE\",\"ARGILE\",\"MINERALOGIE\",\"DIFFERENCIATION PEDOGENETIQUE\"],\"creators\":[\"Mori, Auguste\"],\"publicationdate\":\"1966-01-01\",\"publisher\":\"sn\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Horizon / Pleins textes\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.documentation.ird.fr/hor/fdi:13391\",\"license\":\"OPEN\",\"hostedby\":\"Horizon / Pleins textes\",\"instancetype\":\"Article\"},{\"url\":\"http://www.documentation.ird.fr/hor/fdi:16029\",\"license\":\"OPEN\",\"hostedby\":\"Horizon / Pleins textes\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.documentation.ird.fr/hor/fdi:16029\",\"license\":\"OPEN\",\"hostedby\":\"Horizon / Pleins textes\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Horizon / Pleins textes\",\"url\":\"http://www.documentation.ird.fr/hor/fdi:16029\",\"id\":\"oai:ird.fr:fdi:16029\"},\"trust\":0.3181404}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Horizon / Pleins textes"},"target_publication_id":{"type":"STRING","value":"oai:ird.fr:fdi:13391"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mori, Auguste"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ird.fr:fdi:16029"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::d2ed45a52bc0edfa11c2064e9edee8bf"},"target_publication_subject_list":{"type":"LIST_STRING","value":["VERTISOL","CARACTERE MORPHOLOGIQUE","CARACTERISTIQUE PHYSIQUE","CARACTERISTIQUE CHIMIQUE","ARGILE","MINERALOGIE","DIFFERENCIATION PEDOGENETIQUE"]},"trust":{"type":"FLOAT","value":0.3181404},"target_publication_title":{"type":"STRING","value":"Les sols vertiques, les vertisols et les sols tirsifiés de la Tunisie du Nord"},"provenance_datasource_name":{"type":"STRING","value":"Horizon / Pleins textes"},"target_dateofacceptance":{"type":"DATE","value":"1966-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d2ed45a52bc0edfa11c2064e9edee8bf"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00210732v1\",\"titles\":[\"Multiplicative renormalization of continuous polymer theories in semi-infinite geometry\"],\"abstracts\":[\"The conjecture of des Cloizeaux, which asserts that standard continuous polymer theories renormalize multiplicatively up to critical dimensions, is proved for models with semi-infinite geometry. These models correspond to physical situations where polymer solutions (in good or θ solvents) are in contact with a plane impenetrable wall which exerts forces on the polymers, and where these forces are strong enough to induce adsorption phenomena on the wall.\"],\"language\":\"eng\",\"subjects\":[\"polymer solutions\",\"renormalisation\",\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Benhamou, M.\",\"Mahoux, G.\"],\"publicationdate\":\"1988-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphys:01988004904057700\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00210732\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00210732\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00210732\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00210732\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00210732\"},\"trust\":0.44839227}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00210732v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benhamou, M.","Mahoux, G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00210732"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["polymer solutions","renormalisation","[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.44839227},"target_publication_title":{"type":"STRING","value":"Multiplicative renormalization of continuous polymer theories in semi-infinite geometry"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1988-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00210732\",\"titles\":[\"Multiplicative renormalization of continuous polymer theories in semi-infinite geometry\"],\"abstracts\":[\"The conjecture of des Cloizeaux, which asserts that standard continuous polymer theories renormalize multiplicatively up to critical dimensions, is proved for models with semi-infinite geometry. These models correspond to physical situations where polymer solutions (in good or θ solvents) are in contact with a plane impenetrable wall which exerts forces on the polymers, and where these forces are strong enough to induce adsorption phenomena on the wall.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\",\"polymer solutions\",\"renormalisation\"],\"creators\":[\"Benhamou, M.\",\"Mahoux, G.\"],\"publicationdate\":\"1988-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphys:01988004904057700\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00210732\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00210732\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00210732\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00210732\",\"id\":\"oai:HAL:jpa-00210732v1\"},\"trust\":0.9327062}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00210732"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benhamou, M.","Mahoux, G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00210732v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens","polymer solutions","renormalisation"]},"trust":{"type":"FLOAT","value":0.9327062},"target_publication_title":{"type":"STRING","value":"Multiplicative renormalization of continuous polymer theories in semi-infinite geometry"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1988-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00914982\",\"titles\":[\"A relative basis for mixed Tate motives over the projective line minus three points\"],\"abstracts\":[\"In a previous work, the author have built two families of distinguished algebraic cycles in Bloch-Kriz cubical cycle complex over the projective line minus three points. The goal of this paper is to show how these cycles induce well-defined elements in the $\\\\HH^0$ of the bar construction of the cycle complex and thus generated comodules over this $\\\\HH^0$, that is a mixed Tate motives as in Bloch and Kriz construction. In addition, it is shown that out of the two families only ones is needed at the bar construction level. As a consequence, the author obtains that one of the family gives a basis of the tannakian coLie coalgebra of mixed Tate motives over $\\\\ps$ relatively to the tannakian coLie coalgebra of mixed Tate motives over $\\\\Sp(\\\\Q)$. This in turns provides a new formula for Goncharov motivic coproduct, which really should be think as a coaction. Note : Preliminary version. Missing : -introduction; -typos, English and writing corrections.\"],\"language\":\"eng\",\"subjects\":[\"[MATH:MATH_AG] Mathematics/Algebraic Geometry\",\"[MATH:MATH_AG] Mathématiques/Géométrie algébrique\",\"[MATH:MATH_KT] Mathematics/K-Theory and Homology\",\"[MATH:MATH_KT] Mathématiques/K-théorie et homologie\",\"[MATH:MATH_CO] Mathematics/Combinatorics\",\"[MATH:MATH_CO] Mathématiques/Combinatoire\",\"algebraic cycles\",\"bar construction\",\"cobar construction\",\"coLie\",\"mixed Tate motives\",\"polylogarithms\"],\"creators\":[\"Soudères, Ismaël\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00914982\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"},{\"url\":\"http://arxiv.org/abs/1312.1849\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1312.1849\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1312.1849\",\"id\":\"oai:arXiv.org:1312.1849\"},\"trust\":0.52472335}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00914982"},"target_publication_author_list":{"type":"LIST_STRING","value":["Soudères, Ismaël"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1312.1849"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH:MATH_AG] Mathematics/Algebraic Geometry","[MATH:MATH_AG] Mathématiques/Géométrie algébrique","[MATH:MATH_KT] Mathematics/K-Theory and Homology","[MATH:MATH_KT] Mathématiques/K-théorie et homologie","[MATH:MATH_CO] Mathematics/Combinatorics","[MATH:MATH_CO] Mathématiques/Combinatoire","algebraic cycles","bar construction","cobar construction","coLie","mixed Tate motives","polylogarithms"]},"trust":{"type":"FLOAT","value":0.52472335},"target_publication_title":{"type":"STRING","value":"A relative basis for mixed Tate motives over the projective line minus three points"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00914982\",\"titles\":[\"A relative basis for mixed Tate motives over the projective line minus three points\"],\"abstracts\":[\"In a previous work, the author have built two families of distinguished algebraic cycles in Bloch-Kriz cubical cycle complex over the projective line minus three points. The goal of this paper is to show how these cycles induce well-defined elements in the $\\\\HH^0$ of the bar construction of the cycle complex and thus generated comodules over this $\\\\HH^0$, that is a mixed Tate motives as in Bloch and Kriz construction. In addition, it is shown that out of the two families only ones is needed at the bar construction level. As a consequence, the author obtains that one of the family gives a basis of the tannakian coLie coalgebra of mixed Tate motives over $\\\\ps$ relatively to the tannakian coLie coalgebra of mixed Tate motives over $\\\\Sp(\\\\Q)$. This in turns provides a new formula for Goncharov motivic coproduct, which really should be think as a coaction. Note : Preliminary version. Missing : -introduction; -typos, English and writing corrections.\"],\"language\":\"eng\",\"subjects\":[\"[MATH:MATH_AG] Mathematics/Algebraic Geometry\",\"[MATH:MATH_AG] Mathématiques/Géométrie algébrique\",\"[MATH:MATH_KT] Mathematics/K-Theory and Homology\",\"[MATH:MATH_KT] Mathématiques/K-théorie et homologie\",\"[MATH:MATH_CO] Mathematics/Combinatorics\",\"[MATH:MATH_CO] Mathématiques/Combinatoire\",\"algebraic cycles\",\"bar construction\",\"cobar construction\",\"coLie\",\"mixed Tate motives\",\"polylogarithms\"],\"creators\":[\"Soudères, Ismaël\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00914982\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00914982\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00914982\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00914982\",\"id\":\"oai:HAL:hal-00914982v1\"},\"trust\":0.3333184}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00914982"},"target_publication_author_list":{"type":"LIST_STRING","value":["Soudères, Ismaël"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00914982v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH:MATH_AG] Mathematics/Algebraic Geometry","[MATH:MATH_AG] Mathématiques/Géométrie algébrique","[MATH:MATH_KT] Mathematics/K-Theory and Homology","[MATH:MATH_KT] Mathématiques/K-théorie et homologie","[MATH:MATH_CO] Mathematics/Combinatorics","[MATH:MATH_CO] Mathématiques/Combinatoire","algebraic cycles","bar construction","cobar construction","coLie","mixed Tate motives","polylogarithms"]},"trust":{"type":"FLOAT","value":0.3333184},"target_publication_title":{"type":"STRING","value":"A relative basis for mixed Tate motives over the projective line minus three points"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1312.1849\",\"titles\":[\"A relative basis for mixed Tate motives over the projective line minus three points\"],\"abstracts\":[\" In a previous work, the author have built two families of distinguished\\nalgebraic cycles in Bloch-Kriz cubical cycle complex over the projective line\\nminus three points. The goal of this paper is to show how these cycles induce\\nwell-defined elements in the $\\\\HH^0$ of the bar construction of the cycle\\ncomplex and thus generated comodules over this $\\\\HH^0$, that is a mixed Tate\\nmotives as in Bloch and Kriz construction. In addition, it is shown that out of\\nthe two families only ones is needed at the bar construction level. As a\\nconsequence, the author obtains that one of the family gives a basis of the\\ntannakian coLie coalgebra of mixed Tate motives over $\\\\ps$ relatively to the\\ntannakian coLie coalgebra of mixed Tate motives over $\\\\Sp(\\\\Q)$. This in turns\\nprovides a new formula for Goncharov motivic coproduct, which really should be\\nthink as a coaction. Note : Preliminary version. Missing : -introduction;\\n-typos, English and writing corrections.\\n\",\"Comment: Note : Preliminary version. Missing : -introduction; -typos, English\\n and writing corrections\"],\"language\":\"eng\",\"subjects\":[\"Mathematics - Algebraic Geometry\",\"Mathematics - Combinatorics\",\"Mathematics - K-Theory and Homology\"],\"creators\":[\"Soudères, Ismaël\"],\"publicationdate\":\"2013-12-06\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/1312.1849\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00914982\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00914982\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00914982\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00914982\"},\"trust\":0.65941375}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1312.1849"},"target_publication_author_list":{"type":"LIST_STRING","value":["Soudères, Ismaël"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00914982"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematics - Algebraic Geometry","Mathematics - Combinatorics","Mathematics - K-Theory and Homology"]},"trust":{"type":"FLOAT","value":0.65941375},"target_publication_title":{"type":"STRING","value":"A relative basis for mixed Tate motives over the projective line minus three points"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-12-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1312.1849\",\"titles\":[\"A relative basis for mixed Tate motives over the projective line minus three points\"],\"abstracts\":[\" In a previous work, the author have built two families of distinguished\\nalgebraic cycles in Bloch-Kriz cubical cycle complex over the projective line\\nminus three points. The goal of this paper is to show how these cycles induce\\nwell-defined elements in the $\\\\HH^0$ of the bar construction of the cycle\\ncomplex and thus generated comodules over this $\\\\HH^0$, that is a mixed Tate\\nmotives as in Bloch and Kriz construction. In addition, it is shown that out of\\nthe two families only ones is needed at the bar construction level. As a\\nconsequence, the author obtains that one of the family gives a basis of the\\ntannakian coLie coalgebra of mixed Tate motives over $\\\\ps$ relatively to the\\ntannakian coLie coalgebra of mixed Tate motives over $\\\\Sp(\\\\Q)$. This in turns\\nprovides a new formula for Goncharov motivic coproduct, which really should be\\nthink as a coaction. Note : Preliminary version. Missing : -introduction;\\n-typos, English and writing corrections.\\n\",\"Comment: Note : Preliminary version. Missing : -introduction; -typos, English\\n and writing corrections\"],\"language\":\"eng\",\"subjects\":[\"Mathematics - Algebraic Geometry\",\"Mathematics - Combinatorics\",\"Mathematics - K-Theory and Homology\"],\"creators\":[\"Soudères, Ismaël\"],\"publicationdate\":\"2013-12-06\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/1312.1849\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00914982\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00914982\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00914982\",\"id\":\"oai:HAL:hal-00914982v1\"},\"trust\":0.13027209}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1312.1849"},"target_publication_author_list":{"type":"LIST_STRING","value":["Soudères, Ismaël"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00914982v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematics - Algebraic Geometry","Mathematics - Combinatorics","Mathematics - K-Theory and Homology"]},"trust":{"type":"FLOAT","value":0.13027209},"target_publication_title":{"type":"STRING","value":"A relative basis for mixed Tate motives over the projective line minus three points"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-12-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00914982v1\",\"titles\":[\"A relative basis for mixed Tate motives over the projective line minus three points\"],\"abstracts\":[\"Note : Preliminary version. Missing : -introduction; -typos, English and writing corrections.\",\"In a previous work, the author have built two families of distinguished algebraic cycles in Bloch-Kriz cubical cycle complex over the projective line minus three points. The goal of this paper is to show how these cycles induce well-defined elements in the $\\\\HH^0$ of the bar construction of the cycle complex and thus generated comodules over this $\\\\HH^0$, that is a mixed Tate motives as in Bloch and Kriz construction. In addition, it is shown that out of the two families only ones is needed at the bar construction level. As a consequence, the author obtains that one of the family gives a basis of the tannakian coLie coalgebra of mixed Tate motives over $\\\\ps$ relatively to the tannakian coLie coalgebra of mixed Tate motives over $\\\\Sp(\\\\Q)$. This in turns provides a new formula for Goncharov motivic coproduct, which really should be think as a coaction. Note : Preliminary version. Missing : -introduction; -typos, English and writing corrections.\"],\"language\":\"eng\",\"subjects\":[\"algebraic cycles\",\"bar construction\",\"cobar construction\",\"coLie\",\"mixed Tate motives\",\"polylogarithms\",\"AMS 14C25 (19E15 18D50 05C05)\",\"[MATH.MATH-AG] Mathematics/Algebraic Geometry\",\"[MATH.MATH-KT] Mathematics/K-Theory and Homology\",\"[MATH.MATH-CO] Mathematics/Combinatorics\"],\"creators\":[\"Soudères, Ismaël\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Max-Plank-Institut für Mathematik (MPI) ; Max-Planck-Institut\",\"Institut für Mathematik [Osnabrück] (FB6/Institut für Mathematik) ; Universitat Osnabruck\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00914982\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00914982\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00914982\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00914982\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00914982\"},\"trust\":0.6755857}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00914982v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Soudères, Ismaël"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00914982"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["algebraic cycles","bar construction","cobar construction","coLie","mixed Tate motives","polylogarithms","AMS 14C25 (19E15 18D50 05C05)","[MATH.MATH-AG] Mathematics/Algebraic Geometry","[MATH.MATH-KT] Mathematics/K-Theory and Homology","[MATH.MATH-CO] Mathematics/Combinatorics"]},"trust":{"type":"FLOAT","value":0.6755857},"target_publication_title":{"type":"STRING","value":"A relative basis for mixed Tate motives over the projective line minus three points"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00914982v1\",\"titles\":[\"A relative basis for mixed Tate motives over the projective line minus three points\"],\"abstracts\":[\"Note : Preliminary version. Missing : -introduction; -typos, English and writing corrections.\",\"In a previous work, the author have built two families of distinguished algebraic cycles in Bloch-Kriz cubical cycle complex over the projective line minus three points. The goal of this paper is to show how these cycles induce well-defined elements in the $\\\\HH^0$ of the bar construction of the cycle complex and thus generated comodules over this $\\\\HH^0$, that is a mixed Tate motives as in Bloch and Kriz construction. In addition, it is shown that out of the two families only ones is needed at the bar construction level. As a consequence, the author obtains that one of the family gives a basis of the tannakian coLie coalgebra of mixed Tate motives over $\\\\ps$ relatively to the tannakian coLie coalgebra of mixed Tate motives over $\\\\Sp(\\\\Q)$. This in turns provides a new formula for Goncharov motivic coproduct, which really should be think as a coaction. Note : Preliminary version. Missing : -introduction; -typos, English and writing corrections.\"],\"language\":\"eng\",\"subjects\":[\"algebraic cycles\",\"bar construction\",\"cobar construction\",\"coLie\",\"mixed Tate motives\",\"polylogarithms\",\"AMS 14C25 (19E15 18D50 05C05)\",\"[MATH.MATH-AG] Mathematics/Algebraic Geometry\",\"[MATH.MATH-KT] Mathematics/K-Theory and Homology\",\"[MATH.MATH-CO] Mathematics/Combinatorics\"],\"creators\":[\"Soudères, Ismaël\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Max-Plank-Institut für Mathematik (MPI) ; Max-Planck-Institut\",\"Institut für Mathematik [Osnabrück] (FB6/Institut für Mathematik) ; Universitat Osnabruck\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00914982\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/1312.1849\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1312.1849\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1312.1849\",\"id\":\"oai:arXiv.org:1312.1849\"},\"trust\":0.8142571}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00914982v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Soudères, Ismaël"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1312.1849"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["algebraic cycles","bar construction","cobar construction","coLie","mixed Tate motives","polylogarithms","AMS 14C25 (19E15 18D50 05C05)","[MATH.MATH-AG] Mathematics/Algebraic Geometry","[MATH.MATH-KT] Mathematics/K-Theory and Homology","[MATH.MATH-CO] Mathematics/Combinatorics"]},"trust":{"type":"FLOAT","value":0.8142571},"target_publication_title":{"type":"STRING","value":"A relative basis for mixed Tate motives over the projective line minus three points"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:a0241ae2-3f70-4063-99d6-f6c83e21095a\",\"titles\":[\"A report--chronic fatigue syndrome: guidelines for research.\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Humans\",\"Fatigue Syndrome, Chronic\",\"Methods\",\"Research\"],\"creators\":[\"Sharpe, Mc\",\"Archard, Lc\",\"Banatvala, Je\",\"Borysiewicz, Lk\",\"Clare, Aw\",\"David, A.\",\"Edwards, Rh\",\"Hawton, Ke\",\"Lambert, Hp\",\"Lane, Rj\"],\"publicationdate\":\"1991-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"PMC1293107\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:a0241ae2-3f70-4063-99d6-f6c83e21095a\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC1293107\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC1293107\",\"id\":\"oai:europepmc.org:1523182\"},\"trust\":0.041690707}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:a0241ae2-3f70-4063-99d6-f6c83e21095a"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sharpe, Mc","Archard, Lc","Banatvala, Je","Borysiewicz, Lk","Clare, Aw","David, A.","Edwards, Rh","Hawton, Ke","Lambert, Hp","Lane, Rj"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1523182"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Humans","Fatigue Syndrome, Chronic","Methods","Research"]},"trust":{"type":"FLOAT","value":0.041690707},"target_publication_title":{"type":"STRING","value":"A report--chronic fatigue syndrome: guidelines for research."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"1991-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:a0241ae2-3f70-4063-99d6-f6c83e21095a\",\"titles\":[\"A report--chronic fatigue syndrome: guidelines for research.\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Humans\",\"Fatigue Syndrome, Chronic\",\"Methods\",\"Research\"],\"creators\":[\"Sharpe, Mc\",\"Archard, Lc\",\"Banatvala, Je\",\"Borysiewicz, Lk\",\"Clare, Aw\",\"David, A.\",\"Edwards, Rh\",\"Hawton, Ke\",\"Lambert, Hp\",\"Lane, Rj\"],\"publicationdate\":\"1991-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"PMC1293107\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:a0241ae2-3f70-4063-99d6-f6c83e21095a\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC1293107\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC1293107\",\"id\":\"oai:europepmc.org:1523182\"},\"trust\":0.041690707}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:a0241ae2-3f70-4063-99d6-f6c83e21095a"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sharpe, Mc","Archard, Lc","Banatvala, Je","Borysiewicz, Lk","Clare, Aw","David, A.","Edwards, Rh","Hawton, Ke","Lambert, Hp","Lane, Rj"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1523182"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Humans","Fatigue Syndrome, Chronic","Methods","Research"]},"trust":{"type":"FLOAT","value":0.041690707},"target_publication_title":{"type":"STRING","value":"A report--chronic fatigue syndrome: guidelines for research."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"1991-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:DiVA.org:kth-156252\",\"titles\":[\"Skin Generator for trig.com : A user friendly, browser based, CSS editor\",\"Skingenerator förtrig.com : Ett webbläsarbaserat verktyg förstilmallshantering\"],\"abstracts\":[\"This report revolves around social network communities, accessible over the Internet using a browser. More specifically it discusses each member’s personal presentation page. Beyond just a name and fifty words of text, how much more freedom is viable for this page? How can page presentationbe easily adjusted via a user interface? Are there any technical limitations for implementation? This work offered Adocca Entertainment a theoretical backgroundand an overview of the technical landscape in 2006. It discusses possibilities and reflects on the intended audience and other requirements. It includes implementation of a prototype version of a browser based Cascading Style Sheets (CSS) Editor, called the “Skin Generator”. This inspired further development and allowed an informed decision to be made. Starting in the theoretical, by applying fields such as programming paradigms, data modelling and user interface. Viewing the broader field and then discussing the implementation specifics of a prototype version.User interface is arguably one of the barriers to allowing users more freedom when presenting themselves in online communities. The prototype proposes a solution leveraging the Model View Controller paradigm in tandem with the Direct Manipulation school and adaptation to intended audience. \",\"Den här rapporten berör sociala nätverk och communities, tillgänglig aöver Internet via en webbläsare. Mer specifikt behandlar den varje medlems personliga presentationssida. Bortom ett namn och femtio ord, hur många fler frihetsgrader är möjliga här? Hur kan användaren hantera inställningar? Finns det några tekniska hinder vid en implementation? Arbetet gav Adocca Entertainment en teoretisk bakgrund samt en översikt över det tekniska landskapet år 2006. Rapporten diskuterar möjligheter och reflekterar över målgrupp och kravbild för ett webbläsarbaserat verktyg som låter användaren programmera Cascading StyleSheets (CSS), kallat “Skingenerator”. En prototypversion implementeras som en del av processen, vilket inspirerade vidare utveckling och bidrog till att ett mer informerat beslut kunde tas i frågan. Avtramp görs från det teoretiska, med områden som programmerings paradigm,datamodellering och användargränssnitt som centrala.Berör den större bilden för att sedan diskutera implementations-detaljer gällande prototypen. Att förbättra gränssnittet, som i relaterade lösningar oftast består av textinmatning, är viktigt. Genom detta minskar den friktion medlemmen står inför när den vill presentera sig annorlunda i community- sammanhanget. Prototypen föreslår en lösning baserad iModel-View-Controller (MVC), ett paradigm som driver implementationen. Läran om Direct Manipulation och målgruppsanpassning skänker inspiration till användargränssnittet. \"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Kanerva, Martin\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"KTH, Skolan för datavetenskap och kommunikation (CSC)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Publikationer från KTH\"],\"pids\":[],\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:kth:diva-156252\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från KTH\",\"instancetype\":\"Bachelor thesis\"},{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:kth:diva-153948\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från KTH\",\"instancetype\":\"Bachelor thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:kth:diva-153948\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från KTH\",\"instancetype\":\"Bachelor thesis\"}]},\"provenance\":{\"repositoryName\":\"Publikationer från KTH\",\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:kth:diva-153948\",\"id\":\"oai:DiVA.org:kth-153948\"},\"trust\":0.33155507}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Publikationer från KTH"},"target_publication_id":{"type":"STRING","value":"oai:DiVA.org:kth-156252"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kanerva, Martin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:DiVA.org:kth-153948"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::a4f23670e1833f3fdb077ca70bbd5d66"},"trust":{"type":"FLOAT","value":0.33155507},"target_publication_title":{"type":"STRING","value":"Skin Generator for trig.com : A user friendly, browser based, CSS editor"},"provenance_datasource_name":{"type":"STRING","value":"Publikationer från KTH"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::a4f23670e1833f3fdb077ca70bbd5d66"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:DiVA.org:kth-153948\",\"titles\":[\"Skin Generator for trig.com : A user friendly, browser based, CSS editor\",\"Skingenerator förtrig.com : Ett webbläsarbaserat verktyg förstilmallshantering\"],\"abstracts\":[\"This report revolves around social network communities, accessible overthe Internet using a browser. More specifically it discusses each member’spersonal presentation page. Beyond just a name and fifty words oftext, how much more freedom is viable for this page? How can page presentationbe easily adjusted via a user interface? Are there any technicallimitations for implementation?This work offered Adocca Entertainment a theoretical backgroundand an overview of the technical landscape in 2006. It discusses possibilitiesand reflects on the intended audience and other requirements.It includes implementation of a prototype version of a browser basedCascading Style Sheets (CSS) Editor, called the “Skin Generator”. Thisinspired further development and allowed an informed decision to bemade.Starting in the theoretical, by applying fields such as programmingparadigms, data modelling and user interface. Viewing the broader fieldand then discussing the implementation specifics of a prototype version.User interface is arguably one of the barriers to allowing users more freedomwhen presenting themselves in online communities. The prototypeproposes a solution leveraging the Model View Controller paradigm intandem with the Direct Manipulation school and adaptation to intendedaudience. \",\"Skingenerator för trig.com - Ett webbläsarbaseratverktyg för stilmallshantering. Den här rapporten berör sociala nätverk och communities, tillgängliga över Internet via en webbläsare. Mer specifikt behandlar den varje medlems personliga presentationssida. Bortom ett namn och femtio ord, hur många fler frihetsgrader är möjliga här? Hur kan användaren hantera inställningar? Finns det några tekniska hinder vid en implementation?Arbetet gav Adocca Entertainment en teoretisk bakgrund samt en översikt över det tekniska landskapet år 2006. Rapporten diskuterar möjligheter och reflekterar över målgrupp och kravbild för ett webbläsarbaserat verktyg som låter användaren programmera Cascading StyleSheets (CSS), kallat “Skingenerator”. En prototypversion implementeras som en del av processen, vilket inspirerade vidareutveckling och bidrog till att ett mer informerat beslut kunde tas i frågan. Avtramp görs från det teoretiska, med områden som programmeringsparadigm,datamodellering och användargränssnitt som centrala.Berör den större bilden för att sedan diskutera implementationsdetaljer gällande prototypen. Att förbättra gränssnittet, som i relaterade lösningar oftast består av textinmatning, är viktigt. Genom detta minskar den friktion medlemmen står inför när den vill presentera sig annorlunda i communitysammanhanget. Prototypen föreslår en lösning baserad iModel-View-Controller (MVC), ett paradigm som driver implementationen. Läran om Direct Manipulation och målgruppsanpassning skänker inspiration till användargränssnittet. \"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Kanerva, Martin\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"KTH, Skolan för datavetenskap och kommunikation (CSC)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Publikationer från KTH\"],\"pids\":[],\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:kth:diva-153948\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från KTH\",\"instancetype\":\"Bachelor thesis\"},{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:kth:diva-156252\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från KTH\",\"instancetype\":\"Bachelor thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:kth:diva-156252\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från KTH\",\"instancetype\":\"Bachelor thesis\"}]},\"provenance\":{\"repositoryName\":\"Publikationer från KTH\",\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:kth:diva-156252\",\"id\":\"oai:DiVA.org:kth-156252\"},\"trust\":0.6772526}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Publikationer från KTH"},"target_publication_id":{"type":"STRING","value":"oai:DiVA.org:kth-153948"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kanerva, Martin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:DiVA.org:kth-156252"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::a4f23670e1833f3fdb077ca70bbd5d66"},"trust":{"type":"FLOAT","value":0.6772526},"target_publication_title":{"type":"STRING","value":"Skin Generator for trig.com : A user friendly, browser based, CSS editor"},"provenance_datasource_name":{"type":"STRING","value":"Publikationer från KTH"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::a4f23670e1833f3fdb077ca70bbd5d66"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:inria-00070588\",\"titles\":[\"Worst case end-to-end response times for non-preemptive FP/DP* scheduling\"],\"abstracts\":[\"In this paper, we are interested in real-time flows requiring quantitative and deterministic Quality of Service (QoS) guarantees. We focus more particularly on two QoS parameters: the worst case end-to-end response time and jitter. We consider a non-preemptive scheduling of flows, called FP/DP*, combining fixed priority and dynamic priority, where the dynamic priority of a flow packet is assigned on the first node visited by the packet in the network. Examples of such a scheduling are FP/FIFO* and FP/EDF*. With any flow is associated a fixed priority denoting the importance of the flow from the user point of view. The arbritation between packets having the same fixed priority is done according to their dynamic priority. A packet can be transmitted only if (i) there is no packet having a higher fixed priority and (ii) there is no packet having a higher dynamic priority. A classical approach used to compute the worst case end-to-end response time is the holistic one, but it leads to pessimistic upper bounds. We propose the trajectory approach to improve the accuracy of the results. Indeed, the trajectory approach only considers worst case scenarios experienced by a flow along its trajectory. It then eliminates scenarios that cannot occur in the network.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_OH] Computer Science/Other\",\"[INFO:INFO_OH] Informatique/Autre\",\"FIXED PRIORITY SCHEDULING / QUALITY OF SERVICE (QOS) / HOLISTIC APPROACH / WORST CASE END-TO-END RESPONSE TIME / TRAJECTORY APPROACH / DETERMINISTIC GUARANTEE\"],\"creators\":[\"Martin, Steven\",\"Minet, Pascale\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00070588\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"},{\"url\":\"https://hal.inria.fr/inria-00070588\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00070588\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/inria-00070588\",\"id\":\"oai:HAL:inria-00070588v1\"},\"trust\":0.56772405}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:inria-00070588"},"target_publication_author_list":{"type":"LIST_STRING","value":["Martin, Steven","Minet, Pascale"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:inria-00070588v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_OH] Computer Science/Other","[INFO:INFO_OH] Informatique/Autre","FIXED PRIORITY SCHEDULING / QUALITY OF SERVICE (QOS) / HOLISTIC APPROACH / WORST CASE END-TO-END RESPONSE TIME / TRAJECTORY APPROACH / DETERMINISTIC GUARANTEE"]},"trust":{"type":"FLOAT","value":0.56772405},"target_publication_title":{"type":"STRING","value":"Worst case end-to-end response times for non-preemptive FP/DP* scheduling"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:inria-00070588v1\",\"titles\":[\"Worst case end-to-end response times for non-preemptive FP/DP* scheduling\"],\"abstracts\":[\"In this paper, we are interested in real-time flows requiring quantitative and deterministic Quality of Service (QoS) guarantees. We focus more particularly on two QoS parameters: the worst case end-to-end response time and jitter. We consider a non-preemptive scheduling of flows, called FP/DP*, combining fixed priority and dynamic priority, where the dynamic priority of a flow packet is assigned on the first node visited by the packet in the network. Examples of such a scheduling are FP/FIFO* and FP/EDF*. With any flow is associated a fixed priority denoting the importance of the flow from the user point of view. The arbritation between packets having the same fixed priority is done according to their dynamic priority. A packet can be transmitted only if (i) there is no packet having a higher fixed priority and (ii) there is no packet having a higher dynamic priority. A classical approach used to compute the worst case end-to-end response time is the holistic one, but it leads to pessimistic upper bounds. We propose the trajectory approach to improve the accuracy of the results. Indeed, the trajectory approach only considers worst case scenarios experienced by a flow along its trajectory. It then eliminates scenarios that cannot occur in the network.\"],\"language\":\"eng\",\"subjects\":[\"FIXED PRIORITY SCHEDULING / QUALITY OF SERVICE (QOS) / HOLISTIC APPROACH / WORST CASE END-TO-END RESPONSE TIME / TRAJECTORY APPROACH / DETERMINISTIC GUARANTEE\",\"[INFO.INFO-OH] Computer Science/Other\"],\"creators\":[\"Martin, Steven\",\"Minet, Pascale\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"HIPERCOM (INRIA Rocquencourt) ; INRIA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00070588\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.inria.fr/inria-00070588\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00070588\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/inria-00070588\",\"id\":\"oai:hal.inria.fr:inria-00070588\"},\"trust\":0.041902304}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:inria-00070588v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Martin, Steven","Minet, Pascale"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:inria-00070588"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["FIXED PRIORITY SCHEDULING / QUALITY OF SERVICE (QOS) / HOLISTIC APPROACH / WORST CASE END-TO-END RESPONSE TIME / TRAJECTORY APPROACH / DETERMINISTIC GUARANTEE","[INFO.INFO-OH] Computer Science/Other"]},"trust":{"type":"FLOAT","value":0.041902304},"target_publication_title":{"type":"STRING","value":"Worst case end-to-end response times for non-preemptive FP/DP* scheduling"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2587229\",\"titles\":[\"In pursuit of certainty: can the systematic review process deliver?\"],\"abstracts\":[\"Background There has been increasing emphasis on evidence-based approaches to improve patient outcomes through rigorous, standardised and well-validated approaches. Clinical guidelines drive this process and are largely developed based on the findings of systematic reviews (SRs). This paper presents a discussion of the SR process in providing decisive information to shape and guide clinical practice, using a purpose-built review database: the Cochrane reviews; and focussing on a highly prevalent medical condition: hypertension. Methods We searched the Cochrane database and identified 25 relevant SRs incorporating 443 clinical trials. Reviews with the terms ‘blood pressure’ or ‘hypertension’ in the title were included. Once selected for inclusion, the abstracts were assessed independently by two authors for their capacity to inform and influence clinical decision-making. The inclusions were independently audited by a third author. Results Of the 25 SRs that formed the sample, 12 provided conclusive findings to inform a particular treatment pathway. The evidence-based approaches offer the promise of assisting clinical decision-making through clarity, but in the case of management of blood pressure, half of the SRs in our sample highlight gaps in evidence and methodological limitations. Thirteen reviews were inconclusive, and eight, including four of the 12 conclusive SRs, noted the lack of adequate reporting of potential adverse effects or incidence of harm. Conclusions These findings emphasise the importance of distillation, interpretation and synthesis of information to assist clinicians. This study questions the utility of evidence-based approaches as a uni-dimensional approach to improving clinical care and underscores the importance of standardised approaches to include adverse events, incidence of harm, patient’s needs and preferences and clinician’s expertise and discretion.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\",\"Systematic review\",\"Research-in-practice\",\"Research implementation\",\"Translational research\",\"Evidence-based practice\",\"Clinical decision-making\"],\"creators\":[\"Saltman, Deborah\",\"Jackson, Debra\",\"Newton, Phillip J.\",\"Davidson, Patricia M.\"],\"publicationdate\":\"2013-02-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"BMC Medical Informatics and Decision Making\",\"issn\":\"\",\"eissn\":\"1472-6947\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1472-6947-13-25\",\"type\":\"doi\"},{\"value\":\"PMC3586345\",\"type\":\"pmc\"},{\"value\":\"23425307\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3586345\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.biomedcentral.com/1472-6947/13/25\",\"license\":\"OPEN\",\"hostedby\":\"BMC Medical Informatics and Decision Making\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.biomedcentral.com/1472-6947/13/25\",\"license\":\"OPEN\",\"hostedby\":\"BMC Medical Informatics and Decision Making\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.biomedcentral.com/1472-6947/13/25\",\"id\":\"oai:doaj.org/article:5e8b3ed5f0e14c4aa0e3e8c7c7ef0904\"},\"trust\":0.88256955}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2587229"},"target_publication_author_list":{"type":"LIST_STRING","value":["Saltman, Deborah","Jackson, Debra","Newton, Phillip J.","Davidson, Patricia M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:5e8b3ed5f0e14c4aa0e3e8c7c7ef0904"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article","Systematic review","Research-in-practice","Research implementation","Translational research","Evidence-based practice","Clinical decision-making"]},"trust":{"type":"FLOAT","value":0.88256955},"target_publication_title":{"type":"STRING","value":"In pursuit of certainty: can the systematic review process deliver?"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2013-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:47400\",\"titles\":[\"Two-Person Fair Division of Indivisible Items: An Efficient, Envy-Free Algorithm\"],\"abstracts\":[\"Many procedures have been suggested for the venerable problem of dividing a set of indivisible items between two players. We propose a new algorithm (AL), related to one proposed by Brams and Taylor (BT), which requires only that the players strictly rank items from best to worst. Unlike BT, in which any item named by both players in the same round goes into a “contested pile,” AL may reduce, or even eliminate, the contested pile, allocating additional or more preferred items to the players. The allocation(s) that AL yields are Pareto-optimal, envy-free, and maximal; as the number of items (assumed even) increases, the probability that AL allocates all the items appears to approach infinity if all possible rankings are equiprobable. Although AL is potentially manipulable, strategizing under it would be difficult in practice.\"],\"language\":\"und\",\"subjects\":[\"Two-person fair division, indivisible items, envy-freeness, efficiency, algorithm\"],\"creators\":[\"Brams, Steven J.\",\"Kilgour, D. Marc\",\"Klamler, Christian\"],\"publicationdate\":\"2013-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/47400/1/MPRA_paper_47400.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/47400/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/47400/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/47400/\",\"id\":\"47400\"},\"trust\":0.48716623}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:47400"},"target_publication_author_list":{"type":"LIST_STRING","value":["Brams, Steven J.","Kilgour, D. Marc","Klamler, Christian"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["47400"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Two-person fair division, indivisible items, envy-freeness, efficiency, algorithm"]},"trust":{"type":"FLOAT","value":0.48716623},"target_publication_title":{"type":"STRING","value":"Two-Person Fair Division of Indivisible Items: An Efficient, Envy-Free Algorithm"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:47400\",\"titles\":[\"Two-Person Fair Division of Indivisible Items: An Efficient, Envy-Free Algorithm\"],\"abstracts\":[\"Many procedures have been suggested for the venerable problem of dividing a set of indivisible items between two players. We propose a new algorithm (AL), related to one proposed by Brams and Taylor (BT), which requires only that the players strictly rank items from best to worst. Unlike BT, in which any item named by both players in the same round goes into a “contested pile,” AL may reduce, or even eliminate, the contested pile, allocating additional or more preferred items to the players. The allocation(s) that AL yields are Pareto-optimal, envy-free, and maximal; as the number of items (assumed even) increases, the probability that AL allocates all the items appears to approach infinity if all possible rankings are equiprobable. Although AL is potentially manipulable, strategizing under it would be difficult in practice.\"],\"language\":\"und\",\"subjects\":[\"Two-person fair division, indivisible items, envy-freeness, efficiency, algorithm\"],\"creators\":[\"Brams, Steven J.\",\"Kilgour, D. Marc\",\"Klamler, Christian\"],\"publicationdate\":\"2013-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/47400/1/MPRA_paper_47400.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/47400/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/47400/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/47400/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:47400\"},\"trust\":0.38380152}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:47400"},"target_publication_author_list":{"type":"LIST_STRING","value":["Brams, Steven J.","Kilgour, D. Marc","Klamler, Christian"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:47400"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Two-person fair division, indivisible items, envy-freeness, efficiency, algorithm"]},"trust":{"type":"FLOAT","value":0.38380152},"target_publication_title":{"type":"STRING","value":"Two-Person Fair Division of Indivisible Items: An Efficient, Envy-Free Algorithm"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"47400\",\"titles\":[\"Two-Person Fair Division of Indivisible Items: An Efficient, Envy-Free Algorithm\"],\"abstracts\":[\"Many procedures have been suggested for the venerable problem of dividing a set of indivisible items between two players. We propose a new algorithm (AL), related to one proposed by Brams and Taylor (BT), which requires only that the players strictly rank items from best to worst. Unlike BT, in which any item named by both players in the same round goes into a “contested pile,” AL may reduce, or even eliminate, the contested pile, allocating additional or more preferred items to the players. The allocation(s) that AL yields are Pareto-optimal, envy-free, and maximal; as the number of items (assumed even) increases, the probability that AL allocates all the items appears to approach infinity if all possible rankings are equiprobable. Although AL is potentially manipulable, strategizing under it would be difficult in practice.\"],\"language\":\"eng\",\"subjects\":[\"C7 - Game Theory and Bargaining Theory\",\"C78 - Bargaining Theory ; Matching Theory\",\"D6 - Welfare Economics\",\"D61 - Allocative Efficiency ; Cost-Benefit Analysis\",\"D63 - Equity, Justice, Inequality, and Other Normative Criteria and Measurement\",\"D7 - Analysis of Collective Decision-Making\",\"D74 - Conflict ; Conflict Resolution ; Alliances ; Revolutions\"],\"creators\":[\"Brams, Steven J.\",\"Kilgour, D. Marc\",\"Klamler, Christian\"],\"publicationdate\":\"2013-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/47400/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/47400/1/MPRA_paper_47400.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/47400/1/MPRA_paper_47400.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/47400/1/MPRA_paper_47400.pdf\",\"id\":\"oai:RePEc:pra:mprapa:47400\"},\"trust\":0.93058354}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"47400"},"target_publication_author_list":{"type":"LIST_STRING","value":["Brams, Steven J.","Kilgour, D. Marc","Klamler, Christian"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:47400"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["C7 - Game Theory and Bargaining Theory","C78 - Bargaining Theory ; Matching Theory","D6 - Welfare Economics","D61 - Allocative Efficiency ; Cost-Benefit Analysis","D63 - Equity, Justice, Inequality, and Other Normative Criteria and Measurement","D7 - Analysis of Collective Decision-Making","D74 - Conflict ; Conflict Resolution ; Alliances ; Revolutions"]},"trust":{"type":"FLOAT","value":0.93058354},"target_publication_title":{"type":"STRING","value":"Two-Person Fair Division of Indivisible Items: An Efficient, Envy-Free Algorithm"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"47400\",\"titles\":[\"Two-Person Fair Division of Indivisible Items: An Efficient, Envy-Free Algorithm\"],\"abstracts\":[\"Many procedures have been suggested for the venerable problem of dividing a set of indivisible items between two players. We propose a new algorithm (AL), related to one proposed by Brams and Taylor (BT), which requires only that the players strictly rank items from best to worst. Unlike BT, in which any item named by both players in the same round goes into a “contested pile,” AL may reduce, or even eliminate, the contested pile, allocating additional or more preferred items to the players. The allocation(s) that AL yields are Pareto-optimal, envy-free, and maximal; as the number of items (assumed even) increases, the probability that AL allocates all the items appears to approach infinity if all possible rankings are equiprobable. Although AL is potentially manipulable, strategizing under it would be difficult in practice.\"],\"language\":\"eng\",\"subjects\":[\"C7 - Game Theory and Bargaining Theory\",\"C78 - Bargaining Theory ; Matching Theory\",\"D6 - Welfare Economics\",\"D61 - Allocative Efficiency ; Cost-Benefit Analysis\",\"D63 - Equity, Justice, Inequality, and Other Normative Criteria and Measurement\",\"D7 - Analysis of Collective Decision-Making\",\"D74 - Conflict ; Conflict Resolution ; Alliances ; Revolutions\"],\"creators\":[\"Brams, Steven J.\",\"Kilgour, D. Marc\",\"Klamler, Christian\"],\"publicationdate\":\"2013-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/47400/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/47400/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/47400/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/47400/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:47400\"},\"trust\":0.8049486}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"47400"},"target_publication_author_list":{"type":"LIST_STRING","value":["Brams, Steven J.","Kilgour, D. Marc","Klamler, Christian"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:47400"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["C7 - Game Theory and Bargaining Theory","C78 - Bargaining Theory ; Matching Theory","D6 - Welfare Economics","D61 - Allocative Efficiency ; Cost-Benefit Analysis","D63 - Equity, Justice, Inequality, and Other Normative Criteria and Measurement","D7 - Analysis of Collective Decision-Making","D74 - Conflict ; Conflict Resolution ; Alliances ; Revolutions"]},"trust":{"type":"FLOAT","value":0.8049486},"target_publication_title":{"type":"STRING","value":"Two-Person Fair Division of Indivisible Items: An Efficient, Envy-Free Algorithm"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:47400\",\"titles\":[\"Two-Person Fair Division of Indivisible Items: An Efficient, Envy-Free Algorithm\"],\"abstracts\":[\"Many procedures have been suggested for the venerable problem of dividing a set of indivisible items between two players. We propose a new algorithm (AL), related to one proposed by Brams and Taylor (BT), which requires only that the players strictly rank items from best to worst. Unlike BT, in which any item named by both players in the same round goes into a “contested pile,” AL may reduce, or even eliminate, the contested pile, allocating additional or more preferred items to the players. The allocation(s) that AL yields are Pareto-optimal, envy-free, and maximal; as the number of items (assumed even) increases, the probability that AL allocates all the items appears to approach infinity if all possible rankings are equiprobable. Although AL is potentially manipulable, strategizing under it would be difficult in practice.\"],\"language\":\"eng\",\"subjects\":[\"C7 - Game Theory and Bargaining Theory\",\"C78 - Bargaining Theory ; Matching Theory\",\"D6 - Welfare Economics\",\"D61 - Allocative Efficiency ; Cost-Benefit Analysis\",\"D63 - Equity, Justice, Inequality, and Other Normative Criteria and Measurement\",\"D7 - Analysis of Collective Decision-Making\",\"D74 - Conflict ; Conflict Resolution ; Alliances ; Revolutions\"],\"creators\":[\"Brams, Steven J.\",\"Kilgour, D. Marc\",\"Klamler, Christian\"],\"publicationdate\":\"2013-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/47400/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/47400/1/MPRA_paper_47400.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/47400/1/MPRA_paper_47400.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/47400/1/MPRA_paper_47400.pdf\",\"id\":\"oai:RePEc:pra:mprapa:47400\"},\"trust\":0.472207}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:47400"},"target_publication_author_list":{"type":"LIST_STRING","value":["Brams, Steven J.","Kilgour, D. Marc","Klamler, Christian"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:47400"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["C7 - Game Theory and Bargaining Theory","C78 - Bargaining Theory ; Matching Theory","D6 - Welfare Economics","D61 - Allocative Efficiency ; Cost-Benefit Analysis","D63 - Equity, Justice, Inequality, and Other Normative Criteria and Measurement","D7 - Analysis of Collective Decision-Making","D74 - Conflict ; Conflict Resolution ; Alliances ; Revolutions"]},"trust":{"type":"FLOAT","value":0.472207},"target_publication_title":{"type":"STRING","value":"Two-Person Fair Division of Indivisible Items: An Efficient, Envy-Free Algorithm"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:47400\",\"titles\":[\"Two-Person Fair Division of Indivisible Items: An Efficient, Envy-Free Algorithm\"],\"abstracts\":[\"Many procedures have been suggested for the venerable problem of dividing a set of indivisible items between two players. We propose a new algorithm (AL), related to one proposed by Brams and Taylor (BT), which requires only that the players strictly rank items from best to worst. Unlike BT, in which any item named by both players in the same round goes into a “contested pile,” AL may reduce, or even eliminate, the contested pile, allocating additional or more preferred items to the players. The allocation(s) that AL yields are Pareto-optimal, envy-free, and maximal; as the number of items (assumed even) increases, the probability that AL allocates all the items appears to approach infinity if all possible rankings are equiprobable. Although AL is potentially manipulable, strategizing under it would be difficult in practice.\"],\"language\":\"eng\",\"subjects\":[\"C7 - Game Theory and Bargaining Theory\",\"C78 - Bargaining Theory ; Matching Theory\",\"D6 - Welfare Economics\",\"D61 - Allocative Efficiency ; Cost-Benefit Analysis\",\"D63 - Equity, Justice, Inequality, and Other Normative Criteria and Measurement\",\"D7 - Analysis of Collective Decision-Making\",\"D74 - Conflict ; Conflict Resolution ; Alliances ; Revolutions\"],\"creators\":[\"Brams, Steven J.\",\"Kilgour, D. Marc\",\"Klamler, Christian\"],\"publicationdate\":\"2013-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/47400/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/47400/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/47400/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/47400/\",\"id\":\"47400\"},\"trust\":0.064546466}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:47400"},"target_publication_author_list":{"type":"LIST_STRING","value":["Brams, Steven J.","Kilgour, D. Marc","Klamler, Christian"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["47400"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["C7 - Game Theory and Bargaining Theory","C78 - Bargaining Theory ; Matching Theory","D6 - Welfare Economics","D61 - Allocative Efficiency ; Cost-Benefit Analysis","D63 - Equity, Justice, Inequality, and Other Normative Criteria and Measurement","D7 - Analysis of Collective Decision-Making","D74 - Conflict ; Conflict Resolution ; Alliances ; Revolutions"]},"trust":{"type":"FLOAT","value":0.064546466},"target_publication_title":{"type":"STRING","value":"Two-Person Fair Division of Indivisible Items: An Efficient, Envy-Free Algorithm"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2445970\",\"titles\":[\"Loss of dialysis catheter guide-wire: How to prevent?\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Letter to the Editor\"],\"creators\":[\"Kute, Vivek B.\",\"Patel, Mohan P.\",\"Shrimali, Jigar D.\",\"Gumber, Manoj R.\",\"Shah, Pankaj R.\",\"Patel, Himanshu V.\",\"Vanikar, Aruna V.\",\"Trivedi, Hargovind L.\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Medknow Publications \\u0026 Media Pvt Ltd\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Indian Journal of Critical Care Medicine : Peer-reviewed, Official Publication of Indian Society of Critical Care Medicine\",\"issn\":\"0972-5229\",\"eissn\":\"1998-359X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4103/0972-5229.99141\",\"type\":\"doi\"},{\"value\":\"PMC3439776\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3439776\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.ijccm.org/article.asp?issn\\u003d0972-5229;year\\u003d2012;volume\\u003d16;issue\\u003d2;spage\\u003d114;epage\\u003d116;aulast\\u003dKute\",\"license\":\"OPEN\",\"hostedby\":\"Indian Journal of Critical Care Medicine\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ijccm.org/article.asp?issn\\u003d0972-5229;year\\u003d2012;volume\\u003d16;issue\\u003d2;spage\\u003d114;epage\\u003d116;aulast\\u003dKute\",\"license\":\"OPEN\",\"hostedby\":\"Indian Journal of Critical Care Medicine\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.ijccm.org/article.asp?issn\\u003d0972-5229;year\\u003d2012;volume\\u003d16;issue\\u003d2;spage\\u003d114;epage\\u003d116;aulast\\u003dKute\",\"id\":\"oai:doaj.org/article:679883aab2c0486a971ce17bf55697aa\"},\"trust\":0.2268765}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2445970"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kute, Vivek B.","Patel, Mohan P.","Shrimali, Jigar D.","Gumber, Manoj R.","Shah, Pankaj R.","Patel, Himanshu V.","Vanikar, Aruna V.","Trivedi, Hargovind L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:679883aab2c0486a971ce17bf55697aa"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Letter to the Editor"]},"trust":{"type":"FLOAT","value":0.2268765},"target_publication_title":{"type":"STRING","value":"Loss of dialysis catheter guide-wire: How to prevent?"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal-ensmp.archives-ouvertes.fr:hal-00612051\",\"titles\":[\"Evaluation of a tube-based constitutive equation using conventional and planar elongation flow optical rheometers\"],\"abstracts\":[\"The predictions of the Marrucci and Ianniruberto model (2003) have been studied in various rheometric flows as well as a planar elongation flow using the \\u0027optical elongational rheometer\\u0027 technique proposed by Schuberth and Münstedt (Rheol Acta 47:111-119, 2008). This combination of techniques extended the range of pertinence of the model to high-extensional rates. Relevance of the identified parameters with respect to tube theory was then discussed.\"],\"language\":\"eng\",\"subjects\":[\"[SPI:MAT] Engineering Sciences/Materials\",\"[SPI:MAT] Sciences de l\\u0027ingénieur/Matériaux\",\"Birefringence\",\"Laser-Doppler velocimetry\",\"Planar elongational flows\",\"Tube-based constitutive equations\"],\"creators\":[\"Boukellal, Ghalia\",\"Durin, Audrey\",\"Valette, Rudy\",\"Agassant, Jean-François\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/s00397-011-0573-y\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00612051\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal-mines-paristech.archives-ouvertes.fr/hal-00612051\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal-mines-paristech.archives-ouvertes.fr/hal-00612051\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal-mines-paristech.archives-ouvertes.fr/hal-00612051\",\"id\":\"oai:HAL:hal-00612051v1\"},\"trust\":0.04591167}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal-ensmp.archives-ouvertes.fr:hal-00612051"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boukellal, Ghalia","Durin, Audrey","Valette, Rudy","Agassant, Jean-François"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00612051v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SPI:MAT] Engineering Sciences/Materials","[SPI:MAT] Sciences de l\u0027ingénieur/Matériaux","Birefringence","Laser-Doppler velocimetry","Planar elongational flows","Tube-based constitutive equations"]},"trust":{"type":"FLOAT","value":0.04591167},"target_publication_title":{"type":"STRING","value":"Evaluation of a tube-based constitutive equation using conventional and planar elongation flow optical rheometers"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00612051v1\",\"titles\":[\"Evaluation of a tube-based constitutive equation using conventional and planar elongation flow optical rheometers\"],\"abstracts\":[\"The original publication is available at http://www.springerlink.com\",\"International audience\",\"The predictions of the Marrucci and Ianniruberto model (2003) have been studied in various rheometric flows as well as a planar elongation flow using the \\u0027optical elongational rheometer\\u0027 technique proposed by Schuberth and Münstedt (Rheol Acta 47:111-119, 2008). This combination of techniques extended the range of pertinence of the model to high-extensional rates. Relevance of the identified parameters with respect to tube theory was then discussed.\"],\"language\":\"eng\",\"subjects\":[\"Birefringence\",\"Laser-Doppler velocimetry\",\"Planar elongational flows\",\"Tube-based constitutive equations\",\"[SPI.MAT] Engineering Sciences/Materials\"],\"creators\":[\"Boukellal, Ghalia\",\"Durin, Audrey\",\"Valette, Rudy\",\"Agassant, Jean-François\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Springer Verlag (Germany)\",\"embargoenddate\":\"\",\"contributor\":[\"Centre de Mise en Forme des Matériaux (CEMEF) ; MINES ParisTech - École nationale supérieure des mines de Paris - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/s00397-011-0573-y\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal-mines-paristech.archives-ouvertes.fr/hal-00612051\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00612051\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00612051\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00612051\",\"id\":\"oai:hal-ensmp.archives-ouvertes.fr:hal-00612051\"},\"trust\":0.30366826}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00612051v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boukellal, Ghalia","Durin, Audrey","Valette, Rudy","Agassant, Jean-François"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal-ensmp.archives-ouvertes.fr:hal-00612051"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Birefringence","Laser-Doppler velocimetry","Planar elongational flows","Tube-based constitutive equations","[SPI.MAT] Engineering Sciences/Materials"]},"trust":{"type":"FLOAT","value":0.30366826},"target_publication_title":{"type":"STRING","value":"Evaluation of a tube-based constitutive equation using conventional and planar elongation flow optical rheometers"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/22229\",\"titles\":[\"Wann sind falsche VaR-Modelle dennoch adäquat?\"],\"abstracts\":[\"Die Berechnung des VaR führt zur Reduktion der Dimension des Raumes der Risikofaktoren. Die vorzunehmenden Vereinfachungen resultieren aus unterschiedlichen Beweggründen, z.B. technische Effizienz, Sachlogik der Ergebnisse und statistische Adäquanz des Modells. Im Kapitel 2 stellen wir drei gängige Mappingverfahren vor: das Marktindexmodell, das Hauptkomponentenmodell und das Modell mit gleichkorrelierten Risikofaktoren. Impulse für Methoden zum Vergleich dieser Modelle im Kapitel 3 kamen vor allem aus der Literatur zur Praxis der Beurteilung von Wetterprognosen (Murphy und Winkler 1992, Murphy 1997). Umfangreiche Überlegungen zu einer quantitativen Analyse werden im vierten Kapitel dieser Arbeit vorgestellt. Die empirische Analyse der DAX Daten wird abschließend mit XploRe durchgeführt.\"],\"language\":\"deu/ger\",\"subjects\":[\"ddc:330\",\"VAR-Modell\",\"Theorie\"],\"creators\":[\"Härdle, Wolfgang Karl\",\"Hlávka, Zdeněk\",\"Stahl, G.\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/22229\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://econstor.eu/bitstream/10419/22229/1/dpsfb200314.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/22229/1/dpsfb200314.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econstor.eu/bitstream/10419/22229/1/dpsfb200314.pdf\",\"id\":\"oai:RePEc:zbw:sfb373:200314\"},\"trust\":0.9440898}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/22229"},"target_publication_author_list":{"type":"LIST_STRING","value":["Härdle, Wolfgang Karl","Hlávka, Zdeněk","Stahl, G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:zbw:sfb373:200314"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330","VAR-Modell","Theorie"]},"trust":{"type":"FLOAT","value":0.9440898},"target_publication_title":{"type":"STRING","value":"Wann sind falsche VaR-Modelle dennoch adäquat?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:zbw:sfb373:200314\",\"titles\":[\"Wann sind falsche VaR-Modelle dennoch adäquat?\"],\"abstracts\":[\"Die Berechnung des VaR führt zur Reduktion der Dimension des Raumes der Risikofaktoren. Die vorzunehmenden Vereinfachungen resultieren aus unterschiedlichen Beweggründen, z.B. technische Effizienz, Sachlogik der Ergebnisse und statistische Adäquanz des Modells. Im Kapitel 2 stellen wir drei gängige Mappingverfahren vor: das Marktindexmodell, das Hauptkomponentenmodell und das Modell mit gleichkorrelierten Risikofaktoren. Impulse für Methoden zum Vergleich dieser Modelle im Kapitel 3 kamen vor allem aus der Literatur zur Praxis der Beurteilung von Wetterprognosen (Murphy und Winkler 1992, Murphy 1997). Umfangreiche Überlegungen zu einer quantitativen Analyse werden im vierten Kapitel dieser Arbeit vorgestellt. Die empirische Analyse der DAX Daten wird abschließend mit XploRe durchgeführt.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Härdle, Wolfgang Karl\",\"Hlávka, Zdeněk\",\"Stahl, G.\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/22229/1/dpsfb200314.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/22229\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/22229\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/22229\",\"id\":\"oai:econstor.eu:10419/22229\"},\"trust\":0.84795535}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:zbw:sfb373:200314"},"target_publication_author_list":{"type":"LIST_STRING","value":["Härdle, Wolfgang Karl","Hlávka, Zdeněk","Stahl, G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/22229"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"trust":{"type":"FLOAT","value":0.84795535},"target_publication_title":{"type":"STRING","value":"Wann sind falsche VaR-Modelle dennoch adäquat?"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberwo:12975\",\"titles\":[\"The Effect of Tuition Reimbursement on Turnover: A Case Study Analysis\"],\"abstracts\":[\"Tuition reimbursement programs provide financial assistance for direct costs of education and are a type of general skills training program commonly offered by employers in the United States. Standard human capital theory argues that investment in firm-specific skills reduces turnover, while investment in general skills training could result in increased turnover. However, firms cite increased retention as a motivation for offering tuition reimbursement programs. This rationale for offering these programs challenges the predictions of the standard human capital model. This paper tests empirically whether participation in tuition reimbursement programs increases employee retention using data from a non-profit institution. To document the prevalence of tuition reimbursement programs, the case study analysis is supplemented with findings from the Survey of Employer-Provided Training, 1995 (SEPT95). This paper finds that participation in tuition reimbursement programs reduces employee turnover.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Flaherty, Colleen N.\"],\"publicationdate\":\"2007-03-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/papers/w12975.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.nber.org/chapters/c9116.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.nber.org/chapters/c9116.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.nber.org/chapters/c9116.pdf\",\"id\":\"oai:RePEc:nbr:nberch:9116\"},\"trust\":0.14082348}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberwo:12975"},"target_publication_author_list":{"type":"LIST_STRING","value":["Flaherty, Colleen N."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:nbr:nberch:9116"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.14082348},"target_publication_title":{"type":"STRING","value":"The Effect of Tuition Reimbursement on Turnover: A Case Study Analysis"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberch:9116\",\"titles\":[\"The Effect of Tuition Reimbursement on Turnover: A Case Study Analysis\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Colleen Flaherty Manchester\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/chapters/c9116.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"},{\"url\":\"http://www.nber.org/papers/w12975.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.nber.org/papers/w12975.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.nber.org/papers/w12975.pdf\",\"id\":\"oai:RePEc:nbr:nberwo:12975\"},\"trust\":0.25389898}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberch:9116"},"target_publication_author_list":{"type":"LIST_STRING","value":["Colleen Flaherty Manchester"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:nbr:nberwo:12975"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.25389898},"target_publication_title":{"type":"STRING","value":"The Effect of Tuition Reimbursement on Turnover: A Case Study Analysis"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberch:9116\",\"titles\":[\"The Effect of Tuition Reimbursement on Turnover: A Case Study Analysis\"],\"abstracts\":[\"Tuition reimbursement programs provide financial assistance for direct costs of education and are a type of general skills training program commonly offered by employers in the United States. Standard human capital theory argues that investment in firm-specific skills reduces turnover, while investment in general skills training could result in increased turnover. However, firms cite increased retention as a motivation for offering tuition reimbursement programs. This rationale for offering these programs challenges the predictions of the standard human capital model. This paper tests empirically whether participation in tuition reimbursement programs increases employee retention using data from a non-profit institution. To document the prevalence of tuition reimbursement programs, the case study analysis is supplemented with findings from the Survey of Employer-Provided Training, 1995 (SEPT95). This paper finds that participation in tuition reimbursement programs reduces employee turnover.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Colleen Flaherty Manchester\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/chapters/c9116.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"Tuition reimbursement programs provide financial assistance for direct costs of education and are a type of general skills training program commonly offered by employers in the United States. Standard human capital theory argues that investment in firm-specific skills reduces turnover, while investment in general skills training could result in increased turnover. However, firms cite increased retention as a motivation for offering tuition reimbursement programs. This rationale for offering these programs challenges the predictions of the standard human capital model. This paper tests empirically whether participation in tuition reimbursement programs increases employee retention using data from a non-profit institution. To document the prevalence of tuition reimbursement programs, the case study analysis is supplemented with findings from the Survey of Employer-Provided Training, 1995 (SEPT95). This paper finds that participation in tuition reimbursement programs reduces employee turnover.\"]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.nber.org/papers/w12975.pdf\",\"id\":\"oai:RePEc:nbr:nberwo:12975\"},\"trust\":0.98009497}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberch:9116"},"target_publication_author_list":{"type":"LIST_STRING","value":["Colleen Flaherty Manchester"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:nbr:nberwo:12975"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.98009497},"target_publication_title":{"type":"STRING","value":"The Effect of Tuition Reimbursement on Turnover: A Case Study Analysis"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberch:9116\",\"titles\":[\"The Effect of Tuition Reimbursement on Turnover: A Case Study Analysis\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Colleen Flaherty Manchester\"],\"publicationdate\":\"2007-03-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/chapters/c9116.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"2007-03-01\"},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.nber.org/papers/w12975.pdf\",\"id\":\"oai:RePEc:nbr:nberwo:12975\"},\"trust\":0.9805062}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberch:9116"},"target_publication_author_list":{"type":"LIST_STRING","value":["Colleen Flaherty Manchester"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:nbr:nberwo:12975"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.9805062},"target_publication_title":{"type":"STRING","value":"The Effect of Tuition Reimbursement on Turnover: A Case Study Analysis"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00902765v1\",\"titles\":[\"The bovine neutrophil: Structure and function in blood and milk\"],\"abstracts\":[\"International audience\",\"Migration of polymorphonuclear neutrophil leukocytes (PMN) into the mammary gland provide the first line of defense against invading mastitis pathogens. Bacteria release potent toxins that activate white blood cells and epithelial cells in the mammary gland to secrete cytokines that recruit PMN that function as phagocytes at the site of infection. While freshly migrated PMN are active phagocytes, continued exposure of PMN to inhibitory factors in milk such as fat globules and casein, leads to altered PMN morphology and reduced phagocytosis. In the course of phagocytosing and destroying invading pathogens, PMN release chemicals that not only kill the pathogens but that also cause injury to the delicate lining of the mammary gland. This will result in permanent scarring and reduced numbers of milk secretory cells. The life span of PMN is limited by the onset of apoptosis. To minimize damage to mammary tissue, PMN undergo a specialized process of programmed cell death known as apoptosis. Macrophages quickly engulf and phagocytose apoptotic PMN, thereby minimizing the release of PMN granular contents that are damaging to tissue. The PMN possess an array of cell surface receptors that allow them to adhere and migrate through endothelium and to recognize and phagocytose bacteria. One receptor found on phagocytes that is receiving considerable attention in the control of infections by Gram-negative bacteria is CD14. Binding of lipopolysaccharide (LPS) to membrane bound CD14 causes release of tumor necrosis factor-$\\\\alpha$ and sepsis. Binding of LPS to soluble CD14 shed from CD14-bearing cells results in neutralization of LPS and rapid recruitment of PMN to the site of infection. Recent advances in the fields of genomics and proteomics should greatly enhance our understanding of the PMN role in controlling intramammary infections in ruminants. Further, manipulation of PMN, through either recombinant proteins such as soluble CD14 that enhance PMN response or agents that mediate PMN apoptosis, may serve as novel therapeutics for the treatment of mastitis.\"],\"language\":\"eng\",\"subjects\":[\"neutrophil\",\"chemotaxis\",\"phagocytosis\",\"oxidative burst\",\"apoptosis\",\"mastitis\",\"[SDV.BBM.BM] Life Sciences/Biochemistry, Molecular Biology/Molecular biology\",\"[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics\",\"[SDV.BC] Life Sciences/Cellular Biology\",\"[SDV.BC.IC] Life Sciences/Cellular Biology/Cell Behavior\",\"[SDV.MP] Life Sciences/Microbiology and Parasitology\",\"[SDV.IMM] Life Sciences/Immunology\",\"[SDV.NEU] Life Sciences/Neurons and Cognition\",\"[SDV.SPEE] Life Sciences/Santé publique et épidémiologie\",\"[SDV.BA] Life Sciences/Animal biology\"],\"creators\":[\"Paape, Max\",\"Bannerman, Douglas\",\"Zhao, Xin\",\"Lee, Jai-Wei\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/vetres:2003024\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00902765\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00902765\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00902765\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00902765\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00902765\"},\"trust\":0.5888942}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00902765v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Paape, Max","Bannerman, Douglas","Zhao, Xin","Lee, Jai-Wei"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00902765"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["neutrophil","chemotaxis","phagocytosis","oxidative burst","apoptosis","mastitis","[SDV.BBM.BM] Life Sciences/Biochemistry, Molecular Biology/Molecular biology","[SDV.GEN.GA] Life Sciences/Genetics/Animal genetics","[SDV.BC] Life Sciences/Cellular Biology","[SDV.BC.IC] Life Sciences/Cellular Biology/Cell Behavior","[SDV.MP] Life Sciences/Microbiology and Parasitology","[SDV.IMM] Life Sciences/Immunology","[SDV.NEU] Life Sciences/Neurons and Cognition","[SDV.SPEE] Life Sciences/Santé publique et épidémiologie","[SDV.BA] Life Sciences/Animal biology"]},"trust":{"type":"FLOAT","value":0.5888942},"target_publication_title":{"type":"STRING","value":"The bovine neutrophil: Structure and function in blood and milk"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00902765\",\"titles\":[\"The bovine neutrophil: Structure and function in blood and milk\"],\"abstracts\":[\"Migration of polymorphonuclear neutrophil leukocytes (PMN) into the mammary gland provide the first line of defense against invading mastitis pathogens. Bacteria release potent toxins that activate white blood cells and epithelial cells in the mammary gland to secrete cytokines that recruit PMN that function as phagocytes at the site of infection. While freshly migrated PMN are active phagocytes, continued exposure of PMN to inhibitory factors in milk such as fat globules and casein, leads to altered PMN morphology and reduced phagocytosis. In the course of phagocytosing and destroying invading pathogens, PMN release chemicals that not only kill the pathogens but that also cause injury to the delicate lining of the mammary gland. This will result in permanent scarring and reduced numbers of milk secretory cells. The life span of PMN is limited by the onset of apoptosis. To minimize damage to mammary tissue, PMN undergo a specialized process of programmed cell death known as apoptosis. Macrophages quickly engulf and phagocytose apoptotic PMN, thereby minimizing the release of PMN granular contents that are damaging to tissue. The PMN possess an array of cell surface receptors that allow them to adhere and migrate through endothelium and to recognize and phagocytose bacteria. One receptor found on phagocytes that is receiving considerable attention in the control of infections by Gram-negative bacteria is CD14. Binding of lipopolysaccharide (LPS) to membrane bound CD14 causes release of tumor necrosis factor-$\\\\alpha$ and sepsis. Binding of LPS to soluble CD14 shed from CD14-bearing cells results in neutralization of LPS and rapid recruitment of PMN to the site of infection. Recent advances in the fields of genomics and proteomics should greatly enhance our understanding of the PMN role in controlling intramammary infections in ruminants. Further, manipulation of PMN, through either recombinant proteins such as soluble CD14 that enhance PMN response or agents that mediate PMN apoptosis, may serve as novel therapeutics for the treatment of mastitis.\"],\"language\":\"und\",\"subjects\":[\"[SDV:BBM:BM] Life Sciences/Biochemistry, Molecular Biology/Molecular biology\",\"[SDV:BBM:BM] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biologie moléculaire\",\"[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics\",\"[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale\",\"[SDV:BC] Life Sciences/Cellular Biology\",\"[SDV:BC] Sciences du Vivant/Biologie cellulaire\",\"[SDV:BC:IC] Life Sciences/Cellular Biology/Cell Behavior\",\"[SDV:BC:IC] Sciences du Vivant/Biologie cellulaire/Interactions cellulaires\",\"[SDV:MP] Life Sciences/Microbiology and Parasitology\",\"[SDV:MP] Sciences du Vivant/Microbiologie et Parasitologie\",\"[SDV:IMM] Life Sciences/Immunology\",\"[SDV:IMM] Sciences du Vivant/Immunologie\",\"[SDV:NEU] Life Sciences/Neurons and Cognition\",\"[SDV:NEU] Sciences du Vivant/Neurosciences\",\"[SDV:SPEE] Life Sciences/Santé publique et épidémiologie\",\"[SDV:SPEE] Sciences du Vivant/Santé publique et épidémiologie\",\"[SDV:BA] Life Sciences/Animal biology\",\"[SDV:BA] Sciences du Vivant/Biologie animale\",\"neutrophil\",\"chemotaxis\",\"phagocytosis\",\"oxidative burst\",\"apoptosis\",\"mastitis\"],\"creators\":[\"Paape, Max\",\"Bannerman, Douglas\",\"Zhao, Xin\",\"Lee, Jai-Wei\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/vetres:2003024\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00902765\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00902765\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00902765\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00902765\",\"id\":\"oai:HAL:hal-00902765v1\"},\"trust\":0.7538208}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00902765"},"target_publication_author_list":{"type":"LIST_STRING","value":["Paape, Max","Bannerman, Douglas","Zhao, Xin","Lee, Jai-Wei"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00902765v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BBM:BM] Life Sciences/Biochemistry, Molecular Biology/Molecular biology","[SDV:BBM:BM] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biologie moléculaire","[SDV:GEN:GA] Life Sciences/Genetics/Animal genetics","[SDV:GEN:GA] Sciences du Vivant/Génétique/Génétique animale","[SDV:BC] Life Sciences/Cellular Biology","[SDV:BC] Sciences du Vivant/Biologie cellulaire","[SDV:BC:IC] Life Sciences/Cellular Biology/Cell Behavior","[SDV:BC:IC] Sciences du Vivant/Biologie cellulaire/Interactions cellulaires","[SDV:MP] Life Sciences/Microbiology and Parasitology","[SDV:MP] Sciences du Vivant/Microbiologie et Parasitologie","[SDV:IMM] Life Sciences/Immunology","[SDV:IMM] Sciences du Vivant/Immunologie","[SDV:NEU] Life Sciences/Neurons and Cognition","[SDV:NEU] Sciences du Vivant/Neurosciences","[SDV:SPEE] Life Sciences/Santé publique et épidémiologie","[SDV:SPEE] Sciences du Vivant/Santé publique et épidémiologie","[SDV:BA] Life Sciences/Animal biology","[SDV:BA] Sciences du Vivant/Biologie animale","neutrophil","chemotaxis","phagocytosis","oxidative burst","apoptosis","mastitis"]},"trust":{"type":"FLOAT","value":0.7538208},"target_publication_title":{"type":"STRING","value":"The bovine neutrophil: Structure and function in blood and milk"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00884454\",\"titles\":[\"Influence de la plante-hôte, l\\u0027olivier, sur la dynamique des populations d\\u0027Aspidiotus nerii Bouché (Homoptera, Diaspididae)\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:SA] Life Sciences/Agricultural sciences\",\"[SDV:SA] Sciences du Vivant/Sciences agricoles\",\"[SDV:EE] Life Sciences/Ecology, environment\",\"[SDV:EE] Sciences du Vivant/Ecologie, Environnement\"],\"creators\":[\"Alexandrakis, Venizelos\",\"Benassy, Claude\"],\"publicationdate\":\"1982-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00884454\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00884454\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00884454\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00884454\",\"id\":\"oai:HAL:hal-00884454v1\"},\"trust\":0.11394864}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00884454"},"target_publication_author_list":{"type":"LIST_STRING","value":["Alexandrakis, Venizelos","Benassy, Claude"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00884454v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:SA] Life Sciences/Agricultural sciences","[SDV:SA] Sciences du Vivant/Sciences agricoles","[SDV:EE] Life Sciences/Ecology, environment","[SDV:EE] Sciences du Vivant/Ecologie, Environnement"]},"trust":{"type":"FLOAT","value":0.11394864},"target_publication_title":{"type":"STRING","value":"Influence de la plante-hôte, l\u0027olivier, sur la dynamique des populations d\u0027Aspidiotus nerii Bouché (Homoptera, Diaspididae)"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1982-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00884454\",\"titles\":[\"Influence de la plante-hôte, l\\u0027olivier, sur la dynamique des populations d\\u0027Aspidiotus nerii Bouché (Homoptera, Diaspididae)\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:SA] Life Sciences/Agricultural sciences\",\"[SDV:SA] Sciences du Vivant/Sciences agricoles\",\"[SDV:EE] Life Sciences/Ecology, environment\",\"[SDV:EE] Sciences du Vivant/Ecologie, Environnement\"],\"creators\":[\"Alexandrakis, Venizelos\",\"Benassy, Claude\"],\"publicationdate\":\"1982-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00884454\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"International audience\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00884454\",\"id\":\"oai:HAL:hal-00884454v1\"},\"trust\":0.80814}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00884454"},"target_publication_author_list":{"type":"LIST_STRING","value":["Alexandrakis, Venizelos","Benassy, Claude"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00884454v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:SA] Life Sciences/Agricultural sciences","[SDV:SA] Sciences du Vivant/Sciences agricoles","[SDV:EE] Life Sciences/Ecology, environment","[SDV:EE] Sciences du Vivant/Ecologie, Environnement"]},"trust":{"type":"FLOAT","value":0.80814},"target_publication_title":{"type":"STRING","value":"Influence de la plante-hôte, l\u0027olivier, sur la dynamique des populations d\u0027Aspidiotus nerii Bouché (Homoptera, Diaspididae)"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1982-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00884454v1\",\"titles\":[\"Influence de la plante-hôte, l\\u0027olivier, sur la dynamique des populations d\\u0027Aspidiotus nerii Bouché (Homoptera, Diaspididae)\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.SA] Life Sciences/Agricultural sciences\",\"[SDV.EE] Life Sciences/Ecology, environment\"],\"creators\":[\"Alexandrakis, Venizelos\",\"Benassy, Claude\"],\"publicationdate\":\"1982-01-01\",\"publisher\":\"EDP Sciences\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00884454\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00884454\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00884454\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00884454\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00884454\"},\"trust\":0.5957914}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00884454v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Alexandrakis, Venizelos","Benassy, Claude"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00884454"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.SA] Life Sciences/Agricultural sciences","[SDV.EE] Life Sciences/Ecology, environment"]},"trust":{"type":"FLOAT","value":0.5957914},"target_publication_title":{"type":"STRING","value":"Influence de la plante-hôte, l\u0027olivier, sur la dynamique des populations d\u0027Aspidiotus nerii Bouché (Homoptera, Diaspididae)"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1982-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2720271\",\"titles\":[\"Two-wavelength fundus autofluorescence and macular pigment optical density imaging in diabetic macular oedema\"],\"abstracts\":[\"\"],\"language\":\"eng\",\"subjects\":[\"Clinical Study\"],\"creators\":[\"Waldstein, S. M.\",\"Hickey, D.\",\"Mahmud, I.\",\"Kiire, C. A.\",\"Charbel Issa, P.\",\"Chong, N. V.\"],\"publicationdate\":\"2012-06-15\",\"publisher\":\"Nature Publishing Group\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC3420036\",\"type\":\"pmc\"},{\"value\":\"10.1038/eye.2012.100\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3420036\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1038/eye.2012.100\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Crossref\",\"url\":\"http://dx.doi.org/10.1038/eye.2012.100\",\"id\":\"WOS:000307726000011\"},\"trust\":0.8242231}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2720271"},"target_publication_author_list":{"type":"LIST_STRING","value":["Waldstein, S. M.","Hickey, D.","Mahmud, I.","Kiire, C. A.","Charbel Issa, P.","Chong, N. V."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["WOS:000307726000011"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::081b82f96300b6a6e3d282bad31cb6e2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Clinical Study"]},"trust":{"type":"FLOAT","value":0.8242231},"target_publication_title":{"type":"STRING","value":"Two-wavelength fundus autofluorescence and macular pigment optical density imaging in diabetic macular oedema"},"provenance_datasource_name":{"type":"STRING","value":"Crossref"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2720271\",\"titles\":[\"Two-wavelength fundus autofluorescence and macular pigment optical density imaging in diabetic macular oedema\"],\"abstracts\":[\"\"],\"language\":\"eng\",\"subjects\":[\"Clinical Study\"],\"creators\":[\"Waldstein, S. M.\",\"Hickey, D.\",\"Mahmud, I.\",\"Kiire, C. A.\",\"Charbel Issa, P.\",\"Chong, N. V.\"],\"publicationdate\":\"2012-06-15\",\"publisher\":\"Nature Publishing Group\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC3420036\",\"type\":\"pmc\"},{\"value\":\"10.1038/eye.2012.100\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3420036\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1038/eye.2012.100\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:ebfe6af4-025d-4de3-93f0-f9df6a031444\",\"id\":\"oai:ora.ox.ac.uk:uuid:ebfe6af4-025d-4de3-93f0-f9df6a031444\"},\"trust\":0.53517675}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2720271"},"target_publication_author_list":{"type":"LIST_STRING","value":["Waldstein, S. M.","Hickey, D.","Mahmud, I.","Kiire, C. A.","Charbel Issa, P.","Chong, N. V."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:ebfe6af4-025d-4de3-93f0-f9df6a031444"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Clinical Study"]},"trust":{"type":"FLOAT","value":0.53517675},"target_publication_title":{"type":"STRING","value":"Two-wavelength fundus autofluorescence and macular pigment optical density imaging in diabetic macular oedema"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2720271\",\"titles\":[\"Two-wavelength fundus autofluorescence and macular pigment optical density imaging in diabetic macular oedema\"],\"abstracts\":[\"\",\"PURPOSE: To evaluate the application of 488 and 514 nm fundus autofluorescence (FAF) and macular pigment optical density (MPOD) imaging in diabetic macular oedema (DMO) and to demonstrate the typical imaging features. PATIENTS AND METHODS: A hundred and twenty-five eyes of 71 consecutive patients with diabetic retinopathy who underwent examination at a specialist university clinic employing a modified Heidelberg Retina Angiograph, using two different light sources of 488 and 514 nm wavelength, were retrospectively reviewed. MPOD images were calculated using modified Heidelberg Eye Explorer software. All images were evaluated by two independent masked graders. Features from FAF and MPOD images were correlated with optical coherence tomography (OCT) imaging findings and inter-grader variability, sensitivity and specificity were calculated using OCT as reference. RESULTS: Sixty-seven eyes had DMO on OCT. The inter-grader variability was 0.84 for 488 nm FAF, 0.63 for 514 nm FAF and 0.79 for MPOD imaging. Sensitivity and specificity for detection of DMO were 80.6 and 89.7% for 488 nm FAF; 55.2 and 94.8% for 514 nm FAF; and 80.6 and 91.4% for MPOD imaging. In 488 nm FAF and MPOD imaging, DMO was better visualised in comparison with 514 nm FAF imaging, P\\u003c0.01. MPOD revealed displacement of macular pigment by intraretinal cysts. CONCLUSION: MPOD imaging, and particularly its combination with 488 nm and 514 nm FAF, provides a valuable addition to OCT in the evaluation of DMO and is clinically useful in rapid en-face assessment of the central macula.\"],\"language\":\"eng\",\"subjects\":[\"Clinical Study\"],\"creators\":[\"Waldstein, S. M.\",\"Hickey, D.\",\"Mahmud, I.\",\"Kiire, C. A.\",\"Charbel Issa, P.\",\"Chong, N. V.\"],\"publicationdate\":\"2012-06-15\",\"publisher\":\"Nature Publishing Group\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC3420036\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3420036\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"PURPOSE: To evaluate the application of 488 and 514 nm fundus autofluorescence (FAF) and macular pigment optical density (MPOD) imaging in diabetic macular oedema (DMO) and to demonstrate the typical imaging features. PATIENTS AND METHODS: A hundred and twenty-five eyes of 71 consecutive patients with diabetic retinopathy who underwent examination at a specialist university clinic employing a modified Heidelberg Retina Angiograph, using two different light sources of 488 and 514 nm wavelength, were retrospectively reviewed. MPOD images were calculated using modified Heidelberg Eye Explorer software. All images were evaluated by two independent masked graders. Features from FAF and MPOD images were correlated with optical coherence tomography (OCT) imaging findings and inter-grader variability, sensitivity and specificity were calculated using OCT as reference. RESULTS: Sixty-seven eyes had DMO on OCT. The inter-grader variability was 0.84 for 488 nm FAF, 0.63 for 514 nm FAF and 0.79 for MPOD imaging. Sensitivity and specificity for detection of DMO were 80.6 and 89.7% for 488 nm FAF; 55.2 and 94.8% for 514 nm FAF; and 80.6 and 91.4% for MPOD imaging. In 488 nm FAF and MPOD imaging, DMO was better visualised in comparison with 514 nm FAF imaging, P\\u003c0.01. MPOD revealed displacement of macular pigment by intraretinal cysts. CONCLUSION: MPOD imaging, and particularly its combination with 488 nm and 514 nm FAF, provides a valuable addition to OCT in the evaluation of DMO and is clinically useful in rapid en-face assessment of the central macula.\"]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:ebfe6af4-025d-4de3-93f0-f9df6a031444\",\"id\":\"oai:ora.ox.ac.uk:uuid:ebfe6af4-025d-4de3-93f0-f9df6a031444\"},\"trust\":0.67299837}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2720271"},"target_publication_author_list":{"type":"LIST_STRING","value":["Waldstein, S. M.","Hickey, D.","Mahmud, I.","Kiire, C. A.","Charbel Issa, P.","Chong, N. V."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:ebfe6af4-025d-4de3-93f0-f9df6a031444"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Clinical Study"]},"trust":{"type":"FLOAT","value":0.67299837},"target_publication_title":{"type":"STRING","value":"Two-wavelength fundus autofluorescence and macular pigment optical density imaging in diabetic macular oedema"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:ebfe6af4-025d-4de3-93f0-f9df6a031444\",\"titles\":[\"Two-wavelength fundus autofluorescence and macular pigment optical density imaging in diabetic macular oedema.\"],\"abstracts\":[\"PURPOSE: To evaluate the application of 488 and 514 nm fundus autofluorescence (FAF) and macular pigment optical density (MPOD) imaging in diabetic macular oedema (DMO) and to demonstrate the typical imaging features. PATIENTS AND METHODS: A hundred and twenty-five eyes of 71 consecutive patients with diabetic retinopathy who underwent examination at a specialist university clinic employing a modified Heidelberg Retina Angiograph, using two different light sources of 488 and 514 nm wavelength, were retrospectively reviewed. MPOD images were calculated using modified Heidelberg Eye Explorer software. All images were evaluated by two independent masked graders. Features from FAF and MPOD images were correlated with optical coherence tomography (OCT) imaging findings and inter-grader variability, sensitivity and specificity were calculated using OCT as reference. RESULTS: Sixty-seven eyes had DMO on OCT. The inter-grader variability was 0.84 for 488 nm FAF, 0.63 for 514 nm FAF and 0.79 for MPOD imaging. Sensitivity and specificity for detection of DMO were 80.6 and 89.7% for 488 nm FAF; 55.2 and 94.8% for 514 nm FAF; and 80.6 and 91.4% for MPOD imaging. In 488 nm FAF and MPOD imaging, DMO was better visualised in comparison with 514 nm FAF imaging, P\\u003c0.01. MPOD revealed displacement of macular pigment by intraretinal cysts. CONCLUSION: MPOD imaging, and particularly its combination with 488 nm and 514 nm FAF, provides a valuable addition to OCT in the evaluation of DMO and is clinically useful in rapid en-face assessment of the central macula.\"],\"language\":\"eng\",\"subjects\":[\"Humans\",\"Diabetic Retinopathy\",\"Xanthophylls\",\"Lutein\",\"Retinal Pigments\",\"Tomography, Optical Coherence\",\"Fluorescein Angiography\",\"Ophthalmoscopy\",\"Densitometry\",\"Sensitivity and Specificity\",\"Retrospective Studies\",\"Macular Edema\",\"Observer Variation\",\"Middle Aged\",\"Cross-Sectional Studies\",\"Female\",\"Male\"],\"creators\":[\"Waldstein, Sm\",\"Hickey, D.\",\"Mahmud, I.\",\"Kiire, Ca\",\"Charbel Issa, P.\",\"Chong, Nv\"],\"publicationdate\":\"2012-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1038/eye.2012.100\",\"type\":\"doi\"},{\"value\":\"PMC3420036\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:ebfe6af4-025d-4de3-93f0-f9df6a031444\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3420036\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3420036\",\"id\":\"oai:europepmc.org:2720271\"},\"trust\":0.46089154}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:ebfe6af4-025d-4de3-93f0-f9df6a031444"},"target_publication_author_list":{"type":"LIST_STRING","value":["Waldstein, Sm","Hickey, D.","Mahmud, I.","Kiire, Ca","Charbel Issa, P.","Chong, Nv"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2720271"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Humans","Diabetic Retinopathy","Xanthophylls","Lutein","Retinal Pigments","Tomography, Optical Coherence","Fluorescein Angiography","Ophthalmoscopy","Densitometry","Sensitivity and Specificity","Retrospective Studies","Macular Edema","Observer Variation","Middle Aged","Cross-Sectional Studies","Female","Male"]},"trust":{"type":"FLOAT","value":0.46089154},"target_publication_title":{"type":"STRING","value":"Two-wavelength fundus autofluorescence and macular pigment optical density imaging in diabetic macular oedema."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2012-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:154469\",\"titles\":[\"The quantum capacity is well defined without encodings\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"-\"],\"creators\":[\"Barnum, H.\",\"Smolin, J. A.\",\"Terhal, B. M.\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://dare.uva.nl/record/154469\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/11245/1.145227\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/11245/1.145227\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/11245/1.145227\",\"id\":\"uvapub:oai:uva.nl:145227\"},\"trust\":0.7682848}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:154469"},"target_publication_author_list":{"type":"LIST_STRING","value":["Barnum, H.","Smolin, J. A.","Terhal, B. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uvapub:oai:uva.nl:145227"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["-"]},"trust":{"type":"FLOAT","value":0.7682848},"target_publication_title":{"type":"STRING","value":"The quantum capacity is well defined without encodings"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberwo:10750\",\"titles\":[\"Rule of Law, Democracy, Openness, and Income: Estimating the Interrelationships\"],\"abstracts\":[\"We estimate the interrelationships among economic institutions, political institutions, openness, and income levels, using identification through heteroskedasticity (IH). We split our cross-national dataset into two sub-samples: (i) colonies versus non-colonies; and (ii) continents aligned on an East-West versus those aligned on a North-South axis. We exploit the difference in the structural variances in these two sub-samples to gain identification. We find that democracy and the rule of law are both good for economic performance, but the latter has a much stronger impact on incomes. Openness (trade/GDP) has a negative impact on income levels and democracy, but a positive effect on rule of law. Higher income produces greater openness and better institutions, but these effects are not very strong. Rule of law and democracy tend to be mutually reinforcing.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Roberto Rigobon\",\"Dani Rodrik\"],\"publicationdate\":\"2004-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/papers/w10750.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d4653\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d4653\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d4653\",\"id\":\"oai:RePEc:cpr:ceprdp:4653\"},\"trust\":0.76184267}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberwo:10750"},"target_publication_author_list":{"type":"LIST_STRING","value":["Roberto Rigobon","Dani Rodrik"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cpr:ceprdp:4653"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.76184267},"target_publication_title":{"type":"STRING","value":"Rule of Law, Democracy, Openness, and Income: Estimating the Interrelationships"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cpr:ceprdp:4653\",\"titles\":[\"Rule of Law, Democracy, Openness and Income: Estimating the Interrelationships\"],\"abstracts\":[\"We estimate the interrelationships among economic institutions, political institutions, openness, and income levels, using identification through heteroskedasticity (IH). We split our cross-national dataset into two sub-samples: (i) colonies versus non-colonies; and (ii) continents aligned on an East-West versus those aligned on a North-South axis. We exploit the difference in the structural variances in these two sub-samples to gain identification. We find that democracy and the rule of law are both good for economic performance, but the latter has a much stronger impact on incomes. Openness (trade/GDP) has a negative impact on income levels and democracy, but a positive effect on rule of law. Higher income produces greater openness and better institutions, but these effects are not very strong. Rule of law and democracy tend to be mutually reinforcing.\"],\"language\":\"und\",\"subjects\":[\"growth\"],\"creators\":[\"Rigobon, Roberto\",\"Rodrik, Dani\"],\"publicationdate\":\"2004-10-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d4653\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.nber.org/papers/w10750.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.nber.org/papers/w10750.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.nber.org/papers/w10750.pdf\",\"id\":\"oai:RePEc:nbr:nberwo:10750\"},\"trust\":0.78172624}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cpr:ceprdp:4653"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rigobon, Roberto","Rodrik, Dani"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:nbr:nberwo:10750"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["growth"]},"trust":{"type":"FLOAT","value":0.78172624},"target_publication_title":{"type":"STRING","value":"Rule of Law, Democracy, Openness and Income: Estimating the Interrelationships"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:iie:wpaper:wp12-10\",\"titles\":[\"The Dollar and Its Discontents\"],\"abstracts\":[\"Has the US dollar delivered the benefit that the rest of the world is expecting from its holdings of international liquidity? US government debt has been liquid and safe, and it is supplied in sufficient quantity. But it has given a low return to the countries that accumulated the most reserves, especially when those returns are measured in terms of the countries\\u0027 own consumption. Jeanne argues that countries that accumulate the most reserves should expect a low return in terms of their own consumption and that international monetary reform can do little to change that fact.\"],\"language\":\"und\",\"subjects\":[\"International monetary system, Dollar, Foreign exchange reserves, Triffin dilemma\"],\"creators\":[\"Olivier Jeanne\"],\"publicationdate\":\"2012-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.piie.com/publications/wp/wp12-10.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.nber.org/papers/w18143.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.nber.org/papers/w18143.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.nber.org/papers/w18143.pdf\",\"id\":\"oai:RePEc:nbr:nberwo:18143\"},\"trust\":0.792634}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:iie:wpaper:wp12-10"},"target_publication_author_list":{"type":"LIST_STRING","value":["Olivier Jeanne"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:nbr:nberwo:18143"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["International monetary system, Dollar, Foreign exchange reserves, Triffin dilemma"]},"trust":{"type":"FLOAT","value":0.792634},"target_publication_title":{"type":"STRING","value":"The Dollar and Its Discontents"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:iie:wpaper:wp12-10\",\"titles\":[\"The Dollar and Its Discontents\"],\"abstracts\":[\"Has the US dollar delivered the benefit that the rest of the world is expecting from its holdings of international liquidity? US government debt has been liquid and safe, and it is supplied in sufficient quantity. But it has given a low return to the countries that accumulated the most reserves, especially when those returns are measured in terms of the countries\\u0027 own consumption. Jeanne argues that countries that accumulate the most reserves should expect a low return in terms of their own consumption and that international monetary reform can do little to change that fact.\"],\"language\":\"und\",\"subjects\":[\"International monetary system, Dollar, Foreign exchange reserves, Triffin dilemma\"],\"creators\":[\"Olivier Jeanne\"],\"publicationdate\":\"2012-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.piie.com/publications/wp/wp12-10.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9007\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9007\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9007\",\"id\":\"oai:RePEc:cpr:ceprdp:9007\"},\"trust\":0.98497397}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:iie:wpaper:wp12-10"},"target_publication_author_list":{"type":"LIST_STRING","value":["Olivier Jeanne"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cpr:ceprdp:9007"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["International monetary system, Dollar, Foreign exchange reserves, Triffin dilemma"]},"trust":{"type":"FLOAT","value":0.98497397},"target_publication_title":{"type":"STRING","value":"The Dollar and Its Discontents"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberwo:18143\",\"titles\":[\"The Dollar and its Discontents\"],\"abstracts\":[\"Has the US dollar delivered the benefits that the rest of the world is expecting from its holdings of international liquidity? US government debt has been liquid and safe, and it is supplied in sufficient quantity. But it has given a low return to the countries that accumulated the most reserves, especially when those returns are measured in terms of the countries\\u0027 own consumption. I argue in this paper that the countries that accumulate the most reserves should expect a low return in terms of their own consumption, and that there is little that international monetary reform can do to change that fact.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Olivier Jeanne\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/papers/w18143.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.piie.com/publications/wp/wp12-10.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.piie.com/publications/wp/wp12-10.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.piie.com/publications/wp/wp12-10.pdf\",\"id\":\"oai:RePEc:iie:wpaper:wp12-10\"},\"trust\":0.7487648}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberwo:18143"},"target_publication_author_list":{"type":"LIST_STRING","value":["Olivier Jeanne"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:iie:wpaper:wp12-10"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.7487648},"target_publication_title":{"type":"STRING","value":"The Dollar and its Discontents"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberwo:18143\",\"titles\":[\"The Dollar and its Discontents\"],\"abstracts\":[\"Has the US dollar delivered the benefits that the rest of the world is expecting from its holdings of international liquidity? US government debt has been liquid and safe, and it is supplied in sufficient quantity. But it has given a low return to the countries that accumulated the most reserves, especially when those returns are measured in terms of the countries\\u0027 own consumption. I argue in this paper that the countries that accumulate the most reserves should expect a low return in terms of their own consumption, and that there is little that international monetary reform can do to change that fact.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Olivier Jeanne\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/papers/w18143.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9007\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9007\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9007\",\"id\":\"oai:RePEc:cpr:ceprdp:9007\"},\"trust\":0.8109323}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberwo:18143"},"target_publication_author_list":{"type":"LIST_STRING","value":["Olivier Jeanne"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cpr:ceprdp:9007"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.8109323},"target_publication_title":{"type":"STRING","value":"The Dollar and its Discontents"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cpr:ceprdp:9007\",\"titles\":[\"The Dollar and its Discontents\"],\"abstracts\":[\"Has the US dollar delivered the benefits that the rest of the world is expecting from its holdings of international liquidity? US government debt has been liquid and safe, and it is supplied in sufficient quantity. But it has given a low return to the countries that accumulated the most reserves, especially when those returns are measured in terms of the countries\\u0027 own consumption. I argue in this paper that the countries that accumulate the most reserves should expect a low return in terms of their own consumption, and that there is little that international monetary reform can do to change that fact.\"],\"language\":\"und\",\"subjects\":[\"dollar; foreign exchange reserves; international monetary system; Triffin dilemma\"],\"creators\":[\"Jeanne, Olivier\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9007\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.piie.com/publications/wp/wp12-10.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.piie.com/publications/wp/wp12-10.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.piie.com/publications/wp/wp12-10.pdf\",\"id\":\"oai:RePEc:iie:wpaper:wp12-10\"},\"trust\":0.18832266}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cpr:ceprdp:9007"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jeanne, Olivier"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:iie:wpaper:wp12-10"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["dollar; foreign exchange reserves; international monetary system; Triffin dilemma"]},"trust":{"type":"FLOAT","value":0.18832266},"target_publication_title":{"type":"STRING","value":"The Dollar and its Discontents"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cpr:ceprdp:9007\",\"titles\":[\"The Dollar and its Discontents\"],\"abstracts\":[\"Has the US dollar delivered the benefits that the rest of the world is expecting from its holdings of international liquidity? US government debt has been liquid and safe, and it is supplied in sufficient quantity. But it has given a low return to the countries that accumulated the most reserves, especially when those returns are measured in terms of the countries\\u0027 own consumption. I argue in this paper that the countries that accumulate the most reserves should expect a low return in terms of their own consumption, and that there is little that international monetary reform can do to change that fact.\"],\"language\":\"und\",\"subjects\":[\"dollar; foreign exchange reserves; international monetary system; Triffin dilemma\"],\"creators\":[\"Jeanne, Olivier\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9007\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.nber.org/papers/w18143.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.nber.org/papers/w18143.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.nber.org/papers/w18143.pdf\",\"id\":\"oai:RePEc:nbr:nberwo:18143\"},\"trust\":0.95575833}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cpr:ceprdp:9007"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jeanne, Olivier"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:nbr:nberwo:18143"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["dollar; foreign exchange reserves; international monetary system; Triffin dilemma"]},"trust":{"type":"FLOAT","value":0.95575833},"target_publication_title":{"type":"STRING","value":"The Dollar and its Discontents"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1807493\",\"titles\":[\"Target therapy in gastrointestinal tract sarcoma: What is new?\"],\"abstracts\":[\"Soft tissue sarcoma are rare tumors arising mostly from embryonic mesoderm, that can affect almost any part of the human body, including the gastrointestinal tract. The prognosis associated with soft tissue sarcoma is still poor, mainly because of the low efficacy of traditional approaches based on surgery and chemotherapy. As a result of genetic and molecular analysis, several new target therapies have been developed, leading to a significant improvement in the survival of patients affected by advanced disease. In this review we aim to explore the therapeutic potential and benefit of target therapy in the management of gastrointestinal soft tissue sarcoma and the possible complications or pitfalls of such an approach.\"],\"language\":\"eng\",\"subjects\":[\"Editorial\"],\"creators\":[\"Vincenzi, Bruno\",\"Frezza, Anna Maria\",\"Santini, Daniele\",\"Tonini, Giuseppe\"],\"publicationdate\":\"2010-01-15\",\"publisher\":\"Baishideng Publishing Group Co., Limited\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC2999157\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2999157\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.wjgnet.com/1948-5204/full/v2/i1/1.htm\",\"license\":\"OPEN\",\"hostedby\":\"World Journal of Gastrointestinal Oncology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.wjgnet.com/1948-5204/full/v2/i1/1.htm\",\"license\":\"OPEN\",\"hostedby\":\"World Journal of Gastrointestinal Oncology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.wjgnet.com/1948-5204/full/v2/i1/1.htm\",\"id\":\"oai:doaj.org/article:eb539b13e9064cc3bbe20fa5eccca401\"},\"trust\":0.86327183}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1807493"},"target_publication_author_list":{"type":"LIST_STRING","value":["Vincenzi, Bruno","Frezza, Anna Maria","Santini, Daniele","Tonini, Giuseppe"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:eb539b13e9064cc3bbe20fa5eccca401"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Editorial"]},"trust":{"type":"FLOAT","value":0.86327183},"target_publication_title":{"type":"STRING","value":"Target therapy in gastrointestinal tract sarcoma: What is new?"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:tudelft.nl:uuid:6f541025-fc4d-464f-bb88-b920bac2c4a3\",\"titles\":[\"Spreading of particles in some displacement probability field:\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Soerjadi, R.\"],\"publicationdate\":\"1986-11-11\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Hermans, A.J.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"TU Delft Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://resolver.tudelft.nl/uuid:6f541025-fc4d-464f-bb88-b920bac2c4a3\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"http://resolver.tudelft.nl/uuid:6f541025-fc4d-464f-bb88-b920bac2c4a3\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://resolver.tudelft.nl/uuid:6f541025-fc4d-464f-bb88-b920bac2c4a3\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://resolver.tudelft.nl/uuid:6f541025-fc4d-464f-bb88-b920bac2c4a3\",\"id\":\"tud:oai:tudelft.nl:uuid:6f541025-fc4d-464f-bb88-b920bac2c4a3\"},\"trust\":0.9860249}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"TU Delft Repository"},"target_publication_id":{"type":"STRING","value":"oai:tudelft.nl:uuid:6f541025-fc4d-464f-bb88-b920bac2c4a3"},"target_publication_author_list":{"type":"LIST_STRING","value":["Soerjadi, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tud:oai:tudelft.nl:uuid:6f541025-fc4d-464f-bb88-b920bac2c4a3"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.9860249},"target_publication_title":{"type":"STRING","value":"Spreading of particles in some displacement probability field:"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1986-11-11"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::c9892a989183de32e976c6f04e700201"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2569404\",\"titles\":[\"Maternal recall of breastfeeding duration twenty years after delivery\"],\"abstracts\":[\"Background Studies on the health benefits from breastfeeding often rely on maternal recall of breastfeeding. Although short-term maternal recall has been found to be quite accurate, less is known about long-term accuracy. The objective of this study was to assess the accuracy of long-term maternal recall of breastfeeding duration. Methods In a prospective study of pregnancy and birth outcome, detailed information on breastfeeding during the child’s first year of life was collected from a cohort of Norwegian women who gave birth in 1986–88. Among 374 of the participants, data on breastfeeding initiation and duration were compared to recalled data obtained from mailed questionnaires some 20 years later. Intraclass correlation coefficient (ICC), Bland-Altman plot, and Kappa statistics were used to assess the agreement between the two sources of data. Logistic regression was used to assess predictors of misreporting breastfeeding duration by more than one month. Results Recorded and recalled breastfeeding duration were strongly correlated (ICC\\u003d0.82, p \\u003c 0.001). Nearly two thirds of women recalled their breastfeeding to within one month. Recall data showed a modest median overestimation of about 2 weeks. There were no apparent systematic discrepancies between the two sources of information, but recall error was predicted by the age when infants were introduced to another kind of milk. Across categories of breastfeeding, the overall weighted Kappa statistic showed an almost perfect agreement (κ \\u003d 0.85, 95% confidence interval [CI] 0.82 – 0.88). Conclusion Breastfeeding duration was recalled quite accurately 20 years after mothers gave birth in a population where breastfeeding is common and its duration long.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\",\"Breastfeeding\",\"Epidemiology\",\"Long-term recall\",\"Mothers\",\"Validity\"],\"creators\":[\"Natland, Siv Tone\",\"Andersen, Lene Frost\",\"Nilsen, Tom Ivar Lund\",\"Forsmo, Siri\",\"Jacobsen, Geir W.\"],\"publicationdate\":\"2012-11-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"BMC Medical Research Methodology\",\"issn\":\"\",\"eissn\":\"1471-2288\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1471-2288-12-179\",\"type\":\"doi\"},{\"value\":\"PMC3568415\",\"type\":\"pmc\"},{\"value\":\"23176436\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3568415\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.biomedcentral.com/1471-2288/12/179\",\"license\":\"OPEN\",\"hostedby\":\"BMC Medical Research Methodology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.biomedcentral.com/1471-2288/12/179\",\"license\":\"OPEN\",\"hostedby\":\"BMC Medical Research Methodology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.biomedcentral.com/1471-2288/12/179\",\"id\":\"oai:doaj.org/article:2741f6ec5a2c4974bfb9fac0f36a17d0\"},\"trust\":0.8592377}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2569404"},"target_publication_author_list":{"type":"LIST_STRING","value":["Natland, Siv Tone","Andersen, Lene Frost","Nilsen, Tom Ivar Lund","Forsmo, Siri","Jacobsen, Geir W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:2741f6ec5a2c4974bfb9fac0f36a17d0"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article","Breastfeeding","Epidemiology","Long-term recall","Mothers","Validity"]},"trust":{"type":"FLOAT","value":0.8592377},"target_publication_title":{"type":"STRING","value":"Maternal recall of breastfeeding duration twenty years after delivery"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00285531v1\",\"titles\":[\"La syllabe phonétique et phonologique : une introduction\"],\"abstracts\":[\"Autorisation No.1249 : \\u003cBR /\\u003eTIPA est la revue du Laboratoire Parole et Langage\",\"In this paper, rather addressed to students and linguists few experienced in the topic of syllable, we try to summarize the main various phonetic and phonological approaches which allow to consider the syllable as an essential linguistic unit. If it is easy enough to be convinced by our linguistic intuition or culture of the reality of the syllable, its scientific definition is far more difficult to state. Although a constellation of important and convergent psycholinguistic, phonetic and phonological facts contribute to place the syllable in the core of the speech processes, its physical and cognitive nature still remains widely discussed in the framework of linguistic theories. Briefly, we try to show here which main solutions have been proposed to resolve this problem, which advantages supply the fact to take the syllable into account to the phonological knowledge, and which main open questions are closely related to the notion of syllable.\",\"Dans cet article destiné à un public étudiant et de linguistes peu familiarisés avec la notion de syllabe, nous nous proposons de retracer les grandes lignes des approches phonétiques et phonologiques qui ont amené à considérer la syllabe comme une unité linguistique fondamentale. Si notre intuition ou notre culture linguistique nous porte à nous convaincre relativement facilement de son existence, sa définition scientifique est beaucoup plus problématique. Bien qu\\u0027un faisceau de faits psychologiques, phonétiques et phonologiques importants et convergents concourent à lui accorder une place centrale dans le traitement de la parole, sa nature physique et cognitive reste encore largement discutée dans le cadre des représentations linguistiques. Nous essayerons donc ici de voir succinctement quelles sont les principales solutions qui ont été proposées à cette question, quels avantages théoriques revêt la prise en compte de la syllabe pour les connaissances phonologiques et quelles questions majeures restent rattachées à cette problématique.\"],\"language\":\"fra/fre\",\"subjects\":[\"resyllabation\",\"syllabation\",\"syllabe\",\"phonologie\",\"phonétique\",\"[SHS.LANGUE] Humanities and Social Sciences/Linguistics\"],\"creators\":[\"Meynadier, Yohann\"],\"publicationdate\":\"2001-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire Parole et Langage (LPL) ; Université de Provence - Aix-Marseille I - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00285531\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00285531\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00285531\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00285531\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00285531\"},\"trust\":0.7717246}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00285531v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Meynadier, Yohann"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00285531"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["resyllabation","syllabation","syllabe","phonologie","phonétique","[SHS.LANGUE] Humanities and Social Sciences/Linguistics"]},"trust":{"type":"FLOAT","value":0.7717246},"target_publication_title":{"type":"STRING","value":"La syllabe phonétique et phonologique : une introduction"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2001-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00285531\",\"titles\":[\"La syllabe phonétique et phonologique : une introduction\"],\"abstracts\":[\"Dans cet article destiné à un public étudiant et de linguistes peu familiarisés avec la notion de syllabe, nous nous proposons de retracer les grandes lignes des approches phonétiques et phonologiques qui ont amené à considérer la syllabe comme une unité linguistique fondamentale. Si notre intuition ou notre culture linguistique nous porte à nous convaincre relativement facilement de son existence, sa définition scientifique est beaucoup plus problématique. Bien qu\\u0027un faisceau de faits psychologiques, phonétiques et phonologiques importants et convergents concourent à lui accorder une place centrale dans le traitement de la parole, sa nature physique et cognitive reste encore largement discutée dans le cadre des représentations linguistiques. Nous essayerons donc ici de voir succinctement quelles sont les principales solutions qui ont été proposées à cette question, quels avantages théoriques revêt la prise en compte de la syllabe pour les connaissances phonologiques et quelles questions majeures restent rattachées à cette problématique.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:LANGUE] Humanities and Social Sciences/Linguistics\",\"[SHS:LANGUE] Sciences de l\\u0027Homme et Société/Linguistique\",\"syllabe\",\"syllabation\",\"resyllabation\",\"phonologie\",\"phonétique\"],\"creators\":[\"Meynadier, Yohann\"],\"publicationdate\":\"2001-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00285531\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00285531\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00285531\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00285531\",\"id\":\"oai:HAL:hal-00285531v1\"},\"trust\":0.97649205}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00285531"},"target_publication_author_list":{"type":"LIST_STRING","value":["Meynadier, Yohann"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00285531v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:LANGUE] Humanities and Social Sciences/Linguistics","[SHS:LANGUE] Sciences de l\u0027Homme et Société/Linguistique","syllabe","syllabation","resyllabation","phonologie","phonétique"]},"trust":{"type":"FLOAT","value":0.97649205},"target_publication_title":{"type":"STRING","value":"La syllabe phonétique et phonologique : une introduction"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2001-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1957321\",\"titles\":[\"Targeted Immunotherapy with Rituximab Leads to a Transient Alteration of the IgG Autoantibody Profile in Pemphigus Vulgaris\"],\"abstracts\":[\"In pemphigus vulgaris (PV), IgG autoantibodies against the ectodomain of desmoglein 3 (Dsg3) have been shown to be directly responsible for the loss of keratinocyteadhesion. The aim of the present study was to study the effect of the B cell depleting anti-CD20 monoclonal antibody, rituximab, on the profile of pathogenic IgG against distinct regions of the Dsg3 ectodomain in 22 PV patients who were followed up clinically and serologically by Dsg3 ELISA over 12-24 months. Prior to rituximab, all the 22 PV patients showed IgG against Dsg3 (Dsc3EC1-5). Specifically, 14/22 showed IgG reactivity against the Dsg3EC1 subdomain, 5/22 patients against Dsg3EC2, 7/22 against Dsg3EC3, 11/22 against Dsg3EC4, and 2/22 against Dsg3EC5. Within 6 months after rituximab, all the patients showed significant clinical improvement and reduced IgG against Dsg3 (5/22) and the various subdomains, that is, Dsg3EC1 (7/22), Dsg3EC2 (3/22), Dsg3EC3 (2/22), sg3EC4 (2/22), and Dsg3EC5 (0/22). During the entire observation period, 6/22 PV patients experienced a clinical relapse which was associated with the reappearance of IgG against previously recognized Dsg3 subdomains, particularly against the Dsg3EC1. Thus, in PV, rituximab only temporarily depletes pathogenic B cell responses against distinct subdomains of Dsg3 which reappear upon clinical relapse.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Müller, Ralf\",\"Hunzelmann, Nicolas\",\"Baur, Vera\",\"Siebenhaar, Guido\",\"Wenzel, Elke\",\"Eming, Rüdiger\",\"Niedermeier, Andrea\",\"Musette, Philippe\",\"Joly, Pascal\",\"Hertl, Michael\"],\"publicationdate\":\"2010-06-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Dermatology Research and Practice\",\"issn\":\"1687-6105\",\"eissn\":\"1687-6113\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2010/321950\",\"type\":\"doi\"},{\"value\":\"PMC2909726\",\"type\":\"pmc\"},{\"value\":\"20671975\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2909726\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2010/321950\",\"license\":\"OPEN\",\"hostedby\":\"Dermatology Research and Practice\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2010/321950\",\"license\":\"OPEN\",\"hostedby\":\"Dermatology Research and Practice\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2010/321950\",\"id\":\"oai:doaj.org/article:7898ee40cd7943caa30a6c25de985a15\"},\"trust\":0.45605117}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1957321"},"target_publication_author_list":{"type":"LIST_STRING","value":["Müller, Ralf","Hunzelmann, Nicolas","Baur, Vera","Siebenhaar, Guido","Wenzel, Elke","Eming, Rüdiger","Niedermeier, Andrea","Musette, Philippe","Joly, Pascal","Hertl, Michael"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:7898ee40cd7943caa30a6c25de985a15"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.45605117},"target_publication_title":{"type":"STRING","value":"Targeted Immunotherapy with Rituximab Leads to a Transient Alteration of the IgG Autoantibody Profile in Pemphigus Vulgaris"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2010-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:292190\",\"titles\":[\"Phase variation of type 1 fimbriae : a single cell investigation\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Adiciptaningrum, A. M.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Frenkel, D.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://dare.uva.nl/record/292190\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"http://hdl.handle.net/11245/1.293849\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/11245/1.293849\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/11245/1.293849\",\"id\":\"uvapub:oai:uva.nl:293849\"},\"trust\":0.036426008}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:292190"},"target_publication_author_list":{"type":"LIST_STRING","value":["Adiciptaningrum, A. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uvapub:oai:uva.nl:293849"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.036426008},"target_publication_title":{"type":"STRING","value":"Phase variation of type 1 fimbriae : a single cell investigation"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2070949\",\"titles\":[\"Highly Efficient Stable Expression of Indoleamine 2,3 Dioxygenase Gene in Primary Fibroblasts\"],\"abstracts\":[\"Indoleamine 2,3 dioxygenase (IDO) is a potent immunomodulatory enzyme that has recently attracted significant attention for its potential application as an inducer of immunotolerance in transplantation. We have previously demonstrated that a collagen matrix populated with IDO-expressing fibroblasts can be applied successfully in suppressing islet allogeneic immune response. Meanwhile, a critical aspect of such immunological intervention relies largely on effective long-term expression of the IDO gene. Moreover, gene manipulation of primary cells is known to be challenging due to unsatisfactory expression of the exogenous gene. In this study, a lentiviral gene delivery system has been employed to transduce primary fibroblasts. We used polybrene to efficiently deliver the IDO gene into primary fibroblasts and showed a significant increase (about tenfold) in the rate of gene transfection. In addition, by the use of fluorescence-activated cell sorting, a 95% pure population of IDO-expressing fibroblasts was successfully obtained. The efficiency of the IDO expression and the activity of the enzyme have been confirmed by Western blotting, fluorescence-activated cell sorting analysis, and Kynurenine assay, respectively. The findings of this study revealed simple and effective strategies through which an efficient and stable expression of IDO can be achieved for primary cells which, in turn, significantly improves its potential as a tool for achieving immunotolerance in different types of transplantation.\"],\"language\":\"eng\",\"subjects\":[\"Research\",\"Lentiviral vector\",\"Indoleamine 2\",\"3 dioxygenase\",\"Primary fibroblast\",\"Transplantation\",\"Immunogenicity\"],\"creators\":[\"Rezakhanlou, Alireza Moeen\",\"Habibi, Darya\",\"Lai, Amy\",\"Jalili, Reza B.\",\"Ong, Christopher J.\",\"Ghahary, Aziz\"],\"publicationdate\":\"2010-03-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Biological Procedures Online\",\"issn\":\"\",\"eissn\":\"1480-9222\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1007/s12575-010-9028-6\",\"type\":\"doi\"},{\"value\":\"PMC3055793\",\"type\":\"pmc\"},{\"value\":\"21406070\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3055793\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.biologicalproceduresonline.com/content/12/1/107\",\"license\":\"OPEN\",\"hostedby\":\"Biological Procedures Online\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.biologicalproceduresonline.com/content/12/1/107\",\"license\":\"OPEN\",\"hostedby\":\"Biological Procedures Online\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.biologicalproceduresonline.com/content/12/1/107\",\"id\":\"oai:doaj.org/article:5ac60780482b4ce1ab260d6bb8584ddb\"},\"trust\":0.1284315}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2070949"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rezakhanlou, Alireza Moeen","Habibi, Darya","Lai, Amy","Jalili, Reza B.","Ong, Christopher J.","Ghahary, Aziz"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:5ac60780482b4ce1ab260d6bb8584ddb"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research","Lentiviral vector","Indoleamine 2","3 dioxygenase","Primary fibroblast","Transplantation","Immunogenicity"]},"trust":{"type":"FLOAT","value":0.1284315},"target_publication_title":{"type":"STRING","value":"Highly Efficient Stable Expression of Indoleamine 2,3 Dioxygenase Gene in Primary Fibroblasts"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2010-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2070949\",\"titles\":[\"Highly Efficient Stable Expression of Indoleamine 2,3 Dioxygenase Gene in Primary Fibroblasts\"],\"abstracts\":[\"Indoleamine 2,3 dioxygenase (IDO) is a potent immunomodulatory enzyme that has recently attracted significant attention for its potential application as an inducer of immunotolerance in transplantation. We have previously demonstrated that a collagen matrix populated with IDO-expressing fibroblasts can be applied successfully in suppressing islet allogeneic immune response. Meanwhile, a critical aspect of such immunological intervention relies largely on effective long-term expression of the IDO gene. Moreover, gene manipulation of primary cells is known to be challenging due to unsatisfactory expression of the exogenous gene. In this study, a lentiviral gene delivery system has been employed to transduce primary fibroblasts. We used polybrene to efficiently deliver the IDO gene into primary fibroblasts and showed a significant increase (about tenfold) in the rate of gene transfection. In addition, by the use of fluorescence-activated cell sorting, a 95% pure population of IDO-expressing fibroblasts was successfully obtained. The efficiency of the IDO expression and the activity of the enzyme have been confirmed by Western blotting, fluorescence-activated cell sorting analysis, and Kynurenine assay, respectively. The findings of this study revealed simple and effective strategies through which an efficient and stable expression of IDO can be achieved for primary cells which, in turn, significantly improves its potential as a tool for achieving immunotolerance in different types of transplantation.\"],\"language\":\"eng\",\"subjects\":[\"Research\",\"Lentiviral vector\",\"Indoleamine 2\",\"3 dioxygenase\",\"Primary fibroblast\",\"Transplantation\",\"Immunogenicity\"],\"creators\":[\"Rezakhanlou, Alireza Moeen\",\"Habibi, Darya\",\"Lai, Amy\",\"Jalili, Reza B.\",\"Ong, Christopher J.\",\"Ghahary, Aziz\"],\"publicationdate\":\"2010-03-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Biological Procedures Online\",\"issn\":\"\",\"eissn\":\"1480-9222\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1007/s12575-010-9028-6\",\"type\":\"doi\"},{\"value\":\"PMC3055793\",\"type\":\"pmc\"},{\"value\":\"21406070\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3055793\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.biologicalproceduresonline.com/content/12/1/9028\",\"license\":\"OPEN\",\"hostedby\":\"Biological Procedures Online\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.biologicalproceduresonline.com/content/12/1/9028\",\"license\":\"OPEN\",\"hostedby\":\"Biological Procedures Online\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.biologicalproceduresonline.com/content/12/1/9028\",\"id\":\"oai:doaj.org/article:35277c9bfe7145bf9ca3c6ef1cb984cb\"},\"trust\":0.2949168}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2070949"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rezakhanlou, Alireza Moeen","Habibi, Darya","Lai, Amy","Jalili, Reza B.","Ong, Christopher J.","Ghahary, Aziz"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:35277c9bfe7145bf9ca3c6ef1cb984cb"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research","Lentiviral vector","Indoleamine 2","3 dioxygenase","Primary fibroblast","Transplantation","Immunogenicity"]},"trust":{"type":"FLOAT","value":0.2949168},"target_publication_title":{"type":"STRING","value":"Highly Efficient Stable Expression of Indoleamine 2,3 Dioxygenase Gene in Primary Fibroblasts"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2010-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:128431\",\"titles\":[\"Autobiographical memory in semantic dementia: A longitudinal fMRI study\"],\"abstracts\":[\"Whilst patients with semantic dementia (SD) are known to suffer from semantic memory and language impairments, there is less agreement about whether memory for personal everyday experiences, autobiographical memory, is compromised. In healthy individuals, functional MRI (fMRI) has helped to delineate a consistent and distributed brain network associated with autobiographical recollection. Here we examined how the progression of SD affected the brain\\u0027s autobiographical memory network over time. We did this by testing autobiographical memory recall in a SD patient, AM, with fMRI on three occasions, each one year apart, during the course of his disease. At the outset, his autobiographical memory was intact. This was followed by a gradual loss in recollective quality that collapsed only late in the course of the disease. There was no evidence of a temporal gradient. Initially, AM\\u0027s recollection was supported by the classic autobiographical memory network, including atrophied tissue in hippocampus and temporal neocortex. This was subsequently augmented by up-regulation of other parts of the memory system, namely ventromedial and ventrolateral prefrontal cortex, right lateral temporal cortex, and precuneus. A final step-change in the areas engaged and the quality of recollection then preceded the collapse of autobiographical memory. Our findings inform theoretical debates about the role of the hippocampus and neocortical areas in supporting remote autobiographical memories. Furthermore, our results suggest it may be possible to define specific stages in SD-related memory decline, and that fMRI could complement MRI and neuropsychological measures in providing more precise prognostic and rehabilitative information for clinicians and carets. (C) 2009 Elsevier Ltd. All rights reserved.\"],\"language\":\"und\",\"subjects\":[\"Autobiographical memory, Semantic dementia, fMRI, Longitudinal, TEMPORAL-LOBE ATROPHY, RETROGRADE-AMNESIA, ALZHEIMERS-DISEASE, EPISODIC MEMORY, FUNCTIONAL NEUROANATOMY, FRONTOTEMPORAL DEMENTIA, HIPPOCAMPAL COMPLEX, REMOTE MEMORY, NEURAL BASIS, PATTERNS\"],\"creators\":[\"Maguire, E. A.\",\"Kumaran, D.\",\"Hassabis, D.\",\"Kopelman, M. D.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"PERGAMON-ELSEVIER SCIENCE LTD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"10.1016/j.neuropsychologia.2009.08.020\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/128431/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.neuropsychologia.2009.08.020\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2806951\",\"id\":\"oai:europepmc.org:1948441\"},\"trust\":0.21366638}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:128431"},"target_publication_author_list":{"type":"LIST_STRING","value":["Maguire, E. A.","Kumaran, D.","Hassabis, D.","Kopelman, M. D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1948441"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Autobiographical memory, Semantic dementia, fMRI, Longitudinal, TEMPORAL-LOBE ATROPHY, RETROGRADE-AMNESIA, ALZHEIMERS-DISEASE, EPISODIC MEMORY, FUNCTIONAL NEUROANATOMY, FRONTOTEMPORAL DEMENTIA, HIPPOCAMPAL COMPLEX, REMOTE MEMORY, NEURAL BASIS, PATTERNS"]},"trust":{"type":"FLOAT","value":0.21366638},"target_publication_title":{"type":"STRING","value":"Autobiographical memory in semantic dementia: A longitudinal fMRI study"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:128431\",\"titles\":[\"Autobiographical memory in semantic dementia: A longitudinal fMRI study\"],\"abstracts\":[\"Whilst patients with semantic dementia (SD) are known to suffer from semantic memory and language impairments, there is less agreement about whether memory for personal everyday experiences, autobiographical memory, is compromised. In healthy individuals, functional MRI (fMRI) has helped to delineate a consistent and distributed brain network associated with autobiographical recollection. Here we examined how the progression of SD affected the brain\\u0027s autobiographical memory network over time. We did this by testing autobiographical memory recall in a SD patient, AM, with fMRI on three occasions, each one year apart, during the course of his disease. At the outset, his autobiographical memory was intact. This was followed by a gradual loss in recollective quality that collapsed only late in the course of the disease. There was no evidence of a temporal gradient. Initially, AM\\u0027s recollection was supported by the classic autobiographical memory network, including atrophied tissue in hippocampus and temporal neocortex. This was subsequently augmented by up-regulation of other parts of the memory system, namely ventromedial and ventrolateral prefrontal cortex, right lateral temporal cortex, and precuneus. A final step-change in the areas engaged and the quality of recollection then preceded the collapse of autobiographical memory. Our findings inform theoretical debates about the role of the hippocampus and neocortical areas in supporting remote autobiographical memories. Furthermore, our results suggest it may be possible to define specific stages in SD-related memory decline, and that fMRI could complement MRI and neuropsychological measures in providing more precise prognostic and rehabilitative information for clinicians and carets. (C) 2009 Elsevier Ltd. All rights reserved.\"],\"language\":\"und\",\"subjects\":[\"Autobiographical memory, Semantic dementia, fMRI, Longitudinal, TEMPORAL-LOBE ATROPHY, RETROGRADE-AMNESIA, ALZHEIMERS-DISEASE, EPISODIC MEMORY, FUNCTIONAL NEUROANATOMY, FRONTOTEMPORAL DEMENTIA, HIPPOCAMPAL COMPLEX, REMOTE MEMORY, NEURAL BASIS, PATTERNS\"],\"creators\":[\"Maguire, E. A.\",\"Kumaran, D.\",\"Hassabis, D.\",\"Kopelman, M. D.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"PERGAMON-ELSEVIER SCIENCE LTD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"PMC2806951\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/128431/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2806951\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2806951\",\"id\":\"oai:europepmc.org:1948441\"},\"trust\":0.21366638}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:128431"},"target_publication_author_list":{"type":"LIST_STRING","value":["Maguire, E. A.","Kumaran, D.","Hassabis, D.","Kopelman, M. D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1948441"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Autobiographical memory, Semantic dementia, fMRI, Longitudinal, TEMPORAL-LOBE ATROPHY, RETROGRADE-AMNESIA, ALZHEIMERS-DISEASE, EPISODIC MEMORY, FUNCTIONAL NEUROANATOMY, FRONTOTEMPORAL DEMENTIA, HIPPOCAMPAL COMPLEX, REMOTE MEMORY, NEURAL BASIS, PATTERNS"]},"trust":{"type":"FLOAT","value":0.21366638},"target_publication_title":{"type":"STRING","value":"Autobiographical memory in semantic dementia: A longitudinal fMRI study"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:128431\",\"titles\":[\"Autobiographical memory in semantic dementia: A longitudinal fMRI study\"],\"abstracts\":[\"Whilst patients with semantic dementia (SD) are known to suffer from semantic memory and language impairments, there is less agreement about whether memory for personal everyday experiences, autobiographical memory, is compromised. In healthy individuals, functional MRI (fMRI) has helped to delineate a consistent and distributed brain network associated with autobiographical recollection. Here we examined how the progression of SD affected the brain\\u0027s autobiographical memory network over time. We did this by testing autobiographical memory recall in a SD patient, AM, with fMRI on three occasions, each one year apart, during the course of his disease. At the outset, his autobiographical memory was intact. This was followed by a gradual loss in recollective quality that collapsed only late in the course of the disease. There was no evidence of a temporal gradient. Initially, AM\\u0027s recollection was supported by the classic autobiographical memory network, including atrophied tissue in hippocampus and temporal neocortex. This was subsequently augmented by up-regulation of other parts of the memory system, namely ventromedial and ventrolateral prefrontal cortex, right lateral temporal cortex, and precuneus. A final step-change in the areas engaged and the quality of recollection then preceded the collapse of autobiographical memory. Our findings inform theoretical debates about the role of the hippocampus and neocortical areas in supporting remote autobiographical memories. Furthermore, our results suggest it may be possible to define specific stages in SD-related memory decline, and that fMRI could complement MRI and neuropsychological measures in providing more precise prognostic and rehabilitative information for clinicians and carets. (C) 2009 Elsevier Ltd. All rights reserved.\"],\"language\":\"und\",\"subjects\":[\"Autobiographical memory, Semantic dementia, fMRI, Longitudinal, TEMPORAL-LOBE ATROPHY, RETROGRADE-AMNESIA, ALZHEIMERS-DISEASE, EPISODIC MEMORY, FUNCTIONAL NEUROANATOMY, FRONTOTEMPORAL DEMENTIA, HIPPOCAMPAL COMPLEX, REMOTE MEMORY, NEURAL BASIS, PATTERNS\"],\"creators\":[\"Maguire, E. A.\",\"Kumaran, D.\",\"Hassabis, D.\",\"Kopelman, M. D.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"PERGAMON-ELSEVIER SCIENCE LTD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"19720072\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/128431/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"19720072\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2806951\",\"id\":\"oai:europepmc.org:1948441\"},\"trust\":0.21366638}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:128431"},"target_publication_author_list":{"type":"LIST_STRING","value":["Maguire, E. A.","Kumaran, D.","Hassabis, D.","Kopelman, M. D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1948441"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Autobiographical memory, Semantic dementia, fMRI, Longitudinal, TEMPORAL-LOBE ATROPHY, RETROGRADE-AMNESIA, ALZHEIMERS-DISEASE, EPISODIC MEMORY, FUNCTIONAL NEUROANATOMY, FRONTOTEMPORAL DEMENTIA, HIPPOCAMPAL COMPLEX, REMOTE MEMORY, NEURAL BASIS, PATTERNS"]},"trust":{"type":"FLOAT","value":0.21366638},"target_publication_title":{"type":"STRING","value":"Autobiographical memory in semantic dementia: A longitudinal fMRI study"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:128431\",\"titles\":[\"Autobiographical memory in semantic dementia: A longitudinal fMRI study\"],\"abstracts\":[\"Whilst patients with semantic dementia (SD) are known to suffer from semantic memory and language impairments, there is less agreement about whether memory for personal everyday experiences, autobiographical memory, is compromised. In healthy individuals, functional MRI (fMRI) has helped to delineate a consistent and distributed brain network associated with autobiographical recollection. Here we examined how the progression of SD affected the brain\\u0027s autobiographical memory network over time. We did this by testing autobiographical memory recall in a SD patient, AM, with fMRI on three occasions, each one year apart, during the course of his disease. At the outset, his autobiographical memory was intact. This was followed by a gradual loss in recollective quality that collapsed only late in the course of the disease. There was no evidence of a temporal gradient. Initially, AM\\u0027s recollection was supported by the classic autobiographical memory network, including atrophied tissue in hippocampus and temporal neocortex. This was subsequently augmented by up-regulation of other parts of the memory system, namely ventromedial and ventrolateral prefrontal cortex, right lateral temporal cortex, and precuneus. A final step-change in the areas engaged and the quality of recollection then preceded the collapse of autobiographical memory. Our findings inform theoretical debates about the role of the hippocampus and neocortical areas in supporting remote autobiographical memories. Furthermore, our results suggest it may be possible to define specific stages in SD-related memory decline, and that fMRI could complement MRI and neuropsychological measures in providing more precise prognostic and rehabilitative information for clinicians and carets. (C) 2009 Elsevier Ltd. All rights reserved.\"],\"language\":\"und\",\"subjects\":[\"Autobiographical memory, Semantic dementia, fMRI, Longitudinal, TEMPORAL-LOBE ATROPHY, RETROGRADE-AMNESIA, ALZHEIMERS-DISEASE, EPISODIC MEMORY, FUNCTIONAL NEUROANATOMY, FRONTOTEMPORAL DEMENTIA, HIPPOCAMPAL COMPLEX, REMOTE MEMORY, NEURAL BASIS, PATTERNS\"],\"creators\":[\"Maguire, E. A.\",\"Kumaran, D.\",\"Hassabis, D.\",\"Kopelman, M. D.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"PERGAMON-ELSEVIER SCIENCE LTD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"10.1016/j.neuropsychologia.2009.08.020\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/128431/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.neuropsychologia.2009.08.020\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2806951\",\"id\":\"oai:europepmc.org:1948441\"},\"trust\":0.21366638}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:128431"},"target_publication_author_list":{"type":"LIST_STRING","value":["Maguire, E. A.","Kumaran, D.","Hassabis, D.","Kopelman, M. D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1948441"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Autobiographical memory, Semantic dementia, fMRI, Longitudinal, TEMPORAL-LOBE ATROPHY, RETROGRADE-AMNESIA, ALZHEIMERS-DISEASE, EPISODIC MEMORY, FUNCTIONAL NEUROANATOMY, FRONTOTEMPORAL DEMENTIA, HIPPOCAMPAL COMPLEX, REMOTE MEMORY, NEURAL BASIS, PATTERNS"]},"trust":{"type":"FLOAT","value":0.21366638},"target_publication_title":{"type":"STRING","value":"Autobiographical memory in semantic dementia: A longitudinal fMRI study"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:128431\",\"titles\":[\"Autobiographical memory in semantic dementia: A longitudinal fMRI study\"],\"abstracts\":[\"Whilst patients with semantic dementia (SD) are known to suffer from semantic memory and language impairments, there is less agreement about whether memory for personal everyday experiences, autobiographical memory, is compromised. In healthy individuals, functional MRI (fMRI) has helped to delineate a consistent and distributed brain network associated with autobiographical recollection. Here we examined how the progression of SD affected the brain\\u0027s autobiographical memory network over time. We did this by testing autobiographical memory recall in a SD patient, AM, with fMRI on three occasions, each one year apart, during the course of his disease. At the outset, his autobiographical memory was intact. This was followed by a gradual loss in recollective quality that collapsed only late in the course of the disease. There was no evidence of a temporal gradient. Initially, AM\\u0027s recollection was supported by the classic autobiographical memory network, including atrophied tissue in hippocampus and temporal neocortex. This was subsequently augmented by up-regulation of other parts of the memory system, namely ventromedial and ventrolateral prefrontal cortex, right lateral temporal cortex, and precuneus. A final step-change in the areas engaged and the quality of recollection then preceded the collapse of autobiographical memory. Our findings inform theoretical debates about the role of the hippocampus and neocortical areas in supporting remote autobiographical memories. Furthermore, our results suggest it may be possible to define specific stages in SD-related memory decline, and that fMRI could complement MRI and neuropsychological measures in providing more precise prognostic and rehabilitative information for clinicians and carets. (C) 2009 Elsevier Ltd. All rights reserved.\"],\"language\":\"und\",\"subjects\":[\"Autobiographical memory, Semantic dementia, fMRI, Longitudinal, TEMPORAL-LOBE ATROPHY, RETROGRADE-AMNESIA, ALZHEIMERS-DISEASE, EPISODIC MEMORY, FUNCTIONAL NEUROANATOMY, FRONTOTEMPORAL DEMENTIA, HIPPOCAMPAL COMPLEX, REMOTE MEMORY, NEURAL BASIS, PATTERNS\"],\"creators\":[\"Maguire, E. A.\",\"Kumaran, D.\",\"Hassabis, D.\",\"Kopelman, M. D.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"PERGAMON-ELSEVIER SCIENCE LTD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"PMC2806951\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/128431/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2806951\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2806951\",\"id\":\"oai:europepmc.org:1948441\"},\"trust\":0.21366638}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:128431"},"target_publication_author_list":{"type":"LIST_STRING","value":["Maguire, E. A.","Kumaran, D.","Hassabis, D.","Kopelman, M. D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1948441"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Autobiographical memory, Semantic dementia, fMRI, Longitudinal, TEMPORAL-LOBE ATROPHY, RETROGRADE-AMNESIA, ALZHEIMERS-DISEASE, EPISODIC MEMORY, FUNCTIONAL NEUROANATOMY, FRONTOTEMPORAL DEMENTIA, HIPPOCAMPAL COMPLEX, REMOTE MEMORY, NEURAL BASIS, PATTERNS"]},"trust":{"type":"FLOAT","value":0.21366638},"target_publication_title":{"type":"STRING","value":"Autobiographical memory in semantic dementia: A longitudinal fMRI study"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:128431\",\"titles\":[\"Autobiographical memory in semantic dementia: A longitudinal fMRI study\"],\"abstracts\":[\"Whilst patients with semantic dementia (SD) are known to suffer from semantic memory and language impairments, there is less agreement about whether memory for personal everyday experiences, autobiographical memory, is compromised. In healthy individuals, functional MRI (fMRI) has helped to delineate a consistent and distributed brain network associated with autobiographical recollection. Here we examined how the progression of SD affected the brain\\u0027s autobiographical memory network over time. We did this by testing autobiographical memory recall in a SD patient, AM, with fMRI on three occasions, each one year apart, during the course of his disease. At the outset, his autobiographical memory was intact. This was followed by a gradual loss in recollective quality that collapsed only late in the course of the disease. There was no evidence of a temporal gradient. Initially, AM\\u0027s recollection was supported by the classic autobiographical memory network, including atrophied tissue in hippocampus and temporal neocortex. This was subsequently augmented by up-regulation of other parts of the memory system, namely ventromedial and ventrolateral prefrontal cortex, right lateral temporal cortex, and precuneus. A final step-change in the areas engaged and the quality of recollection then preceded the collapse of autobiographical memory. Our findings inform theoretical debates about the role of the hippocampus and neocortical areas in supporting remote autobiographical memories. Furthermore, our results suggest it may be possible to define specific stages in SD-related memory decline, and that fMRI could complement MRI and neuropsychological measures in providing more precise prognostic and rehabilitative information for clinicians and carets. (C) 2009 Elsevier Ltd. All rights reserved.\"],\"language\":\"und\",\"subjects\":[\"Autobiographical memory, Semantic dementia, fMRI, Longitudinal, TEMPORAL-LOBE ATROPHY, RETROGRADE-AMNESIA, ALZHEIMERS-DISEASE, EPISODIC MEMORY, FUNCTIONAL NEUROANATOMY, FRONTOTEMPORAL DEMENTIA, HIPPOCAMPAL COMPLEX, REMOTE MEMORY, NEURAL BASIS, PATTERNS\"],\"creators\":[\"Maguire, E. A.\",\"Kumaran, D.\",\"Hassabis, D.\",\"Kopelman, M. D.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"PERGAMON-ELSEVIER SCIENCE LTD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"19720072\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/128431/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"19720072\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2806951\",\"id\":\"oai:europepmc.org:1948441\"},\"trust\":0.21366638}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:128431"},"target_publication_author_list":{"type":"LIST_STRING","value":["Maguire, E. A.","Kumaran, D.","Hassabis, D.","Kopelman, M. D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1948441"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Autobiographical memory, Semantic dementia, fMRI, Longitudinal, TEMPORAL-LOBE ATROPHY, RETROGRADE-AMNESIA, ALZHEIMERS-DISEASE, EPISODIC MEMORY, FUNCTIONAL NEUROANATOMY, FRONTOTEMPORAL DEMENTIA, HIPPOCAMPAL COMPLEX, REMOTE MEMORY, NEURAL BASIS, PATTERNS"]},"trust":{"type":"FLOAT","value":0.21366638},"target_publication_title":{"type":"STRING","value":"Autobiographical memory in semantic dementia: A longitudinal fMRI study"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1948441\",\"titles\":[\"Autobiographical memory in semantic dementia: A longitudinal fMRI study\"],\"abstracts\":[\"Whilst patients with semantic dementia (SD) are known to suffer from semantic memory and language impairments, there is less agreement about whether memory for personal everyday experiences, autobiographical memory, is compromised. In healthy individuals, functional MRI (fMRI) has helped to delineate a consistent and distributed brain network associated with autobiographical recollection. Here we examined how the progression of SD affected the brain\\u0027s autobiographical memory network over time. We did this by testing autobiographical memory recall in a SD patient, AM, with fMRI on three occasions, each one year apart, during the course of his disease. At the outset, his autobiographical memory was intact. This was followed by a gradual loss in recollective quality that collapsed only late in the course of the disease. There was no evidence of a temporal gradient. Initially, AM\\u0027s recollection was supported by the classic autobiographical memory network, including atrophied tissue in hippocampus and temporal neocortex. This was subsequently augmented by up-regulation of other parts of the memory system, namely ventromedial and ventrolateral prefrontal cortex, right lateral temporal cortex, and precuneus. A final step-change in the areas engaged and the quality of recollection then preceded the collapse of autobiographical memory. Our findings inform theoretical debates about the role of the hippocampus and neocortical areas in supporting remote autobiographical memories. Furthermore, our results suggest it may be possible to define specific stages in SD-related memory decline, and that fMRI could complement MRI and neuropsychological measures in providing more precise prognostic and rehabilitative information for clinicians and carers.\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"Autobiographical memory\",\"Semantic dementia\",\"fMRI\",\"Longitudinal\"],\"creators\":[\"Maguire, Eleanor A.\",\"Kumaran, Dharshan\",\"Hassabis, Demis\",\"Kopelman, Michael D.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"Pergamon Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Neuropsychologia\",\"issn\":\"0028-3932\",\"eissn\":\"1873-3514\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1016/j.neuropsychologia.2009.08.020\",\"type\":\"doi\"},{\"value\":\"PMC2806951\",\"type\":\"pmc\"},{\"value\":\"19720072\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2806951\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://discovery.ucl.ac.uk/128431/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/128431/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"UCL Discovery\",\"url\":\"http://discovery.ucl.ac.uk/128431/\",\"id\":\"oai:eprints.ucl.ac.uk.OAI2:128431\"},\"trust\":0.80035776}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1948441"},"target_publication_author_list":{"type":"LIST_STRING","value":["Maguire, Eleanor A.","Kumaran, Dharshan","Hassabis, Demis","Kopelman, Michael D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.ucl.ac.uk.OAI2:128431"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","Autobiographical memory","Semantic dementia","fMRI","Longitudinal"]},"trust":{"type":"FLOAT","value":0.80035776},"target_publication_title":{"type":"STRING","value":"Autobiographical memory in semantic dementia: A longitudinal fMRI study"},"provenance_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00003948v1\",\"titles\":[\"E TA STEPHANIA et les formations apparentées\"],\"abstracts\":[\"International audience\",\"L\\u0027article traite d\\u0027une expression relevée dans un papyrus pour lequel l\\u0027auteur n\\u0027a trouvé aucun parallèle direct, mais qu\\u0027il a pu rapprocher de formations grammaticales qui n\\u0027apparaissent pas avant l\\u0027époque impériale.\"],\"language\":\"fra/fre\",\"subjects\":[\"Papyrus\",\"philologie\",\"[SHS.HIST] Humanities and Social Sciences/History\"],\"creators\":[\"Gascou, Jean\",\"Borkowski, Zbigniew\"],\"publicationdate\":\"1994-01-01\",\"publisher\":\"Polish scientific publishers\",\"embargoenddate\":\"\",\"contributor\":[\"Etude des Civilisations de l\\u0027Antiquité (UMR 7044) ; Université de Haute Alsace - Mulhouse - Université Marc Bloch - Strasbourg II - CNRS\",\"Université de Varsovie ; Aucune\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00003948\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00003948\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00003948\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00003948\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00003948\"},\"trust\":0.6179215}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00003948v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gascou, Jean","Borkowski, Zbigniew"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00003948"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Papyrus","philologie","[SHS.HIST] Humanities and Social Sciences/History"]},"trust":{"type":"FLOAT","value":0.6179215},"target_publication_title":{"type":"STRING","value":"E TA STEPHANIA et les formations apparentées"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1994-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00003948\",\"titles\":[\"E TA STEPHANIA et les formations apparentées\"],\"abstracts\":[\"L\\u0027article traite d\\u0027une expression relevée dans un papyrus pour lequel l\\u0027auteur n\\u0027a trouvé aucun parallèle direct, mais qu\\u0027il a pu rapprocher de formations grammaticales qui n\\u0027apparaissent pas avant l\\u0027époque impériale.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:HIST] Humanities and Social Sciences/History\",\"[SHS:HIST] Sciences de l\\u0027Homme et Société/Histoire\",\"Papyrus\",\"philologie\"],\"creators\":[\"Gascou, Jean\",\"Borkowski, Zbigniew\"],\"publicationdate\":\"1994-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00003948\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00003948\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00003948\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00003948\",\"id\":\"oai:HAL:halshs-00003948v1\"},\"trust\":0.22354591}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00003948"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gascou, Jean","Borkowski, Zbigniew"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00003948v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:HIST] Humanities and Social Sciences/History","[SHS:HIST] Sciences de l\u0027Homme et Société/Histoire","Papyrus","philologie"]},"trust":{"type":"FLOAT","value":0.22354591},"target_publication_title":{"type":"STRING","value":"E TA STEPHANIA et les formations apparentées"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1994-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2552319\",\"titles\":[\"Molecular docking analysis of 2009-H1N1 and 2004-H5N1 influenza virus HLA-B*4405-restricted HA epitope candidates: implications for TCR cross-recognition and vaccine development\"],\"abstracts\":[\"Background The pandemic 2009-H1N1 influenza virus circulated in the human population and caused thousands deaths worldwide. Studies on pandemic influenza vaccines have shown that T cell recognition to conserved epitopes and cross-reactive T cell responses are important when new strains emerge, especially in the absence of antibody cross-reactivity. In this work, using HLA-B*4405 and DM1-TCR structure model, we systematically generated high confidence conserved 2009-H1N1 T cell epitope candidates and investigated their potential cross-reactivity against H5N1 avian flu virus. Results Molecular docking analysis of differential DM1-TCR recognition of the 2009-H1N1 epitope candidates yielded a mosaic epitope (KEKMNTEFW) and potential H5N1 HA cross-reactive epitopes that could be applied as multivalent peptide towards influenza A vaccine development. Structural models of TCR cross-recognition between 2009-H1N1 and 2004-H5N1 revealed steric and topological effects of TCR contact residue mutations on TCR binding affinity. Conclusions The results are novel with regard to HA epitopes and useful for developing possible vaccination strategies against the rapidly changing influenza viruses. Yet, the challenge of identifying epitope candidates that result in heterologous T cell immunity under natural influenza infection conditions can only be overcome if more structural data on the TCR repertoire become available.\"],\"language\":\"eng\",\"subjects\":[\"Proceedings\"],\"creators\":[\"Su, Chinh Tt\",\"Schönbach, Christian\",\"Kwoh, Chee-Keong\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"BMC Bioinformatics\",\"issn\":\"\",\"eissn\":\"1471-2105\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1471-2105-14-S2-S21\",\"type\":\"doi\"},{\"value\":\"PMC3549837\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3549837\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://apbc2013.org/\",\"license\":\"OPEN\",\"hostedby\":\"BMC Bioinformatics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://apbc2013.org/\",\"license\":\"OPEN\",\"hostedby\":\"BMC Bioinformatics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://apbc2013.org/\",\"id\":\"oai:doaj.org/article:ae98bb55a45049a1ac6ead46a5a69ce4\"},\"trust\":0.8573199}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2552319"},"target_publication_author_list":{"type":"LIST_STRING","value":["Su, Chinh Tt","Schönbach, Christian","Kwoh, Chee-Keong"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:ae98bb55a45049a1ac6ead46a5a69ce4"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Proceedings"]},"trust":{"type":"FLOAT","value":0.8573199},"target_publication_title":{"type":"STRING","value":"Molecular docking analysis of 2009-H1N1 and 2004-H5N1 influenza virus HLA-B*4405-restricted HA epitope candidates: implications for TCR cross-recognition and vaccine development"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:qucosa.de:bsz:ch1-200200410\",\"titles\":[\"M$ Windows - Nutzerverwaltungstechnologien\"],\"abstracts\":[\"Gemeinsamer Workshop von Universitaetsrechenzentrum und Professur Rechnernetze und verteilte Systeme der Fakultaet fuer Informatik der TU Chemnitz.\\n\\nMöglichkeiten der Accountverwaltung und Authentifizierung \\nin der zukünftigen Windowsplattform.\"],\"language\":\"deu/ger\",\"subjects\":[\"Nutzerverwaltung\",\"AFS\",\"Graphical Identification and Authentification\",\"Domain\",\"ddc:004\",\"Active Directory\"],\"creators\":[\"Heik, Andreas\"],\"publicationdate\":\"2002-05-07\",\"publisher\":\"Universitätsbibliothek Chemnitz\",\"embargoenddate\":\"\",\"contributor\":[\"TU Chemnitz, Universitätsrechenzentrum\",\" Prof.Dr. Uwe Huebner\",\" Matthias Clauss\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Multimedia ONline ARchiv CHemnitz\"],\"pids\":[],\"instances\":[{\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:ch1-200200410\",\"license\":\"OPEN\",\"hostedby\":\"Multimedia ONline ARchiv CHemnitz\",\"instancetype\":\"Unknown\"},{\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:ch1-200200410\",\"license\":\"OPEN\",\"hostedby\":\"Qucosa\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:ch1-200200410\",\"license\":\"OPEN\",\"hostedby\":\"Qucosa\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Qucosa\",\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:ch1-200200410\",\"id\":\"oai:qucosa.de:bsz:ch1-200200410\"},\"trust\":0.0035508275}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Multimedia ONline ARchiv CHemnitz"},"target_publication_id":{"type":"STRING","value":"oai:qucosa.de:bsz:ch1-200200410"},"target_publication_author_list":{"type":"LIST_STRING","value":["Heik, Andreas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:qucosa.de:bsz:ch1-200200410"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::c9e1074f5b3f9fc8ea15d152add07294"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Nutzerverwaltung","AFS","Graphical Identification and Authentification","Domain","ddc:004","Active Directory"]},"trust":{"type":"FLOAT","value":0.0035508275},"target_publication_title":{"type":"STRING","value":"M$ Windows - Nutzerverwaltungstechnologien"},"provenance_datasource_name":{"type":"STRING","value":"Qucosa"},"target_dateofacceptance":{"type":"DATE","value":"2002-05-07"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::e96ed478dab8595a7dbda4cbcbee168f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:qucosa.de:bsz:ch1-200200410\",\"titles\":[\"M$ Windows - Nutzerverwaltungstechnologien\"],\"abstracts\":[\"Gemeinsamer Workshop von Universitaetsrechenzentrum und Professur Rechnernetze und verteilte Systeme der Fakultaet fuer Informatik der TU Chemnitz.\\n\\nMöglichkeiten der Accountverwaltung und Authentifizierung \\nin der zukünftigen Windowsplattform.\"],\"language\":\"deu/ger\",\"subjects\":[\"Nutzerverwaltung\",\"AFS\",\"Graphical Identification and Authentification\",\"Domain\",\"ddc:004\",\"Active Directory\"],\"creators\":[\"Heik, Andreas\"],\"publicationdate\":\"2002-05-07\",\"publisher\":\"Universitätsbibliothek Chemnitz\",\"embargoenddate\":\"\",\"contributor\":[\"TU Chemnitz, Universitätsrechenzentrum\",\" Prof.Dr. Uwe Huebner\",\" Matthias Clauss\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Qucosa\"],\"pids\":[],\"instances\":[{\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:ch1-200200410\",\"license\":\"OPEN\",\"hostedby\":\"Qucosa\",\"instancetype\":\"Unknown\"},{\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:ch1-200200410\",\"license\":\"OPEN\",\"hostedby\":\"Multimedia ONline ARchiv CHemnitz\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:ch1-200200410\",\"license\":\"OPEN\",\"hostedby\":\"Multimedia ONline ARchiv CHemnitz\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Multimedia ONline ARchiv CHemnitz\",\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:ch1-200200410\",\"id\":\"oai:qucosa.de:bsz:ch1-200200410\"},\"trust\":0.1524418}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Qucosa"},"target_publication_id":{"type":"STRING","value":"oai:qucosa.de:bsz:ch1-200200410"},"target_publication_author_list":{"type":"LIST_STRING","value":["Heik, Andreas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:qucosa.de:bsz:ch1-200200410"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::e96ed478dab8595a7dbda4cbcbee168f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Nutzerverwaltung","AFS","Graphical Identification and Authentification","Domain","ddc:004","Active Directory"]},"trust":{"type":"FLOAT","value":0.1524418},"target_publication_title":{"type":"STRING","value":"M$ Windows - Nutzerverwaltungstechnologien"},"provenance_datasource_name":{"type":"STRING","value":"Multimedia ONline ARchiv CHemnitz"},"target_dateofacceptance":{"type":"DATE","value":"2002-05-07"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::c9e1074f5b3f9fc8ea15d152add07294"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1087453\",\"titles\":[\"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels\"],\"abstracts\":[\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\",\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\"],\"language\":\"eng\",\"subjects\":[\"Expectation-maximization algorithm\",\"MIMO\",\"SAGE algorithm\",\"multipath channels\",\"variational Bayesian methods\"],\"creators\":[\"Shutin, Dmitriy\",\"Fleury, Bernard Henri\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"VBN\"],\"pids\":[{\"value\":\"10.1109/TSP.2011.2140106\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/61155739/Sparse_Variational_Bayesian_SAGE_Algorithm.pdf\",\"license\":\"OPEN\",\"hostedby\":\"VBN\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1109/TSP.2011.2140106\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Crossref\",\"url\":\"http://dx.doi.org/10.1109/TSP.2011.2140106\",\"id\":\"WOS:000293686100009\"},\"trust\":0.19937408}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"VBN"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1087453"},"target_publication_author_list":{"type":"LIST_STRING","value":["Shutin, Dmitriy","Fleury, Bernard Henri"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["WOS:000293686100009"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::081b82f96300b6a6e3d282bad31cb6e2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Expectation-maximization algorithm","MIMO","SAGE algorithm","multipath channels","variational Bayesian methods"]},"trust":{"type":"FLOAT","value":0.19937408},"target_publication_title":{"type":"STRING","value":"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels"},"provenance_datasource_name":{"type":"STRING","value":"Crossref"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8e2cfdc275761edc592f73a076197c33"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1087453\",\"titles\":[\"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels\"],\"abstracts\":[\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\",\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\"],\"language\":\"eng\",\"subjects\":[\"Expectation-maximization algorithm\",\"MIMO\",\"SAGE algorithm\",\"multipath channels\",\"variational Bayesian methods\"],\"creators\":[\"Shutin, Dmitriy\",\"Fleury, Bernard Henri\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"VBN\"],\"pids\":[{\"value\":\"10.1109/TSP.2011.2140106\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/61155739/Sparse_Variational_Bayesian_SAGE_Algorithm.pdf\",\"license\":\"OPEN\",\"hostedby\":\"VBN\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1109/TSP.2011.2140106\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Crossref\",\"url\":\"http://dx.doi.org/10.1109/TSP.2011.2140106\",\"id\":\"WOS:000293686100009\"},\"trust\":0.19937408}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"VBN"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1087453"},"target_publication_author_list":{"type":"LIST_STRING","value":["Shutin, Dmitriy","Fleury, Bernard Henri"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["WOS:000293686100009"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::081b82f96300b6a6e3d282bad31cb6e2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Expectation-maximization algorithm","MIMO","SAGE algorithm","multipath channels","variational Bayesian methods"]},"trust":{"type":"FLOAT","value":0.19937408},"target_publication_title":{"type":"STRING","value":"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels"},"provenance_datasource_name":{"type":"STRING","value":"Crossref"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8e2cfdc275761edc592f73a076197c33"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1087453\",\"titles\":[\"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels\"],\"abstracts\":[\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\",\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\"],\"language\":\"eng\",\"subjects\":[\"Expectation-maximization algorithm\",\"MIMO\",\"SAGE algorithm\",\"multipath channels\",\"variational Bayesian methods\"],\"creators\":[\"Shutin, Dmitriy\",\"Fleury, Bernard Henri\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"VBN\"],\"pids\":[{\"value\":\"10.1109/TSP.2011.2140106\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/61155739/Sparse_Variational_Bayesian_SAGE_Algorithm.pdf\",\"license\":\"OPEN\",\"hostedby\":\"VBN\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1109/TSP.2011.2140106\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Crossref\",\"url\":\"http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber\\u003d5744133\",\"id\":\"10.1109/TSP.2011.2140106\"},\"trust\":0.37978715}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"VBN"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1087453"},"target_publication_author_list":{"type":"LIST_STRING","value":["Shutin, Dmitriy","Fleury, Bernard Henri"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.1109/TSP.2011.2140106"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::081b82f96300b6a6e3d282bad31cb6e2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Expectation-maximization algorithm","MIMO","SAGE algorithm","multipath channels","variational Bayesian methods"]},"trust":{"type":"FLOAT","value":0.37978715},"target_publication_title":{"type":"STRING","value":"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels"},"provenance_datasource_name":{"type":"STRING","value":"Crossref"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8e2cfdc275761edc592f73a076197c33"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1087453\",\"titles\":[\"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels\"],\"abstracts\":[\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\",\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\"],\"language\":\"eng\",\"subjects\":[\"Expectation-maximization algorithm\",\"MIMO\",\"SAGE algorithm\",\"multipath channels\",\"variational Bayesian methods\"],\"creators\":[\"Shutin, Dmitriy\",\"Fleury, Bernard Henri\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"VBN\"],\"pids\":[{\"value\":\"10.1109/TSP.2011.2140106\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/61155739/Sparse_Variational_Bayesian_SAGE_Algorithm.pdf\",\"license\":\"OPEN\",\"hostedby\":\"VBN\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1109/TSP.2011.2140106\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Crossref\",\"url\":\"http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber\\u003d5744133\",\"id\":\"10.1109/TSP.2011.2140106\"},\"trust\":0.37978715}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"VBN"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1087453"},"target_publication_author_list":{"type":"LIST_STRING","value":["Shutin, Dmitriy","Fleury, Bernard Henri"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.1109/TSP.2011.2140106"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::081b82f96300b6a6e3d282bad31cb6e2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Expectation-maximization algorithm","MIMO","SAGE algorithm","multipath channels","variational Bayesian methods"]},"trust":{"type":"FLOAT","value":0.37978715},"target_publication_title":{"type":"STRING","value":"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels"},"provenance_datasource_name":{"type":"STRING","value":"Crossref"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8e2cfdc275761edc592f73a076197c33"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1087453\",\"titles\":[\"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels\"],\"abstracts\":[\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\",\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\"],\"language\":\"eng\",\"subjects\":[\"Expectation-maximization algorithm\",\"MIMO\",\"SAGE algorithm\",\"multipath channels\",\"variational Bayesian methods\"],\"creators\":[\"Shutin, Dmitriy\",\"Fleury, Bernard Henri\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"VBN\"],\"pids\":[],\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/61155739/Sparse_Variational_Bayesian_SAGE_Algorithm.pdf\",\"license\":\"OPEN\",\"hostedby\":\"VBN\",\"instancetype\":\"Article\"},{\"url\":\"http://vbn.aau.dk/ws/files/61155739/Sparse_Variational_Bayesian_SAGE_Algorithm.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/61155739/Sparse_Variational_Bayesian_SAGE_Algorithm.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://vbn.aau.dk/ws/files/61155739/Sparse_Variational_Bayesian_SAGE_Algorithm.pdf\",\"id\":\"oai:oai.forksningsdatabasen.dk:1087453\"},\"trust\":0.10206455}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"VBN"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1087453"},"target_publication_author_list":{"type":"LIST_STRING","value":["Shutin, Dmitriy","Fleury, Bernard Henri"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:1087453"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Expectation-maximization algorithm","MIMO","SAGE algorithm","multipath channels","variational Bayesian methods"]},"trust":{"type":"FLOAT","value":0.10206455},"target_publication_title":{"type":"STRING","value":"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8e2cfdc275761edc592f73a076197c33"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1087453\",\"titles\":[\"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels\"],\"abstracts\":[\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\",\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\"],\"language\":\"eng\",\"subjects\":[\"Expectation-maximization algorithm\",\"MIMO\",\"SAGE algorithm\",\"multipath channels\",\"variational Bayesian methods\"],\"creators\":[\"Shutin, Dmitriy\",\"Fleury, Bernard Henri\"],\"publicationdate\":\"2011-03-17\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[{\"value\":\"10.1109/TSP.2011.2140106\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/61155739/Sparse_Variational_Bayesian_SAGE_Algorithm.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1109/TSP.2011.2140106\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Crossref\",\"url\":\"http://dx.doi.org/10.1109/TSP.2011.2140106\",\"id\":\"WOS:000293686100009\"},\"trust\":0.83602}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1087453"},"target_publication_author_list":{"type":"LIST_STRING","value":["Shutin, Dmitriy","Fleury, Bernard Henri"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["WOS:000293686100009"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::081b82f96300b6a6e3d282bad31cb6e2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Expectation-maximization algorithm","MIMO","SAGE algorithm","multipath channels","variational Bayesian methods"]},"trust":{"type":"FLOAT","value":0.83602},"target_publication_title":{"type":"STRING","value":"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels"},"provenance_datasource_name":{"type":"STRING","value":"Crossref"},"target_dateofacceptance":{"type":"DATE","value":"2011-03-17"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1087453\",\"titles\":[\"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels\"],\"abstracts\":[\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\",\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\"],\"language\":\"eng\",\"subjects\":[\"Expectation-maximization algorithm\",\"MIMO\",\"SAGE algorithm\",\"multipath channels\",\"variational Bayesian methods\"],\"creators\":[\"Shutin, Dmitriy\",\"Fleury, Bernard Henri\"],\"publicationdate\":\"2011-03-17\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[{\"value\":\"10.1109/TSP.2011.2140106\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/61155739/Sparse_Variational_Bayesian_SAGE_Algorithm.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1109/TSP.2011.2140106\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Crossref\",\"url\":\"http://dx.doi.org/10.1109/TSP.2011.2140106\",\"id\":\"WOS:000293686100009\"},\"trust\":0.83602}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1087453"},"target_publication_author_list":{"type":"LIST_STRING","value":["Shutin, Dmitriy","Fleury, Bernard Henri"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["WOS:000293686100009"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::081b82f96300b6a6e3d282bad31cb6e2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Expectation-maximization algorithm","MIMO","SAGE algorithm","multipath channels","variational Bayesian methods"]},"trust":{"type":"FLOAT","value":0.83602},"target_publication_title":{"type":"STRING","value":"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels"},"provenance_datasource_name":{"type":"STRING","value":"Crossref"},"target_dateofacceptance":{"type":"DATE","value":"2011-03-17"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1087453\",\"titles\":[\"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels\"],\"abstracts\":[\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\",\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\"],\"language\":\"eng\",\"subjects\":[\"Expectation-maximization algorithm\",\"MIMO\",\"SAGE algorithm\",\"multipath channels\",\"variational Bayesian methods\"],\"creators\":[\"Shutin, Dmitriy\",\"Fleury, Bernard Henri\"],\"publicationdate\":\"2011-03-17\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[{\"value\":\"10.1109/TSP.2011.2140106\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/61155739/Sparse_Variational_Bayesian_SAGE_Algorithm.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1109/TSP.2011.2140106\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Crossref\",\"url\":\"http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber\\u003d5744133\",\"id\":\"10.1109/TSP.2011.2140106\"},\"trust\":0.034249485}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1087453"},"target_publication_author_list":{"type":"LIST_STRING","value":["Shutin, Dmitriy","Fleury, Bernard Henri"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.1109/TSP.2011.2140106"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::081b82f96300b6a6e3d282bad31cb6e2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Expectation-maximization algorithm","MIMO","SAGE algorithm","multipath channels","variational Bayesian methods"]},"trust":{"type":"FLOAT","value":0.034249485},"target_publication_title":{"type":"STRING","value":"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels"},"provenance_datasource_name":{"type":"STRING","value":"Crossref"},"target_dateofacceptance":{"type":"DATE","value":"2011-03-17"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1087453\",\"titles\":[\"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels\"],\"abstracts\":[\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\",\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\"],\"language\":\"eng\",\"subjects\":[\"Expectation-maximization algorithm\",\"MIMO\",\"SAGE algorithm\",\"multipath channels\",\"variational Bayesian methods\"],\"creators\":[\"Shutin, Dmitriy\",\"Fleury, Bernard Henri\"],\"publicationdate\":\"2011-03-17\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[{\"value\":\"10.1109/TSP.2011.2140106\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/61155739/Sparse_Variational_Bayesian_SAGE_Algorithm.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1109/TSP.2011.2140106\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Crossref\",\"url\":\"http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber\\u003d5744133\",\"id\":\"10.1109/TSP.2011.2140106\"},\"trust\":0.034249485}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1087453"},"target_publication_author_list":{"type":"LIST_STRING","value":["Shutin, Dmitriy","Fleury, Bernard Henri"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.1109/TSP.2011.2140106"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::081b82f96300b6a6e3d282bad31cb6e2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Expectation-maximization algorithm","MIMO","SAGE algorithm","multipath channels","variational Bayesian methods"]},"trust":{"type":"FLOAT","value":0.034249485},"target_publication_title":{"type":"STRING","value":"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels"},"provenance_datasource_name":{"type":"STRING","value":"Crossref"},"target_dateofacceptance":{"type":"DATE","value":"2011-03-17"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1087453\",\"titles\":[\"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels\"],\"abstracts\":[\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\",\"In this paper, we develop a sparse variational Bayesian (VB) extension of the space-alternating generalized expectation-maximization (SAGE) algorithm for the high resolution estimation of the parameters of relevant multipath components in the response of frequency and spatially selective wireless channels. The application context of the algorithm considered in this contribution is parameter estimation from channel sounding measurements for radio channel modeling purpose. The new sparse VB-SAGE algorithm extends the classical SAGE algorithm in two respects: i) by monotonically minimizing the variational free energy, distributions of the multipath component parameters can be obtained instead of parameter point estimates and ii) the estimation of the number of relevant multipath components and the estimation of the component parameters are implemented jointly. The sparsity is achieved by defining parametric sparsity priors for the weights of the multipath components. We revisit the Gaussian sparsity priors within the sparse VB-SAGE framework and extend the results by considering Laplace priors. The structure of the VB-SAGE algorithm allows for an analytical stability analysis of the update expression for the sparsity parameters. This analysis leads to fast, computationally simple, yet powerful, adaptive selection criteria applied to the single multipath component considered at each iteration. The selection criteria are adjusted on a per-component-SNR basis to better account for model mismatches, e.g., diffuse scattering, calibration and discretization errors, allowing for a robust extraction of the relevant multipath components. The performance of the sparse VB-SAGE algorithm and its advantages over conventional channel estimation methods are demonstrated in synthetic single-input-multiple-output (SIMO) time-invariant channels. The algorithm is also applied to real measurement data in a multiple-input-multiple-output (MIMO) time-invariant context.\"],\"language\":\"eng\",\"subjects\":[\"Expectation-maximization algorithm\",\"MIMO\",\"SAGE algorithm\",\"multipath channels\",\"variational Bayesian methods\"],\"creators\":[\"Shutin, Dmitriy\",\"Fleury, Bernard Henri\"],\"publicationdate\":\"2011-03-17\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[],\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/61155739/Sparse_Variational_Bayesian_SAGE_Algorithm.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Article\"},{\"url\":\"http://vbn.aau.dk/ws/files/61155739/Sparse_Variational_Bayesian_SAGE_Algorithm.pdf\",\"license\":\"OPEN\",\"hostedby\":\"VBN\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://vbn.aau.dk/ws/files/61155739/Sparse_Variational_Bayesian_SAGE_Algorithm.pdf\",\"license\":\"OPEN\",\"hostedby\":\"VBN\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"VBN\",\"url\":\"http://vbn.aau.dk/ws/files/61155739/Sparse_Variational_Bayesian_SAGE_Algorithm.pdf\",\"id\":\"oai:oai.forksningsdatabasen.dk:1087453\"},\"trust\":0.7218355}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1087453"},"target_publication_author_list":{"type":"LIST_STRING","value":["Shutin, Dmitriy","Fleury, Bernard Henri"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:1087453"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8e2cfdc275761edc592f73a076197c33"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Expectation-maximization algorithm","MIMO","SAGE algorithm","multipath channels","variational Bayesian methods"]},"trust":{"type":"FLOAT","value":0.7218355},"target_publication_title":{"type":"STRING","value":"Sparse Variational Bayesian SAGE Algorithm With Application to the Estimation of Multipath Wireless Channels"},"provenance_datasource_name":{"type":"STRING","value":"VBN"},"target_dateofacceptance":{"type":"DATE","value":"2011-03-17"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace-unipr.cilea.it:1889/541\",\"titles\":[\"I doni di capodanno N.4711\"],\"abstracts\":[\"Pubblicità dell’acqua di colonia N.4711 preferita dalla dama al gioiello come regalo di Capodanno.\"],\"language\":\"und\",\"subjects\":[\"Acqua di colonia n.4711 - advertising\",\"Acqua di colonia n.4711 - pubblicità\",\"46B356\"],\"creators\":[],\"publicationdate\":\"1914-01-04\",\"publisher\":\"Vincenzo Bona Tipografo, Torino\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace a Parma\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/1889/541\",\"license\":\"OPEN\",\"hostedby\":\"DSpace a Parma\",\"instancetype\":\"Image\"},{\"url\":\"http://hdl.handle.net/1889/541\",\"license\":\"OPEN\",\"hostedby\":\"DSpace a Parma\",\"instancetype\":\"Image\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1889/541\",\"license\":\"OPEN\",\"hostedby\":\"DSpace a Parma\",\"instancetype\":\"Image\"}]},\"provenance\":{\"repositoryName\":\"DSpace a Parma\",\"url\":\"http://hdl.handle.net/1889/541\",\"id\":\"oai:dspace-unipr.cineca.it:1889/541\"},\"trust\":0.80415905}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace a Parma"},"target_publication_id":{"type":"STRING","value":"oai:dspace-unipr.cilea.it:1889/541"},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace-unipr.cineca.it:1889/541"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::3dd48ab31d016ffcbf3314df2b3cb9ce"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Acqua di colonia n.4711 - advertising","Acqua di colonia n.4711 - pubblicità","46B356"]},"trust":{"type":"FLOAT","value":0.80415905},"target_publication_title":{"type":"STRING","value":"I doni di capodanno N.4711"},"provenance_datasource_name":{"type":"STRING","value":"DSpace a Parma"},"target_dateofacceptance":{"type":"DATE","value":"1914-01-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::3dd48ab31d016ffcbf3314df2b3cb9ce"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace-unipr.cineca.it:1889/541\",\"titles\":[\"I doni di capodanno N.4711\"],\"abstracts\":[\"Pubblicit�� dell���acqua di colonia N.4711 preferita dalla dama al gioiello come regalo di Capodanno.\"],\"language\":\"und\",\"subjects\":[\"Acqua di colonia n.4711 - advertising\",\"Acqua di colonia n.4711 - pubblicit��\",\"46B356\"],\"creators\":[],\"publicationdate\":\"1914-01-04\",\"publisher\":\"Vincenzo Bona Tipografo, Torino\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace a Parma\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/1889/541\",\"license\":\"OPEN\",\"hostedby\":\"DSpace a Parma\",\"instancetype\":\"Image\"},{\"url\":\"http://hdl.handle.net/1889/541\",\"license\":\"OPEN\",\"hostedby\":\"DSpace a Parma\",\"instancetype\":\"Image\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1889/541\",\"license\":\"OPEN\",\"hostedby\":\"DSpace a Parma\",\"instancetype\":\"Image\"}]},\"provenance\":{\"repositoryName\":\"DSpace a Parma\",\"url\":\"http://hdl.handle.net/1889/541\",\"id\":\"oai:dspace-unipr.cilea.it:1889/541\"},\"trust\":0.7040538}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace a Parma"},"target_publication_id":{"type":"STRING","value":"oai:dspace-unipr.cineca.it:1889/541"},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace-unipr.cilea.it:1889/541"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::3dd48ab31d016ffcbf3314df2b3cb9ce"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Acqua di colonia n.4711 - advertising","Acqua di colonia n.4711 - pubblicit��","46B356"]},"trust":{"type":"FLOAT","value":0.7040538},"target_publication_title":{"type":"STRING","value":"I doni di capodanno N.4711"},"provenance_datasource_name":{"type":"STRING","value":"DSpace a Parma"},"target_dateofacceptance":{"type":"DATE","value":"1914-01-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::3dd48ab31d016ffcbf3314df2b3cb9ce"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:kap:compec:v:21:y:2003:i:1_2:p:153-172\",\"titles\":[\"Computational Tools for the Analysis of Market Risk\"],\"abstracts\":[\"The estimation and management of risk is an important and complex task faced by market regulators and financial institutions. Accurate and reliable quantitative measures of risk are needed to minimize undesirable effects on a given portfolio from large fluctuations in market conditions. To accomplish this, a series of computational tools has been designed, implemented, and incorporated into MatRisk, an integrated environment for risk assessment developed in MATLAB. Besides standard measures, such as Value at Risk (VaR), the application includes other more sophisticated risk measures that address the inability of VaR properly to characterize the structure of risk. Conditional risk measures can also be estimated for autoregressive models with heteroskedasticity, including some novel mixture models. These tools are illustrated with a comprehensive risk analysis of the Spanish IBEX35 stock index.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Alberto Su·rez\",\"Santiago Carrillo\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Computational Economics\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://journals.kluweronline.com/issn/0927-7099/contents\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://fmwww.bc.edu/cef00/papers/paper144.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://fmwww.bc.edu/cef00/papers/paper144.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://fmwww.bc.edu/cef00/papers/paper144.pdf\",\"id\":\"oai:RePEc:sce:scecf0:144\"},\"trust\":0.25428683}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:kap:compec:v:21:y:2003:i:1_2:p:153-172"},"target_publication_author_list":{"type":"LIST_STRING","value":["Alberto Su·rez","Santiago Carrillo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:sce:scecf0:144"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.25428683},"target_publication_title":{"type":"STRING","value":"Computational Tools for the Analysis of Market Risk"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:sce:scecf0:144\",\"titles\":[\"COMPUTATIONAL TOOLS FOR THE ANALYSIS OF MARKET RISK\"],\"abstracts\":[\"The estimation and management of risks is an important and complex task that faces market regulators and financial institutions. It has become apparent that more accurate and reliable quantitative measures of risk are needed to avert, or at least minimize, the undesirable effects on a given portfolio of large fluctuations in the conditions of the market. To accomplish this task, a series of computational tools has been designed, implemented, and incorporated into MatRisk, an integrated environment for risk assessment developed in MatLab. Besides standard measures, such as Value at Risk (VaR), the application MatRisk allows the calculation of other more sophisticated risk measures. These novel risk measures (Shortfall, MaxVaR, conditional VaR) have been introduced by a number of authors to address the inability of VaR to characterize the structure of risk properly.Amongst the extensions of the classical VaR methodology incorporated into MatRisk is the possibility of calculating percentiles for non-normal distributions (e.g., hyperbolic distributions, mixture of Gaussians, and the like), which may provide a more accurate model of the actual behavior of the portfolio returns. The application also allows the calculation of risk measures based on the distribution of extreme events, such as MaxVaR and Expected Shortfall. Finally, risk measures derived from estimates of the conditional probability distribution of returns can be obtained. To produce these conditional risk estimates, MatRisk includes extensions to carry out time analysis in terms of autoregressive models, such as ARCH, GARCH and MixGARCH (probabilistic mixtures of GARCH models).\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Alberto Suarez\",\"Santiago Carrillo\"],\"publicationdate\":\"2000-07-05\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://fmwww.bc.edu/cef00/papers/paper144.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://journals.kluweronline.com/issn/0927-7099/contents\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://journals.kluweronline.com/issn/0927-7099/contents\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://journals.kluweronline.com/issn/0927-7099/contents\",\"id\":\"oai:RePEc:kap:compec:v:21:y:2003:i:1_2:p:153-172\"},\"trust\":0.98039377}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:sce:scecf0:144"},"target_publication_author_list":{"type":"LIST_STRING","value":["Alberto Suarez","Santiago Carrillo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:kap:compec:v:21:y:2003:i:1_2:p:153-172"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.98039377},"target_publication_title":{"type":"STRING","value":"COMPUTATIONAL TOOLS FOR THE ANALYSIS OF MARKET RISK"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2000-07-05"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1623\",\"titles\":[\"Male circumcision in Britain: findings from a national probability sample survey\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"SEXUALLY-TRANSMITTED-DISEASES, RISK\"],\"creators\":[\"Dave, S. S.\",\"Johnson, A. M.\",\"Fenton, K. A.\",\"Mercer, C. H.\",\"Erens, B.\",\"Wellings, K.\"],\"publicationdate\":\"2003-12-01\",\"publisher\":\"B M J PUBLISHING GROUP\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"PMC1744763\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1623/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC1744763\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC1744763\",\"id\":\"oai:europepmc.org:813623\"},\"trust\":0.6177913}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1623"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dave, S. S.","Johnson, A. M.","Fenton, K. A.","Mercer, C. H.","Erens, B.","Wellings, K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:813623"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["SEXUALLY-TRANSMITTED-DISEASES, RISK"]},"trust":{"type":"FLOAT","value":0.6177913},"target_publication_title":{"type":"STRING","value":"Male circumcision in Britain: findings from a national probability sample survey"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2003-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1623\",\"titles\":[\"Male circumcision in Britain: findings from a national probability sample survey\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"SEXUALLY-TRANSMITTED-DISEASES, RISK\"],\"creators\":[\"Dave, S. S.\",\"Johnson, A. M.\",\"Fenton, K. A.\",\"Mercer, C. H.\",\"Erens, B.\",\"Wellings, K.\"],\"publicationdate\":\"2003-12-01\",\"publisher\":\"B M J PUBLISHING GROUP\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"PMC1744763\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1623/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC1744763\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC1744763\",\"id\":\"oai:europepmc.org:813623\"},\"trust\":0.6177913}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1623"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dave, S. S.","Johnson, A. M.","Fenton, K. A.","Mercer, C. H.","Erens, B.","Wellings, K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:813623"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["SEXUALLY-TRANSMITTED-DISEASES, RISK"]},"trust":{"type":"FLOAT","value":0.6177913},"target_publication_title":{"type":"STRING","value":"Male circumcision in Britain: findings from a national probability sample survey"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2003-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:813623\",\"titles\":[\"Male circumcision in Britain: findings from a national probability sample survey\"],\"abstracts\":[\"\"],\"language\":\"eng\",\"subjects\":[\"Letter\"],\"creators\":[\"Dave, S.\",\"Johnson, A.\",\"Fenton, K.\",\"Mercer, C.\",\"Erens, B.\",\"Wellings, K.\"],\"publicationdate\":\"2003-12-01\",\"publisher\":\"BMJ Group\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC1744763\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC1744763\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://discovery.ucl.ac.uk/1623/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1623/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"UCL Discovery\",\"url\":\"http://discovery.ucl.ac.uk/1623/\",\"id\":\"oai:eprints.ucl.ac.uk.OAI2:1623\"},\"trust\":0.8816386}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:813623"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dave, S.","Johnson, A.","Fenton, K.","Mercer, C.","Erens, B.","Wellings, K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.ucl.ac.uk.OAI2:1623"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Letter"]},"trust":{"type":"FLOAT","value":0.8816386},"target_publication_title":{"type":"STRING","value":"Male circumcision in Britain: findings from a national probability sample survey"},"provenance_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_dateofacceptance":{"type":"DATE","value":"2003-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bpj:strimo:v:31:y:2014:i:1:p:26:n:5\",\"titles\":[\"Optimal control of interbank contagion under complete information\"],\"abstracts\":[\"We study a preferred equity infusion government program set to mitigate interbank contagion. Financial institutions are prone to insolvency risk channeled through the network of interbank debt and to funding liquidity risk. The government seeks to maximize, under budget constraints, the total net worth of the financial system or, equivalently, to minimize the dead-weight losses induced by bank runs. The government is assumed to have complete information on interbank debt. The problem of quantifying the optimal amount of infusions can be expressed as a convex combinatorial optimization problem, tractable when the set of banks eligible for intervention (core banks) is sufficiently, yet realistically, small. We find that no bank has an incentive to withdraw from the program, when the preferred dividend rate paid to the government is equal to the government\\u0027s outside return on the intervention budget. On the other hand, it may be optimal for the government to make infusions in a strict subset of core banks.\"],\"language\":\"und\",\"subjects\":[\"Systemic risk, liquidity risk, bank runs, financial contagion, financial networks, optimal intervention, bail-outs\"],\"creators\":[\"Minca Andreea\",\"Sulem Agnès\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Statistics \\u0026 Risk Modeling\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1524/Strm.2014.5005\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.degruyter.com/view/j/strm.2014.31.issue-1/strm-2013-1165/strm-2013-1165.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1524/Strm.2014.5005\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/hal-00916695\",\"id\":\"oai:hal.inria.fr:hal-00916695\"},\"trust\":0.7912813}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bpj:strimo:v:31:y:2014:i:1:p:26:n:5"},"target_publication_author_list":{"type":"LIST_STRING","value":["Minca Andreea","Sulem Agnès"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:hal-00916695"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Systemic risk, liquidity risk, bank runs, financial contagion, financial networks, optimal intervention, bail-outs"]},"trust":{"type":"FLOAT","value":0.7912813},"target_publication_title":{"type":"STRING","value":"Optimal control of interbank contagion under complete information"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bpj:strimo:v:31:y:2014:i:1:p:26:n:5\",\"titles\":[\"Optimal control of interbank contagion under complete information\"],\"abstracts\":[\"We study a preferred equity infusion government program set to mitigate interbank contagion. Financial institutions are prone to insolvency risk channeled through the network of interbank debt and to funding liquidity risk. The government seeks to maximize, under budget constraints, the total net worth of the financial system or, equivalently, to minimize the dead-weight losses induced by bank runs. The government is assumed to have complete information on interbank debt. The problem of quantifying the optimal amount of infusions can be expressed as a convex combinatorial optimization problem, tractable when the set of banks eligible for intervention (core banks) is sufficiently, yet realistically, small. We find that no bank has an incentive to withdraw from the program, when the preferred dividend rate paid to the government is equal to the government\\u0027s outside return on the intervention budget. On the other hand, it may be optimal for the government to make infusions in a strict subset of core banks.\"],\"language\":\"und\",\"subjects\":[\"Systemic risk, liquidity risk, bank runs, financial contagion, financial networks, optimal intervention, bail-outs\"],\"creators\":[\"Minca Andreea\",\"Sulem Agnès\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Statistics \\u0026 Risk Modeling\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1524/Strm.2014.5005\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.degruyter.com/view/j/strm.2014.31.issue-1/strm-2013-1165/strm-2013-1165.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1524/Strm.2014.5005\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/hal-00916695\",\"id\":\"oai:hal.inria.fr:hal-00916695\"},\"trust\":0.7912813}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bpj:strimo:v:31:y:2014:i:1:p:26:n:5"},"target_publication_author_list":{"type":"LIST_STRING","value":["Minca Andreea","Sulem Agnès"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:hal-00916695"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Systemic risk, liquidity risk, bank runs, financial contagion, financial networks, optimal intervention, bail-outs"]},"trust":{"type":"FLOAT","value":0.7912813},"target_publication_title":{"type":"STRING","value":"Optimal control of interbank contagion under complete information"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bpj:strimo:v:31:y:2014:i:1:p:26:n:5\",\"titles\":[\"Optimal control of interbank contagion under complete information\"],\"abstracts\":[\"We study a preferred equity infusion government program set to mitigate interbank contagion. Financial institutions are prone to insolvency risk channeled through the network of interbank debt and to funding liquidity risk. The government seeks to maximize, under budget constraints, the total net worth of the financial system or, equivalently, to minimize the dead-weight losses induced by bank runs. The government is assumed to have complete information on interbank debt. The problem of quantifying the optimal amount of infusions can be expressed as a convex combinatorial optimization problem, tractable when the set of banks eligible for intervention (core banks) is sufficiently, yet realistically, small. We find that no bank has an incentive to withdraw from the program, when the preferred dividend rate paid to the government is equal to the government\\u0027s outside return on the intervention budget. On the other hand, it may be optimal for the government to make infusions in a strict subset of core banks.\"],\"language\":\"und\",\"subjects\":[\"Systemic risk, liquidity risk, bank runs, financial contagion, financial networks, optimal intervention, bail-outs\"],\"creators\":[\"Minca Andreea\",\"Sulem Agnès\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Statistics \\u0026 Risk Modeling\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.degruyter.com/view/j/strm.2014.31.issue-1/strm-2013-1165/strm-2013-1165.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.inria.fr/hal-00916695\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/hal-00916695\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/hal-00916695\",\"id\":\"oai:hal.inria.fr:hal-00916695\"},\"trust\":0.5008875}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bpj:strimo:v:31:y:2014:i:1:p:26:n:5"},"target_publication_author_list":{"type":"LIST_STRING","value":["Minca Andreea","Sulem Agnès"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:hal-00916695"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Systemic risk, liquidity risk, bank runs, financial contagion, financial networks, optimal intervention, bail-outs"]},"trust":{"type":"FLOAT","value":0.5008875},"target_publication_title":{"type":"STRING","value":"Optimal control of interbank contagion under complete information"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bpj:strimo:v:31:y:2014:i:1:p:26:n:5\",\"titles\":[\"Optimal control of interbank contagion under complete information\"],\"abstracts\":[\"We study a preferred equity infusion government program set to mitigate interbank contagion. Financial institutions are prone to insolvency risk channeled through the network of interbank debt and to funding liquidity risk. The government seeks to maximize, under budget constraints, the total net worth of the financial system or, equivalently, to minimize the dead-weight losses induced by bank runs. The government is assumed to have complete information on interbank debt. The problem of quantifying the optimal amount of infusions can be expressed as a convex combinatorial optimization problem, tractable when the set of banks eligible for intervention (core banks) is sufficiently, yet realistically, small. We find that no bank has an incentive to withdraw from the program, when the preferred dividend rate paid to the government is equal to the government\\u0027s outside return on the intervention budget. On the other hand, it may be optimal for the government to make infusions in a strict subset of core banks.\"],\"language\":\"und\",\"subjects\":[\"Systemic risk, liquidity risk, bank runs, financial contagion, financial networks, optimal intervention, bail-outs\"],\"creators\":[\"Minca Andreea\",\"Sulem Agnès\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Statistics \\u0026 Risk Modeling\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1524/Strm.2014.5005\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.degruyter.com/view/j/strm.2014.31.issue-1/strm-2013-1165/strm-2013-1165.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1524/Strm.2014.5005\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/hal-00916695\",\"id\":\"oai:HAL:hal-00916695v2\"},\"trust\":0.4264267}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bpj:strimo:v:31:y:2014:i:1:p:26:n:5"},"target_publication_author_list":{"type":"LIST_STRING","value":["Minca Andreea","Sulem Agnès"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00916695v2"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Systemic risk, liquidity risk, bank runs, financial contagion, financial networks, optimal intervention, bail-outs"]},"trust":{"type":"FLOAT","value":0.4264267},"target_publication_title":{"type":"STRING","value":"Optimal control of interbank contagion under complete information"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bpj:strimo:v:31:y:2014:i:1:p:26:n:5\",\"titles\":[\"Optimal control of interbank contagion under complete information\"],\"abstracts\":[\"We study a preferred equity infusion government program set to mitigate interbank contagion. Financial institutions are prone to insolvency risk channeled through the network of interbank debt and to funding liquidity risk. The government seeks to maximize, under budget constraints, the total net worth of the financial system or, equivalently, to minimize the dead-weight losses induced by bank runs. The government is assumed to have complete information on interbank debt. The problem of quantifying the optimal amount of infusions can be expressed as a convex combinatorial optimization problem, tractable when the set of banks eligible for intervention (core banks) is sufficiently, yet realistically, small. We find that no bank has an incentive to withdraw from the program, when the preferred dividend rate paid to the government is equal to the government\\u0027s outside return on the intervention budget. On the other hand, it may be optimal for the government to make infusions in a strict subset of core banks.\"],\"language\":\"und\",\"subjects\":[\"Systemic risk, liquidity risk, bank runs, financial contagion, financial networks, optimal intervention, bail-outs\"],\"creators\":[\"Minca Andreea\",\"Sulem Agnès\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Statistics \\u0026 Risk Modeling\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.1524/Strm.2014.5005\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.degruyter.com/view/j/strm.2014.31.issue-1/strm-2013-1165/strm-2013-1165.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1524/Strm.2014.5005\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/hal-00916695\",\"id\":\"oai:HAL:hal-00916695v2\"},\"trust\":0.4264267}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bpj:strimo:v:31:y:2014:i:1:p:26:n:5"},"target_publication_author_list":{"type":"LIST_STRING","value":["Minca Andreea","Sulem Agnès"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00916695v2"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Systemic risk, liquidity risk, bank runs, financial contagion, financial networks, optimal intervention, bail-outs"]},"trust":{"type":"FLOAT","value":0.4264267},"target_publication_title":{"type":"STRING","value":"Optimal control of interbank contagion under complete information"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bpj:strimo:v:31:y:2014:i:1:p:26:n:5\",\"titles\":[\"Optimal control of interbank contagion under complete information\"],\"abstracts\":[\"We study a preferred equity infusion government program set to mitigate interbank contagion. Financial institutions are prone to insolvency risk channeled through the network of interbank debt and to funding liquidity risk. The government seeks to maximize, under budget constraints, the total net worth of the financial system or, equivalently, to minimize the dead-weight losses induced by bank runs. The government is assumed to have complete information on interbank debt. The problem of quantifying the optimal amount of infusions can be expressed as a convex combinatorial optimization problem, tractable when the set of banks eligible for intervention (core banks) is sufficiently, yet realistically, small. We find that no bank has an incentive to withdraw from the program, when the preferred dividend rate paid to the government is equal to the government\\u0027s outside return on the intervention budget. On the other hand, it may be optimal for the government to make infusions in a strict subset of core banks.\"],\"language\":\"und\",\"subjects\":[\"Systemic risk, liquidity risk, bank runs, financial contagion, financial networks, optimal intervention, bail-outs\"],\"creators\":[\"Minca Andreea\",\"Sulem Agnès\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Statistics \\u0026 Risk Modeling\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.degruyter.com/view/j/strm.2014.31.issue-1/strm-2013-1165/strm-2013-1165.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.inria.fr/hal-00916695\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/hal-00916695\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/hal-00916695\",\"id\":\"oai:HAL:hal-00916695v2\"},\"trust\":0.11292565}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bpj:strimo:v:31:y:2014:i:1:p:26:n:5"},"target_publication_author_list":{"type":"LIST_STRING","value":["Minca Andreea","Sulem Agnès"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00916695v2"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Systemic risk, liquidity risk, bank runs, financial contagion, financial networks, optimal intervention, bail-outs"]},"trust":{"type":"FLOAT","value":0.11292565},"target_publication_title":{"type":"STRING","value":"Optimal control of interbank contagion under complete information"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:hal-00916695\",\"titles\":[\"Optimal Control of Interbank Contagion Under Complete Information\"],\"abstracts\":[\"We study the optimal control of interbank contagion, when the government has complete information on interbank exposures. Financial institutions are prone to insolvency risk channeled through the network of exposures and to liquidity risk through bank runs. The government seeks to maximize, under budget constraints the total value of the financial system or, equivalently, to minimize the dead-weight loss induced by bank runs. The problem can be expressed as a convex optimization problem with a combinatorial aspect, tractable when the set of banks eligible for intervention is sufficiently, yet realistically, small\"],\"language\":\"eng\",\"subjects\":[\"[MATH:MATH_GM] Mathematics/General Mathematics\",\"[MATH:MATH_GM] Mathématiques/Mathématiques générales\"],\"creators\":[\"Minca, Andreea\",\"Sulem, Agnès\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1524/Strm.2014.5005\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.inria.fr/hal-00916695\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://www.degruyter.com/view/j/strm.2014.31.issue-1/strm-2013-1165/strm-2013-1165.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.degruyter.com/view/j/strm.2014.31.issue-1/strm-2013-1165/strm-2013-1165.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.degruyter.com/view/j/strm.2014.31.issue-1/strm-2013-1165/strm-2013-1165.xml?format\\u003dINT\",\"id\":\"oai:RePEc:bpj:strimo:v:31:y:2014:i:1:p:26:n:5\"},\"trust\":0.9541829}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:hal-00916695"},"target_publication_author_list":{"type":"LIST_STRING","value":["Minca, Andreea","Sulem, Agnès"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bpj:strimo:v:31:y:2014:i:1:p:26:n:5"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH:MATH_GM] Mathematics/General Mathematics","[MATH:MATH_GM] Mathématiques/Mathématiques générales"]},"trust":{"type":"FLOAT","value":0.9541829},"target_publication_title":{"type":"STRING","value":"Optimal Control of Interbank Contagion Under Complete Information"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:hal-00916695\",\"titles\":[\"Optimal Control of Interbank Contagion Under Complete Information\"],\"abstracts\":[\"We study the optimal control of interbank contagion, when the government has complete information on interbank exposures. Financial institutions are prone to insolvency risk channeled through the network of exposures and to liquidity risk through bank runs. The government seeks to maximize, under budget constraints the total value of the financial system or, equivalently, to minimize the dead-weight loss induced by bank runs. The problem can be expressed as a convex optimization problem with a combinatorial aspect, tractable when the set of banks eligible for intervention is sufficiently, yet realistically, small\"],\"language\":\"eng\",\"subjects\":[\"[MATH:MATH_GM] Mathematics/General Mathematics\",\"[MATH:MATH_GM] Mathématiques/Mathématiques générales\"],\"creators\":[\"Minca, Andreea\",\"Sulem, Agnès\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1524/Strm.2014.5005\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.inria.fr/hal-00916695\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.inria.fr/hal-00916695\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/hal-00916695\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/hal-00916695\",\"id\":\"oai:HAL:hal-00916695v2\"},\"trust\":0.4565149}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:hal-00916695"},"target_publication_author_list":{"type":"LIST_STRING","value":["Minca, Andreea","Sulem, Agnès"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00916695v2"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH:MATH_GM] Mathematics/General Mathematics","[MATH:MATH_GM] Mathématiques/Mathématiques générales"]},"trust":{"type":"FLOAT","value":0.4565149},"target_publication_title":{"type":"STRING","value":"Optimal Control of Interbank Contagion Under Complete Information"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00916695v2\",\"titles\":[\"Optimal Control of Interbank Contagion Under Complete Information\"],\"abstracts\":[\"International audience\",\"We study the optimal control of interbank contagion, when the government has complete information on interbank exposures. Financial institutions are prone to insolvency risk channeled through the network of exposures and to liquidity risk through bank runs. The government seeks to maximize, under budget constraints the total value of the financial system or, equivalently, to minimize the dead-weight loss induced by bank runs. The problem can be expressed as a convex optimization problem with a combinatorial aspect, tractable when the set of banks eligible for intervention is sufficiently, yet realistically, small\"],\"language\":\"eng\",\"subjects\":[\"C6; G18; G21; G28; G33\",\"[MATH.MATH-GM] Mathematics/General Mathematics\"],\"creators\":[\"Minca, Andreea\",\"Sulem, Agnès\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"De Gruyter\",\"embargoenddate\":\"\",\"contributor\":[\"Computer Systems Lab - School of Electrical and Computer Engineering - Cornell University (CSL) ; Cornell University\",\"MATHRISK (INRIA Paris-Rocquencourt) ; INRIA - Université Paris-Est Marne-la-Vallée (UPEMLV) - École des Ponts ParisTech (ENPC)\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1524/Strm.2014.5005\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.inria.fr/hal-00916695\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.degruyter.com/view/j/strm.2014.31.issue-1/strm-2013-1165/strm-2013-1165.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.degruyter.com/view/j/strm.2014.31.issue-1/strm-2013-1165/strm-2013-1165.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.degruyter.com/view/j/strm.2014.31.issue-1/strm-2013-1165/strm-2013-1165.xml?format\\u003dINT\",\"id\":\"oai:RePEc:bpj:strimo:v:31:y:2014:i:1:p:26:n:5\"},\"trust\":0.22681671}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00916695v2"},"target_publication_author_list":{"type":"LIST_STRING","value":["Minca, Andreea","Sulem, Agnès"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bpj:strimo:v:31:y:2014:i:1:p:26:n:5"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["C6; G18; G21; G28; G33","[MATH.MATH-GM] Mathematics/General Mathematics"]},"trust":{"type":"FLOAT","value":0.22681671},"target_publication_title":{"type":"STRING","value":"Optimal Control of Interbank Contagion Under Complete Information"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00916695v2\",\"titles\":[\"Optimal Control of Interbank Contagion Under Complete Information\"],\"abstracts\":[\"International audience\",\"We study the optimal control of interbank contagion, when the government has complete information on interbank exposures. Financial institutions are prone to insolvency risk channeled through the network of exposures and to liquidity risk through bank runs. The government seeks to maximize, under budget constraints the total value of the financial system or, equivalently, to minimize the dead-weight loss induced by bank runs. The problem can be expressed as a convex optimization problem with a combinatorial aspect, tractable when the set of banks eligible for intervention is sufficiently, yet realistically, small\"],\"language\":\"eng\",\"subjects\":[\"C6; G18; G21; G28; G33\",\"[MATH.MATH-GM] Mathematics/General Mathematics\"],\"creators\":[\"Minca, Andreea\",\"Sulem, Agnès\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"De Gruyter\",\"embargoenddate\":\"\",\"contributor\":[\"Computer Systems Lab - School of Electrical and Computer Engineering - Cornell University (CSL) ; Cornell University\",\"MATHRISK (INRIA Paris-Rocquencourt) ; INRIA - Université Paris-Est Marne-la-Vallée (UPEMLV) - École des Ponts ParisTech (ENPC)\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1524/Strm.2014.5005\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.inria.fr/hal-00916695\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.inria.fr/hal-00916695\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/hal-00916695\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/hal-00916695\",\"id\":\"oai:hal.inria.fr:hal-00916695\"},\"trust\":0.84963787}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00916695v2"},"target_publication_author_list":{"type":"LIST_STRING","value":["Minca, Andreea","Sulem, Agnès"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:hal-00916695"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["C6; G18; G21; G28; G33","[MATH.MATH-GM] Mathematics/General Mathematics"]},"trust":{"type":"FLOAT","value":0.84963787},"target_publication_title":{"type":"STRING","value":"Optimal Control of Interbank Contagion Under Complete Information"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:223159\",\"titles\":[\"QoS-aware bandwidth provisioning for IP network links\"],\"abstracts\":[\"Current bandwidth provisioning procedures for IP network links are mostly based on simple rules of thumb, using coarse traffic measurements made on a time scale of e.g., 5 or 15 minutes. A crucial question, however, is whether such coarse measurements give any useful insight into the capacity actually needed: QoS degradation experienced by the users is strongly affected by traffic rate fluctuations on a much smaller time scale. The present paper addresses this question. The goal is to develop provisioning procedures that require a minimal measurement effort. \\nThe bandwidth provisioning formula that we propose (and which we justify under minimal model assumptions) is of the form Click to view the MathML source. Here ρ (in Mbit/s) is the load of the system, which can evidently be estimated by coarse traffic measurements (e.g., 5 or 15 min measurements). The α depends on the characteristics of the individual flows and the QoS requirements. The QoS measure used is the probability that the traffic supply exceeds the available bandwidth, over some predefined (small) interval T, is below some small fixed number ε. The impact of changing the ‘QoS parameters’, i.e., T and ε, on the coefficient α is explicitly given. The validity of the bandwidth provisioning rule is assessed through extensive measurements performed in several operational network environments.\\n\\n\"],\"language\":\"und\",\"subjects\":[\"Provisioning\",\"IP networks\",\"Gaussian traffic\"],\"creators\":[\"Berg, H. Den\",\"Mandjes, M. R. H.\",\"Meent, R.\",\"Pras, A.\",\"Roijers, F.\",\"Venemans, P. H. A.\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://dare.uva.nl/record/223159\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/11245/1.259780\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/11245/1.259780\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/11245/1.259780\",\"id\":\"uvapub:oai:uva.nl:259780\"},\"trust\":0.5063388}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:223159"},"target_publication_author_list":{"type":"LIST_STRING","value":["Berg, H. Den","Mandjes, M. R. H.","Meent, R.","Pras, A.","Roijers, F.","Venemans, P. H. A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uvapub:oai:uva.nl:259780"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Provisioning","IP networks","Gaussian traffic"]},"trust":{"type":"FLOAT","value":0.5063388},"target_publication_title":{"type":"STRING","value":"QoS-aware bandwidth provisioning for IP network links"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:223159\",\"titles\":[\"QoS-aware bandwidth provisioning for IP network links\"],\"abstracts\":[\"Current bandwidth provisioning procedures for IP network links are mostly based on simple rules of thumb, using coarse traffic measurements made on a time scale of e.g., 5 or 15 minutes. A crucial question, however, is whether such coarse measurements give any useful insight into the capacity actually needed: QoS degradation experienced by the users is strongly affected by traffic rate fluctuations on a much smaller time scale. The present paper addresses this question. The goal is to develop provisioning procedures that require a minimal measurement effort. \\nThe bandwidth provisioning formula that we propose (and which we justify under minimal model assumptions) is of the form Click to view the MathML source. Here ρ (in Mbit/s) is the load of the system, which can evidently be estimated by coarse traffic measurements (e.g., 5 or 15 min measurements). The α depends on the characteristics of the individual flows and the QoS requirements. The QoS measure used is the probability that the traffic supply exceeds the available bandwidth, over some predefined (small) interval T, is below some small fixed number ε. The impact of changing the ‘QoS parameters’, i.e., T and ε, on the coefficient α is explicitly given. The validity of the bandwidth provisioning rule is assessed through extensive measurements performed in several operational network environments.\\n\\n\"],\"language\":\"und\",\"subjects\":[\"Provisioning\",\"IP networks\",\"Gaussian traffic\"],\"creators\":[\"Berg, H. Den\",\"Mandjes, M. R. H.\",\"Meent, R.\",\"Pras, A.\",\"Roijers, F.\",\"Venemans, P. H. A.\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://dare.uva.nl/record/223159\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://repository.cwi.nl/noauth/search/fullrecord.php?publnr\\u003d4044\",\"license\":\"OPEN\",\"hostedby\":\"Repository CWI Amsterdam\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.cwi.nl/noauth/search/fullrecord.php?publnr\\u003d4044\",\"license\":\"OPEN\",\"hostedby\":\"Repository CWI Amsterdam\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.cwi.nl/noauth/search/fullrecord.php?publnr\\u003d4044\",\"id\":\"cwi:oai:cwi.nl:4044\"},\"trust\":0.7020829}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:223159"},"target_publication_author_list":{"type":"LIST_STRING","value":["Berg, H. Den","Mandjes, M. R. H.","Meent, R.","Pras, A.","Roijers, F.","Venemans, P. H. A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["cwi:oai:cwi.nl:4044"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Provisioning","IP networks","Gaussian traffic"]},"trust":{"type":"FLOAT","value":0.7020829},"target_publication_title":{"type":"STRING","value":"QoS-aware bandwidth provisioning for IP network links"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00236524v1\",\"titles\":[\"Diffusion protons-protons à 155 Mev\"],\"abstracts\":[\"La section efficace différentielle de diffusion p-p à 155 MeV a été mesurée en utilisant une cible à hydrogène liquide, entre 8° et 90° CM. Nos résultats se recoupent.avec ceux que nous avons obtenus précédemment entre 30° et 110° CM en utilisant une cible de polythène.\"],\"language\":\"fra/fre\",\"subjects\":[\"proton proton scattering\",\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Caverzasio, C.\",\"Kuroda, K.\",\"Michalowicz, A.\"],\"publicationdate\":\"1961-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphysrad:019610022010062800\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00236524\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00236524\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00236524\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00236524\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00236524\"},\"trust\":0.69879663}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00236524v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Caverzasio, C.","Kuroda, K.","Michalowicz, A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00236524"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["proton proton scattering","[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.69879663},"target_publication_title":{"type":"STRING","value":"Diffusion protons-protons à 155 Mev"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1961-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00236524\",\"titles\":[\"Diffusion protons-protons à 155 Mev\"],\"abstracts\":[\"La section efficace différentielle de diffusion p-p à 155 MeV a été mesurée en utilisant une cible à hydrogène liquide, entre 8° et 90° CM. Nos résultats se recoupent.avec ceux que nous avons obtenus précédemment entre 30° et 110° CM en utilisant une cible de polythène.\"],\"language\":\"fra/fre\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\",\"proton proton scattering\"],\"creators\":[\"Caverzasio, C.\",\"Kuroda, K.\",\"Michalowicz, A.\"],\"publicationdate\":\"1961-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphysrad:019610022010062800\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00236524\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00236524\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00236524\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00236524\",\"id\":\"oai:HAL:jpa-00236524v1\"},\"trust\":0.8855527}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00236524"},"target_publication_author_list":{"type":"LIST_STRING","value":["Caverzasio, C.","Kuroda, K.","Michalowicz, A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00236524v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens","proton proton scattering"]},"trust":{"type":"FLOAT","value":0.8855527},"target_publication_title":{"type":"STRING","value":"Diffusion protons-protons à 155 Mev"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1961-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/2225\",\"titles\":[\"The division of labor within firms\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"ddc:330\",\"Arbeitsorganisation\",\"Arbeitsteilung\",\"Innerbetriebliche Kommunikation\",\"Theorie der Unternehmung\"],\"creators\":[\"Lindbeck, Assar\",\"Snower, Dennis J.\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"Centre for Economic Policy Research London\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/2225\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/988\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/988\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/988\",\"id\":\"oai:econstor.eu:10419/988\"},\"trust\":0.42313492}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/2225"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lindbeck, Assar","Snower, Dennis J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/988"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330","Arbeitsorganisation","Arbeitsteilung","Innerbetriebliche Kommunikation","Theorie der Unternehmung"]},"trust":{"type":"FLOAT","value":0.42313492},"target_publication_title":{"type":"STRING","value":"The division of labor within firms"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/2225\",\"titles\":[\"The division of labor within firms\"],\"abstracts\":[\"The paper examines the determinants of the division of labor within firms. It provides an explanation of the pervasive change in work organization away from the traditional functional departments and towards multi-tasking and job rotation. Whereas the existing literature on the division of labor within firms emphasizes the returns from specialization and the need for coordination of the work of different workers, the present analysis focuses on the returns from multi-tasking, which is shown to arise from informational and technological complementarities among tasks as well as from the exploitation of the versatility of human capital.\"],\"language\":\"eng\",\"subjects\":[\"ddc:330\",\"Arbeitsorganisation\",\"Arbeitsteilung\",\"Innerbetriebliche Kommunikation\",\"Theorie der Unternehmung\"],\"creators\":[\"Lindbeck, Assar\",\"Snower, Dennis J.\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"Centre for Economic Policy Research London\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/2225\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"The paper examines the determinants of the division of labor within firms. It provides an explanation of the pervasive change in work organization away from the traditional functional departments and towards multi-tasking and job rotation. Whereas the existing literature on the division of labor within firms emphasizes the returns from specialization and the need for coordination of the work of different workers, the present analysis focuses on the returns from multi-tasking, which is shown to arise from informational and technological complementarities among tasks as well as from the exploitation of the versatility of human capital.\"]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/988\",\"id\":\"oai:econstor.eu:10419/988\"},\"trust\":0.5869505}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/2225"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lindbeck, Assar","Snower, Dennis J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/988"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330","Arbeitsorganisation","Arbeitsteilung","Innerbetriebliche Kommunikation","Theorie der Unternehmung"]},"trust":{"type":"FLOAT","value":0.5869505},"target_publication_title":{"type":"STRING","value":"The division of labor within firms"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/2225\",\"titles\":[\"The division of labor within firms\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"ddc:330\",\"Arbeitsorganisation\",\"Arbeitsteilung\",\"Innerbetriebliche Kommunikation\",\"Theorie der Unternehmung\"],\"creators\":[\"Lindbeck, Assar\",\"Snower, Dennis J.\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"Centre for Economic Policy Research London\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/2225\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-40992\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Stockholms universitet\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-40992\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Stockholms universitet\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"Publikationer från Stockholms universitet\",\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-40992\",\"id\":\"oai:DiVA.org:su-40992\"},\"trust\":0.30046564}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/2225"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lindbeck, Assar","Snower, Dennis J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:DiVA.org:su-40992"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8c19f571e251e61cb8dd3612f26d5ecf"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330","Arbeitsorganisation","Arbeitsteilung","Innerbetriebliche Kommunikation","Theorie der Unternehmung"]},"trust":{"type":"FLOAT","value":0.30046564},"target_publication_title":{"type":"STRING","value":"The division of labor within firms"},"provenance_datasource_name":{"type":"STRING","value":"Publikationer från Stockholms universitet"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/2225\",\"titles\":[\"The division of labor within firms\"],\"abstracts\":[\"The paper examines the determintants of the division of labor within firms. It provides an explanation of the pervasive change in work organization away from the traditional functional departments and towards multi-tasking and job rotation. Whereas the existing literature on the division of labor within firms emphasizes the returns from specialization and the need for coordination of the work of different workers, the persent analysis focuses on the returns from multi-tasking, which is shown to arise from informational and technological complementaries among tasks as well as from the exploitation of the versatility of human capital. \"],\"language\":\"eng\",\"subjects\":[\"ddc:330\",\"Arbeitsorganisation\",\"Arbeitsteilung\",\"Innerbetriebliche Kommunikation\",\"Theorie der Unternehmung\"],\"creators\":[\"Lindbeck, Assar\",\"Snower, Dennis J.\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"Centre for Economic Policy Research London\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/2225\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"The paper examines the determintants of the division of labor within firms. It provides an explanation of the pervasive change in work organization away from the traditional functional departments and towards multi-tasking and job rotation. Whereas the existing literature on the division of labor within firms emphasizes the returns from specialization and the need for coordination of the work of different workers, the persent analysis focuses on the returns from multi-tasking, which is shown to arise from informational and technological complementaries among tasks as well as from the exploitation of the versatility of human capital. \"]},\"provenance\":{\"repositoryName\":\"Publikationer från Stockholms universitet\",\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-40992\",\"id\":\"oai:DiVA.org:su-40992\"},\"trust\":0.258286}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/2225"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lindbeck, Assar","Snower, Dennis J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:DiVA.org:su-40992"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8c19f571e251e61cb8dd3612f26d5ecf"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330","Arbeitsorganisation","Arbeitsteilung","Innerbetriebliche Kommunikation","Theorie der Unternehmung"]},"trust":{"type":"FLOAT","value":0.258286},"target_publication_title":{"type":"STRING","value":"The division of labor within firms"},"provenance_datasource_name":{"type":"STRING","value":"Publikationer från Stockholms universitet"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/988\",\"titles\":[\"The division of labor within firms\"],\"abstracts\":[\"The paper examines the determinants of the division of labor within firms. It provides an explanation of the pervasive change in work organization away from the traditional functional departments and towards multi-tasking and job rotation. Whereas the existing literature on the division of labor within firms emphasizes the returns from specialization and the need for coordination of the work of different workers, the present analysis focuses on the returns from multi-tasking, which is shown to arise from informational and technological complementarities among tasks as well as from the exploitation of the versatility of human capital.\"],\"language\":\"eng\",\"subjects\":[\"J23\",\"J24\",\"L23\",\"M12\",\"O33\",\"ddc:330\",\"division of labor\",\"specialization\",\"multi-tasking\",\"organization of work\",\"technological change\",\"information flows\"],\"creators\":[\"Lindbeck, Assar\",\"Snower, Dennis J.\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"Inst. for Internat. Economic Studies Stockholm\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/988\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/2225\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/2225\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/2225\",\"id\":\"oai:econstor.eu:10419/2225\"},\"trust\":0.988876}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/988"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lindbeck, Assar","Snower, Dennis J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/2225"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["J23","J24","L23","M12","O33","ddc:330","division of labor","specialization","multi-tasking","organization of work","technological change","information flows"]},"trust":{"type":"FLOAT","value":0.988876},"target_publication_title":{"type":"STRING","value":"The division of labor within firms"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/988\",\"titles\":[\"The division of labor within firms\"],\"abstracts\":[\"The paper examines the determinants of the division of labor within firms. It provides an explanation of the pervasive change in work organization away from the traditional functional departments and towards multi-tasking and job rotation. Whereas the existing literature on the division of labor within firms emphasizes the returns from specialization and the need for coordination of the work of different workers, the present analysis focuses on the returns from multi-tasking, which is shown to arise from informational and technological complementarities among tasks as well as from the exploitation of the versatility of human capital.\"],\"language\":\"eng\",\"subjects\":[\"J23\",\"J24\",\"L23\",\"M12\",\"O33\",\"ddc:330\",\"division of labor\",\"specialization\",\"multi-tasking\",\"organization of work\",\"technological change\",\"information flows\"],\"creators\":[\"Lindbeck, Assar\",\"Snower, Dennis J.\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"Inst. for Internat. Economic Studies Stockholm\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/988\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-40992\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Stockholms universitet\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-40992\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Stockholms universitet\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"Publikationer från Stockholms universitet\",\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-40992\",\"id\":\"oai:DiVA.org:su-40992\"},\"trust\":0.30575258}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/988"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lindbeck, Assar","Snower, Dennis J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:DiVA.org:su-40992"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8c19f571e251e61cb8dd3612f26d5ecf"},"target_publication_subject_list":{"type":"LIST_STRING","value":["J23","J24","L23","M12","O33","ddc:330","division of labor","specialization","multi-tasking","organization of work","technological change","information flows"]},"trust":{"type":"FLOAT","value":0.30575258},"target_publication_title":{"type":"STRING","value":"The division of labor within firms"},"provenance_datasource_name":{"type":"STRING","value":"Publikationer från Stockholms universitet"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:DiVA.org:su-40992\",\"titles\":[\"The Division of Labor within Firms\"],\"abstracts\":[\"The paper examines the determintants of the division of labor within firms. It provides an explanation of the pervasive change in work organization away from the traditional functional departments and towards multi-tasking and job rotation. Whereas the existing literature on the division of labor within firms emphasizes the returns from specialization and the need for coordination of the work of different workers, the persent analysis focuses on the returns from multi-tasking, which is shown to arise from informational and technological complementaries among tasks as well as from the exploitation of the versatility of human capital. \"],\"language\":\"eng\",\"subjects\":[\"Division of labor\",\"specialization\",\"multi-tasking\",\"organization of work\",\"technological change\",\"information flows\",\"Economics\",\"Nationalekonomi\"],\"creators\":[\"Lindbeck, Assar\",\"Snower, Dennis J.\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"Stockholm : IIES\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Publikationer från Stockholms universitet\"],\"pids\":[],\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-40992\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Stockholms universitet\",\"instancetype\":\"Report\"},{\"url\":\"http://hdl.handle.net/10419/2225\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/2225\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/2225\",\"id\":\"oai:econstor.eu:10419/2225\"},\"trust\":0.85991985}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Publikationer från Stockholms universitet"},"target_publication_id":{"type":"STRING","value":"oai:DiVA.org:su-40992"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lindbeck, Assar","Snower, Dennis J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/2225"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Division of labor","specialization","multi-tasking","organization of work","technological change","information flows","Economics","Nationalekonomi"]},"trust":{"type":"FLOAT","value":0.85991985},"target_publication_title":{"type":"STRING","value":"The Division of Labor within Firms"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8c19f571e251e61cb8dd3612f26d5ecf"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:DiVA.org:su-40992\",\"titles\":[\"The Division of Labor within Firms\"],\"abstracts\":[\"The paper examines the determintants of the division of labor within firms. It provides an explanation of the pervasive change in work organization away from the traditional functional departments and towards multi-tasking and job rotation. Whereas the existing literature on the division of labor within firms emphasizes the returns from specialization and the need for coordination of the work of different workers, the persent analysis focuses on the returns from multi-tasking, which is shown to arise from informational and technological complementaries among tasks as well as from the exploitation of the versatility of human capital. \"],\"language\":\"eng\",\"subjects\":[\"Division of labor\",\"specialization\",\"multi-tasking\",\"organization of work\",\"technological change\",\"information flows\",\"Economics\",\"Nationalekonomi\"],\"creators\":[\"Lindbeck, Assar\",\"Snower, Dennis J.\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"Stockholm : IIES\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Publikationer från Stockholms universitet\"],\"pids\":[],\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:su:diva-40992\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Stockholms universitet\",\"instancetype\":\"Report\"},{\"url\":\"http://hdl.handle.net/10419/988\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/988\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/988\",\"id\":\"oai:econstor.eu:10419/988\"},\"trust\":0.5833359}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Publikationer från Stockholms universitet"},"target_publication_id":{"type":"STRING","value":"oai:DiVA.org:su-40992"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lindbeck, Assar","Snower, Dennis J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/988"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Division of labor","specialization","multi-tasking","organization of work","technological change","information flows","Economics","Nationalekonomi"]},"trust":{"type":"FLOAT","value":0.5833359},"target_publication_title":{"type":"STRING","value":"The Division of Labor within Firms"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8c19f571e251e61cb8dd3612f26d5ecf"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3196108\",\"titles\":[\"Directional interactions between current and prior saccades\"],\"abstracts\":[\"One way to explore how prior sensory and motor events impact eye movements is to ask someone to look to targets located about a central point, returning gaze to the central point after each eye movement. Concerned about the contribution of this return to center movement, Anderson et al. (2008) used a sequential saccade paradigm in which participants made a continuous series of saccades to peripheral targets that appeared to the left or right of the currently fixated location in a random sequence (the next eye movement began from the last target location). Examining the effects of previous saccades (n−x) on current saccade latency (n), they found that saccadic reaction times (RT) were reduced when the direction of the current saccade matched that of a preceding saccade (e.g., two left saccades), even when the two saccades in question were separated by multiple saccades in any direction. We examined if this pattern extends to conditions in which targets appear inside continuously marked locations that provide stable visual features (i.e., target “placeholders”) and when saccades are prompted by central arrows. Participants completed 3 conditions: peripheral targets (PT; continuous, sequential saccades to peripherally presented targets) without placeholders; PT with placeholders; and centrally presented arrows (CA; left or right pointing arrows at the currently fixated location instructing participants to saccade to the left or right). We found reduced saccadic RT when the immediately preceding saccade (n−1) was in the same (vs. opposite) direction in the PT without placeholders and CA conditions. This effect varied when considering the effect of the previous 2–5 (n−x) saccades on current saccade latency (n). The effects of previous eye movements on current saccade latency may be determined by multiple, time-varying mechanisms related to sensory (i.e., retinotopic location), motor (i.e., saccade direction), and environmental (i.e., persistent visual objects) factors.\"],\"language\":\"eng\",\"subjects\":[\"Neuroscience\",\"Original Research Article\",\"saccade latency\",\"peripheral cue\",\"central cue\",\"random walk paradigm\",\"sequential saccades\"],\"creators\":[\"Jones, Stephanie A. H.\",\"Cowper-Smith, Christopher D.\",\"Westwood, David A.\"],\"publicationdate\":\"2014-10-01\",\"publisher\":\"Frontiers Media S.A.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Frontiers in Human Neuroscience\",\"issn\":\"\",\"eissn\":\"1662-5161\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3389/fnhum.2014.00872\",\"type\":\"doi\"},{\"value\":\"PMC4211295\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4211295\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.3389/fnhum.2014.00872\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Human Neuroscience\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.3389/fnhum.2014.00872\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Human Neuroscience\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Frontiers\",\"url\":\"http://dx.doi.org/10.3389/fnhum.2014.00872\",\"id\":\"10.3389/fnhum.2014.00872\"},\"trust\":0.72155905}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3196108"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jones, Stephanie A. H.","Cowper-Smith, Christopher D.","Westwood, David A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.3389/fnhum.2014.00872"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::3db634fc5446f389d0b826ea400a5da6"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Neuroscience","Original Research Article","saccade latency","peripheral cue","central cue","random walk paradigm","sequential saccades"]},"trust":{"type":"FLOAT","value":0.72155905},"target_publication_title":{"type":"STRING","value":"Directional interactions between current and prior saccades"},"provenance_datasource_name":{"type":"STRING","value":"Frontiers"},"target_dateofacceptance":{"type":"DATE","value":"2014-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ysm:somwrk:ysm210\",\"titles\":[\"Is the Opportunity Cost of Idle Capacity Zero? Coase (1938) Versus Managerial Accounting Circa 2000\"],\"abstracts\":[\"Many accounting textbooks state that the opportunity cost of idle fixed assets is zero. A few exceptions may refer to factors such as repair and overhaul, employee vacation and congestion that give rise to strictly positive opportunity cost. We show that in important and frequently encountered situations, idled assets have positive opportunity cost arising from extension of their useful life. We also present a simple framework to help managers identify such situations and correctly assess opportunity costs.\"],\"language\":\"und\",\"subjects\":[\"Opportunity Cost, Resource Management, Time-Based Costing, Resource Granularity, Decision-Making\"],\"creators\":[\"Ramamurthy oRamjio Balakrishnan\",\"Sivaramakrishnan, K.\",\"Nmi, Shyam Sunder\"],\"publicationdate\":\"2001-07-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://papers.ssrn.com/sol3/papers.cfm?abstract_id\\u003d275497\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://papers.ssrn.com/sol3/papers.cfm?abstract_id\\u003d326341\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://papers.ssrn.com/sol3/papers.cfm?abstract_id\\u003d326341\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://papers.ssrn.com/sol3/papers.cfm?abstract_id\\u003d326341\",\"id\":\"oai:RePEc:ysm:somwrk:ysm302\"},\"trust\":0.20135903}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ysm:somwrk:ysm210"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ramamurthy oRamjio Balakrishnan","Sivaramakrishnan, K.","Nmi, Shyam Sunder"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ysm:somwrk:ysm302"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Opportunity Cost, Resource Management, Time-Based Costing, Resource Granularity, Decision-Making"]},"trust":{"type":"FLOAT","value":0.20135903},"target_publication_title":{"type":"STRING","value":"Is the Opportunity Cost of Idle Capacity Zero? Coase (1938) Versus Managerial Accounting Circa 2000"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2001-07-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ysm:somwrk:ysm302\",\"titles\":[\"Is the Opportunity Cost of Idle Capacity Zero? Coase (1938) Versus Managerial Accounting Circa 2000\"],\"abstracts\":[\"Many accounting textbooks state that the opportunity cost of idle fixed assets is zero. A few exceptions refer to repair, overhaul, employee vacation and congestion, giving rise to positive opportunity cost. We show that in important and frequently encountered situations, idled assets have positive opportunity cost arising from extension of their useful life. We also present a simple framework to help managers identify such situations and correctly assess opportunity cost.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Ramamurthy oRamjio Balakrishnan\",\"Sivaramakrishnan, K.\",\"Nmi, Shyam Sunder\"],\"publicationdate\":\"2002-09-23\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://papers.ssrn.com/sol3/papers.cfm?abstract_id\\u003d326341\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://papers.ssrn.com/sol3/papers.cfm?abstract_id\\u003d275497\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://papers.ssrn.com/sol3/papers.cfm?abstract_id\\u003d275497\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://papers.ssrn.com/sol3/papers.cfm?abstract_id\\u003d275497\",\"id\":\"oai:RePEc:ysm:somwrk:ysm210\"},\"trust\":0.28831285}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ysm:somwrk:ysm302"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ramamurthy oRamjio Balakrishnan","Sivaramakrishnan, K.","Nmi, Shyam Sunder"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ysm:somwrk:ysm210"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.28831285},"target_publication_title":{"type":"STRING","value":"Is the Opportunity Cost of Idle Capacity Zero? Coase (1938) Versus Managerial Accounting Circa 2000"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2002-09-23"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2388805\",\"titles\":[\"Synthesis and Characterization of Hybrid Materials Consisting of n-octadecyltriethoxysilane by Using n-Hexadecylamine as Surfactant and Q0 and T0 Cross-Linkers\"],\"abstracts\":[\"Novel hybrid xerogel materials were synthesized by a sol-gel procedure. n-octadecyltriethoxysilane was co-condensed with and without different cross-linkers using Q 0 and T 0 mono-functionalized organosilanes in the presence of n-hexadecylamine with different hydroxyl silica functional groups at the surface. These polymer networks have shown new properties, for example, a high degree of cross-linking and hydrolysis. Two different synthesis steps were carried out: simple self-assembly followed by sol-gel transition and precipitation of homogenous sols. Due to the lack of solubility of these materials, the compositions of the new materials were determined by infrared spectroscopy, 13C and 29Si CP/MAS NMR spectroscopy and scanning electron microscopy.\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"sol-gel\",\"solid state NMR\",\"cross-linkers\",\"stationary phases\"],\"creators\":[\"Warad, Ismail\",\"Omar Abd-Elkader, H.\",\"Al-Resayes, Saud\",\"Husein, Ahmad\",\"Al-Nuri, Mohammed\",\"Boshaala, Ahmed\",\"Al-Zaqri, Nabil\",\"Ben Hadda, Taibi\"],\"publicationdate\":\"2012-05-01\",\"publisher\":\"Molecular Diversity Preservation International (MDPI)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"International Journal of Molecular Sciences\",\"issn\":\"\",\"eissn\":\"1422-0067\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3390/ijms13056279\",\"type\":\"doi\"},{\"value\":\"PMC3382804\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3382804\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.mdpi.com/1422-0067/13/5/6279\",\"license\":\"OPEN\",\"hostedby\":\"International Journal of Molecular Sciences\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.mdpi.com/1422-0067/13/5/6279\",\"license\":\"OPEN\",\"hostedby\":\"International Journal of Molecular Sciences\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.mdpi.com/1422-0067/13/5/6279\",\"id\":\"oai:doaj.org/article:94e29d183ce548e994e9137ca40f70af\"},\"trust\":0.7388679}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2388805"},"target_publication_author_list":{"type":"LIST_STRING","value":["Warad, Ismail","Omar Abd-Elkader, H.","Al-Resayes, Saud","Husein, Ahmad","Al-Nuri, Mohammed","Boshaala, Ahmed","Al-Zaqri, Nabil","Ben Hadda, Taibi"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:94e29d183ce548e994e9137ca40f70af"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","sol-gel","solid state NMR","cross-linkers","stationary phases"]},"trust":{"type":"FLOAT","value":0.7388679},"target_publication_title":{"type":"STRING","value":"Synthesis and Characterization of Hybrid Materials Consisting of n-octadecyltriethoxysilane by Using n-Hexadecylamine as Surfactant and Q0 and T0 Cross-Linkers"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/418576\",\"titles\":[\"The effects of deoxynivalenol on gene expression in the murine thymus\"],\"abstracts\":[\"Deoxynivalenol (DON) is a mycotoxin produced by several Fusarium species and is often detected in grains. Because of its high abundance, there has been a large interest in the effects of DON in animals and humans. DON is known to be immunosuppressive at high concentrations and immunostimulatory at low concentrations. The present study aimed to acquire insight into the modes of action of DON. For this, C57Bl6 mice were orally exposed to 5, 10, or 25 mg/kg bw DON for 3, 6, or 24 h and thymuses were subjected to genome-wide expression microarray analysis. Gene set enrichment analysis (GSEA) demonstrated that DON downregulated genes involved in proliferation, mitochondria, protein synthesis, and ribosomal proteins. Furthermore, GSEA showed a selective downregulation of genes highly expressed at the early precursor thymocytes stage. This indicates that early precursor thymocytes, particularly at the double-positive CD4+CD8+ stage, are more vulnerable to DON than very early or late precursor thymocytes. There was a large overlap of genes upregulated by DON with genes previously reported to be either upregulated during T cell activation or upregulated during negative selection of thymocytes that recognize “self-antigens”. This indicates that DON induces cellular events that also occur after activation of the T cell receptor, for example, release of calcium from the endoplasmatic reticulum. This T cell activation in the thymus then evokes negative selection and depletion of thymocytes, which provides a plausible explanation for the high sensitivity of the thymus for DON exposure. The expression patterns of four genes indicative for some of the processes that were affected after DON treatment were confirmed using real-time PCR. Immunocytological experiments with primary mouse thymocytes demonstrated the translocation of NFAT from the cytoplasm into the nucleus upon exposure top DON, thus providing further evidence for the involvement of T cell activation.\"],\"language\":\"eng\",\"subjects\":[\"trichothecene vomitoxin deoxynivalenol\",\"human cell-cycle\",\"oral-exposure\",\"in-vivo\",\"tissue distribution\",\"negative selection\",\"immune-response\",\"t-cells\",\"mechanisms\",\"mouse\"],\"creators\":[\"Kol, S.\",\"Hendriksen, P. J. M.\",\"Loveren, H.\",\"Peijnenburg, A. A. C. M.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/192770\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/418576\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/418576\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/418576\",\"id\":\"wur:oai:library.wur.nl:wurpubs/418576\"},\"trust\":0.41694188}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/418576"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kol, S.","Hendriksen, P. J. M.","Loveren, H.","Peijnenburg, A. A. C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/418576"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["trichothecene vomitoxin deoxynivalenol","human cell-cycle","oral-exposure","in-vivo","tissue distribution","negative selection","immune-response","t-cells","mechanisms","mouse"]},"trust":{"type":"FLOAT","value":0.41694188},"target_publication_title":{"type":"STRING","value":"The effects of deoxynivalenol on gene expression in the murine thymus"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:rom:econmn:v:15:y:2012:i:1:p:189-203\",\"titles\":[\"Taylor Principle Supplements the Fisher Effect: Empirical Investigation under the US Context\"],\"abstracts\":[\"This paper reviews the short- and long-run dynamics of interest rate and inflation of the United States. Basing upon quarterly as well as monthly data over the period 1957 to 2010, we find evidence that interest rate behaviour of the Federal Reserve is consistent with the Taylor principle in short run and with the Fisher hypothesis in long run. Entire sample justifies the existence of a long run cointegrating relationship between federal funds rate and inflation characterised as the Fisher effect. When data are split into different subsamples, the cointegrating relationship disappears. Interest rate dynamics of pre-1980 and post-2001 neither track Fisher hypothesis nor Taylor principle, rather represent substantial discretion.\"],\"language\":\"und\",\"subjects\":[\"Fisher Effect, Monetary Policy, Taylor Principle.\"],\"creators\":[\"Islam, Mohammed Saiful\",\"Ali, Mohammad Hasmat\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"ECONOMIA seria MANAGEMENT / ECONOMY - MANAGEMENT series\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.management.ase.ro/reveconomia/2012-1/15.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.management.ase.ro/reveconomia/2012-1/15.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Economia : Seria Management\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.management.ase.ro/reveconomia/2012-1/15.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Economia : Seria Management\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.management.ase.ro/reveconomia/2012-1/15.pdf\",\"id\":\"oai:doaj.org/article:c27d1dae7ef64a9093ba55b09e54f7c1\"},\"trust\":0.33952826}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:rom:econmn:v:15:y:2012:i:1:p:189-203"},"target_publication_author_list":{"type":"LIST_STRING","value":["Islam, Mohammed Saiful","Ali, Mohammad Hasmat"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:c27d1dae7ef64a9093ba55b09e54f7c1"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Fisher Effect, Monetary Policy, Taylor Principle."]},"trust":{"type":"FLOAT","value":0.33952826},"target_publication_title":{"type":"STRING","value":"Taylor Principle Supplements the Fisher Effect: Empirical Investigation under the US Context"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/475919\",\"titles\":[\"De kosten van de complete electrische installatie van een bewaarplaats met buitenluchtkoeling; het krachtverbruik en de berekening van de kosten daarvan\"],\"abstracts\":[],\"language\":\"dut/nld\",\"subjects\":[\"solanum tuberosum\",\"aardappelen\",\"potatoes\",\"landbouwproducten\",\"agricultural products\",\"ventilatoren\",\"ventilators\",\"economie\",\"economics\",\"gebruikswaarde\",\"use value\",\"economische impact\",\"economic impact\"],\"creators\":[\"Scipio, F. L.\"],\"publicationdate\":\"1955-01-01\",\"publisher\":\"Stichting voor Aardappelbewaring\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/366579\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"External research report\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/475919\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/475919\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/475919\",\"id\":\"wur:oai:library.wur.nl:wurpubs/475919\"},\"trust\":0.9220126}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/475919"},"target_publication_author_list":{"type":"LIST_STRING","value":["Scipio, F. L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/475919"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["solanum tuberosum","aardappelen","potatoes","landbouwproducten","agricultural products","ventilatoren","ventilators","economie","economics","gebruikswaarde","use value","economische impact","economic impact"]},"trust":{"type":"FLOAT","value":0.9220126},"target_publication_title":{"type":"STRING","value":"De kosten van de complete electrische installatie van een bewaarplaats met buitenluchtkoeling; het krachtverbruik en de berekening van de kosten daarvan"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1955-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:inria-00072092\",\"titles\":[\"Multi-Periodic Process Networks: Technical Report\"],\"abstracts\":[\"This paper aims at modeling video stream applications with structured data and multiple clocks. Multi-Periodic Process Networks (MPPN) are real-time process networks with an adaptable degree of synchronous behavior and a hierarchical structure. MPPN help to describe stream-processing applications and deduce resource requirements such as parallel functional units, throughput and buffer sizes.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_OH] Computer Science/Other\",\"[INFO:INFO_OH] Informatique/Autre\",\"PROCESS NETWORK / REAL TIME / STREAM PROCESSING / MODELING VIDEO APPLICATIONS\"],\"creators\":[\"Cohen, Albert\",\"Genius, Daniela\",\"Kortebi, Abdesselem\",\"Chamski, Zbigniew\",\"Duranton, Marc\",\"Feautrier, Paul\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00072092\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"},{\"url\":\"https://hal.inria.fr/inria-00072092\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00072092\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/inria-00072092\",\"id\":\"oai:HAL:inria-00072092v1\"},\"trust\":0.4730965}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:inria-00072092"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cohen, Albert","Genius, Daniela","Kortebi, Abdesselem","Chamski, Zbigniew","Duranton, Marc","Feautrier, Paul"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:inria-00072092v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_OH] Computer Science/Other","[INFO:INFO_OH] Informatique/Autre","PROCESS NETWORK / REAL TIME / STREAM PROCESSING / MODELING VIDEO APPLICATIONS"]},"trust":{"type":"FLOAT","value":0.4730965},"target_publication_title":{"type":"STRING","value":"Multi-Periodic Process Networks: Technical Report"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:inria-00072092v1\",\"titles\":[\"Multi-Periodic Process Networks: Technical Report\"],\"abstracts\":[\"This paper aims at modeling video stream applications with structured data and multiple clocks. Multi-Periodic Process Networks (MPPN) are real-time process networks with an adaptable degree of synchronous behavior and a hierarchical structure. MPPN help to describe stream-processing applications and deduce resource requirements such as parallel functional units, throughput and buffer sizes.\"],\"language\":\"eng\",\"subjects\":[\"PROCESS NETWORK / REAL TIME / STREAM PROCESSING / MODELING VIDEO APPLICATIONS\",\"[INFO.INFO-OH] Computer Science/Other\"],\"creators\":[\"Cohen, Albert\",\"Genius, Daniela\",\"Kortebi, Abdesselem\",\"Chamski, Zbigniew\",\"Duranton, Marc\",\"Feautrier, Paul\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"A3 (INRIA Futurs) ; INRIA - Université Paris XI - Paris Sud\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00072092\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.inria.fr/inria-00072092\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00072092\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/inria-00072092\",\"id\":\"oai:hal.inria.fr:inria-00072092\"},\"trust\":0.7306391}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:inria-00072092v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cohen, Albert","Genius, Daniela","Kortebi, Abdesselem","Chamski, Zbigniew","Duranton, Marc","Feautrier, Paul"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:inria-00072092"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["PROCESS NETWORK / REAL TIME / STREAM PROCESSING / MODELING VIDEO APPLICATIONS","[INFO.INFO-OH] Computer Science/Other"]},"trust":{"type":"FLOAT","value":0.7306391},"target_publication_title":{"type":"STRING","value":"Multi-Periodic Process Networks: Technical Report"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1877404\",\"titles\":[\"An Evaluation of Cellular Neural Networks for the Automatic Identification of Cephalometric Landmarks on Digital Images\"],\"abstracts\":[\"Several efforts have been made to completely automate cephalometric analysis by automatic landmark search. However, accuracy obtained was worse than manual identification in every study. The analogue-to-digital conversion of X-ray has been claimed to be the main problem. Therefore the aim of this investigation was to evaluate the accuracy of the Cellular Neural Networks approach for automatic location of cephalometric landmarks on softcopy of direct digital cephalometric X-rays. Forty-one, direct-digital lateral cephalometric radiographs were obtained by a Siemens Orthophos DS Ceph and were used in this study and 10 landmarks (N, A Point, Ba, Po, Pt, B Point, Pg, PM, UIE, LIE) were the object of automatic landmark identification. The mean errors and standard deviations from the best estimate of cephalometric points were calculated for each landmark. Differences in the mean errors of automatic and manual landmarking were compared with a 1-way analysis of variance. The analyses indicated that the differences were very small, and they were found at most within 0.59 mm. Furthermore, only few of these differences were statistically significant, but differences were so small to be in most instances clinically meaningless. Therefore the use of X-ray files with respect to scanned X-ray improved landmark accuracy of automatic detection. Investigations on softcopy of digital cephalometric X-rays, to search more landmarks in order to enable a complete automatic cephalometric analysis, are strongly encouraged.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Leonardi, Rosalia\",\"Giordano, Daniela\",\"Maiorana, Francesco\"],\"publicationdate\":\"2009-09-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Biomedicine and Biotechnology\",\"issn\":\"1110-7243\",\"eissn\":\"1110-7251\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2009/717102\",\"type\":\"doi\"},{\"value\":\"PMC2742650\",\"type\":\"pmc\"},{\"value\":\"19753320\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2742650\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2009/717102\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2009/717102\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2009/717102\",\"id\":\"oai:doaj.org/article:8535036a6eb143b497eacd3713df66e6\"},\"trust\":7.4344873E-4}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1877404"},"target_publication_author_list":{"type":"LIST_STRING","value":["Leonardi, Rosalia","Giordano, Daniela","Maiorana, Francesco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:8535036a6eb143b497eacd3713df66e6"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":7.4344873E-4},"target_publication_title":{"type":"STRING","value":"An Evaluation of Cellular Neural Networks for the Automatic Identification of Cephalometric Landmarks on Digital Images"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1877404\",\"titles\":[\"An Evaluation of Cellular Neural Networks for the Automatic Identification of Cephalometric Landmarks on Digital Images\"],\"abstracts\":[\"Several efforts have been made to completely automate cephalometric analysis by automatic landmark search. However, accuracy obtained was worse than manual identification in every study. The analogue-to-digital conversion of X-ray has been claimed to be the main problem. Therefore the aim of this investigation was to evaluate the accuracy of the Cellular Neural Networks approach for automatic location of cephalometric landmarks on softcopy of direct digital cephalometric X-rays. Forty-one, direct-digital lateral cephalometric radiographs were obtained by a Siemens Orthophos DS Ceph and were used in this study and 10 landmarks (N, A Point, Ba, Po, Pt, B Point, Pg, PM, UIE, LIE) were the object of automatic landmark identification. The mean errors and standard deviations from the best estimate of cephalometric points were calculated for each landmark. Differences in the mean errors of automatic and manual landmarking were compared with a 1-way analysis of variance. The analyses indicated that the differences were very small, and they were found at most within 0.59 mm. Furthermore, only few of these differences were statistically significant, but differences were so small to be in most instances clinically meaningless. Therefore the use of X-ray files with respect to scanned X-ray improved landmark accuracy of automatic detection. Investigations on softcopy of digital cephalometric X-rays, to search more landmarks in order to enable a complete automatic cephalometric analysis, are strongly encouraged.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Leonardi, Rosalia\",\"Giordano, Daniela\",\"Maiorana, Francesco\"],\"publicationdate\":\"2009-09-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Biomedicine and Biotechnology\",\"issn\":\"1110-7243\",\"eissn\":\"1110-7251\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2009/717102\",\"type\":\"doi\"},{\"value\":\"PMC2742650\",\"type\":\"pmc\"},{\"value\":\"19753320\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2742650\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2009/717102\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2009/717102\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2009/717102\",\"id\":\"oai:doaj.org/article:840e75316806479cadd415c68307ad60\"},\"trust\":0.6585367}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1877404"},"target_publication_author_list":{"type":"LIST_STRING","value":["Leonardi, Rosalia","Giordano, Daniela","Maiorana, Francesco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:840e75316806479cadd415c68307ad60"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.6585367},"target_publication_title":{"type":"STRING","value":"An Evaluation of Cellular Neural Networks for the Automatic Identification of Cephalometric Landmarks on Digital Images"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2938140\",\"titles\":[\"Monosomy 21 Seen in Live Born Is Unlikely to Represent True Monosomy 21: A Case Report and Review of the Literature\"],\"abstracts\":[\"We report a case of a neonate who was shown with routine chromosome analysis on peripheral blood lymphocytes to have full monosomy 21. Further investigation on fibroblast cells using conventional chromosome and FISH analysis revealed two additional mosaic cell lines; one is containing a ring chromosome 21 and the other a double ring chromosome 21. In addition, chromosome microarray analysis (CMA) on fibroblasts showed a mosaic duplication of chromosome region 21q11.2q22.13 with approximately 45% of cells showing three copies of the proximal long arm segment, consistent with the presence of a mosaic ring chromosome 21 with ring instability. The CMA also showed complete monosomy for an 8.8 Mb terminal segment (21q22.13q22.3). Whilst this patient had a provisional clinical diagnosis of trisomy 21, the patient also had phenotypic features consistent with monosomy 21, such as prominent epicanthic folds, broad nasal bridge, anteverted nares, simple ears, and bilateral overlapping fifth fingers, features which can also be present in individuals with Down syndrome. The patient died at 4.5 months of age. This case highlights the need for additional studies using multiple tissue types and molecular testing methodologies in patients provisionally diagnosed with monosomy 21, in particular if detected in the neonatal period.\"],\"language\":\"eng\",\"subjects\":[\"Case Report\"],\"creators\":[\"Burgess, Trent\",\"Downie, Lilian\",\"Pertile, Mark D.\",\"Francis, David\",\"Glass, Melissa\",\"Nouri, Sara\",\"Pszczola, Rosalynn\"],\"publicationdate\":\"2014-02-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Case Reports in Genetics\",\"issn\":\"2090-6544\",\"eissn\":\"2090-6552\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2014/965401\",\"type\":\"doi\"},{\"value\":\"PMC3932290\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3932290\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2014/965401\",\"license\":\"OPEN\",\"hostedby\":\"Case Reports in Genetics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2014/965401\",\"license\":\"OPEN\",\"hostedby\":\"Case Reports in Genetics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2014/965401\",\"id\":\"oai:doaj.org/article:38fe6f8e2fbe421d9f7b8a6d1944e452\"},\"trust\":0.8639637}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2938140"},"target_publication_author_list":{"type":"LIST_STRING","value":["Burgess, Trent","Downie, Lilian","Pertile, Mark D.","Francis, David","Glass, Melissa","Nouri, Sara","Pszczola, Rosalynn"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:38fe6f8e2fbe421d9f7b8a6d1944e452"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Case Report"]},"trust":{"type":"FLOAT","value":0.8639637},"target_publication_title":{"type":"STRING","value":"Monosomy 21 Seen in Live Born Is Unlikely to Represent True Monosomy 21: A Case Report and Review of the Literature"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cpr:ceprdp:7890\",\"titles\":[\"School Proximity and Child Labor: Evidence from Rural Tanzania\"],\"abstracts\":[\"Is improved school accessibility an effective policy tool for reducing child labor in developing countries? We address this question using micro data from rural Tanzania and a regression strategy that attempts to control for non-random location of households around schools as well as classical and nonclassical measurement error in self-reported distance to school. Consistent with a simple model of child labor supply, but contrary to what appears to be a widespread perception, our analysis shows that school proximity leads to a rise in school attendance but no fall in child labor.\"],\"language\":\"und\",\"subjects\":[\"child labor; distance to school; school enrollment\"],\"creators\":[\"Kondylis, Florence\",\"Manacorda, Marco\"],\"publicationdate\":\"2010-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d7890\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://jhr.uwpress.org/cgi/reprint/47/1/32\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://jhr.uwpress.org/cgi/reprint/47/1/32\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://jhr.uwpress.org/cgi/reprint/47/1/32\",\"id\":\"oai:RePEc:uwp:jhriss:v:46:y:2012:i:1:p:32-63\"},\"trust\":0.14128083}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cpr:ceprdp:7890"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kondylis, Florence","Manacorda, Marco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:uwp:jhriss:v:46:y:2012:i:1:p:32-63"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["child labor; distance to school; school enrollment"]},"trust":{"type":"FLOAT","value":0.14128083},"target_publication_title":{"type":"STRING","value":"School Proximity and Child Labor: Evidence from Rural Tanzania"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2010-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:uwp:jhriss:v:46:y:2012:i:1:p:32-63\",\"titles\":[\"School Proximity and Child Labor: Evidence from Rural Tanzania\"],\"abstracts\":[\"Is improved school accessibility an effective policy tool for reducing child labor in developing countries? We address this question using microdata from rural Tanzania and a regression strategy that attempts to control for nonrandom location of households around schools as well as classical and nonclassical measurement error in self-reported distance to school. Our analysis shows that school proximity leads to a rise in school attendance but no significant fall in child labor.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Florence Kondylis\",\"Marco Manacorda\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Human Resources\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://jhr.uwpress.org/cgi/reprint/47/1/32\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d7890\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d7890\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d7890\",\"id\":\"oai:RePEc:cpr:ceprdp:7890\"},\"trust\":0.34668642}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:uwp:jhriss:v:46:y:2012:i:1:p:32-63"},"target_publication_author_list":{"type":"LIST_STRING","value":["Florence Kondylis","Marco Manacorda"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cpr:ceprdp:7890"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.34668642},"target_publication_title":{"type":"STRING","value":"School Proximity and Child Labor: Evidence from Rural Tanzania"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00639663\",\"titles\":[\"LNA: Fast Protein Classification Using A Laplacian Characterization of Tertiary Structure\"],\"abstracts\":[\"In the last two decades, a lot of protein 3D shapes have been discovered, characterized and made available thanks to the Protein Data Bank (PDB), that is nevertheless growing very quickly. New scalable methods are thus urgently required to search through the PDB efficiently. We present in this paper an approach entitled LNA (Laplacian Norm Alignment) that performs structural comparison of two proteins with dynamic programming algorithms. This is achieved by characterizing each residue in the protein with scalar features. The feature values are calculated using a Laplacian operator applied on the graph corresponding to the adjacency matrix of the residues. The weighted Laplacian operator we use estimates at various scales local deformations of the topology where each residue is located. On some benchmarks widely shared by the community we obtain qualitatively similar results compared to other competing approaches, but with an algorithm one or two order of magnitudes faster. 180,000 protein comparisons can be done within 1 seconds with a single recent GPU, which makes our algorithm very scalable and suitable for real-time database querying across the Web.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_BI] Computer Science/Bioinformatics\",\"[INFO:INFO_BI] Informatique/Bio-informatique\",\"[SDV:BIBS] Life Sciences/Quantitative Methods\",\"[SDV:BIBS] Sciences du Vivant/Bio-Informatique, Biologie Systémique\",\"PDB\",\"Laplacian\",\"protein\",\"tertiary structure\",\"GPU\",\"Accuracy\",\"Dynamic programming\",\"Graphics processing unit\",\"Heuristic algorithms\",\"Laplace equations\",\"Three dimensional displays\"],\"creators\":[\"Bonnel, Nicolas\",\"Marteau, Pierre-François\"],\"publicationdate\":\"2012-10-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1109/TCBB.2012.64\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00639663\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00639663\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00639663\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00639663\",\"id\":\"oai:HAL:hal-00639663v1\"},\"trust\":0.7126715}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00639663"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bonnel, Nicolas","Marteau, Pierre-François"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00639663v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_BI] Computer Science/Bioinformatics","[INFO:INFO_BI] Informatique/Bio-informatique","[SDV:BIBS] Life Sciences/Quantitative Methods","[SDV:BIBS] Sciences du Vivant/Bio-Informatique, Biologie Systémique","PDB","Laplacian","protein","tertiary structure","GPU","Accuracy","Dynamic programming","Graphics processing unit","Heuristic algorithms","Laplace equations","Three dimensional displays"]},"trust":{"type":"FLOAT","value":0.7126715},"target_publication_title":{"type":"STRING","value":"LNA: Fast Protein Classification Using A Laplacian Characterization of Tertiary Structure"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00639663v1\",\"titles\":[\"LNA: Fast Protein Classification Using A Laplacian Characterization of Tertiary Structure\"],\"abstracts\":[\"International audience\",\"In the last two decades, a lot of protein 3D shapes have been discovered, characterized and made available thanks to the Protein Data Bank (PDB), that is nevertheless growing very quickly. New scalable methods are thus urgently required to search through the PDB efficiently. We present in this paper an approach entitled LNA (Laplacian Norm Alignment) that performs structural comparison of two proteins with dynamic programming algorithms. This is achieved by characterizing each residue in the protein with scalar features. The feature values are calculated using a Laplacian operator applied on the graph corresponding to the adjacency matrix of the residues. The weighted Laplacian operator we use estimates at various scales local deformations of the topology where each residue is located. On some benchmarks widely shared by the community we obtain qualitatively similar results compared to other competing approaches, but with an algorithm one or two order of magnitudes faster. 180,000 protein comparisons can be done within 1 seconds with a single recent GPU, which makes our algorithm very scalable and suitable for real-time database querying across the Web.\"],\"language\":\"eng\",\"subjects\":[\"PDB\",\"Laplacian\",\"protein\",\"tertiary structure\",\"GPU\",\"Accuracy\",\"Dynamic programming\",\"Graphics processing unit\",\"Heuristic algorithms\",\"Laplace equations\",\"Three dimensional displays\",\"[INFO.INFO-BI] Computer Science/Bioinformatics\",\"[SDV.BIBS] Life Sciences/Quantitative Methods\"],\"creators\":[\"Bonnel, Nicolas\",\"Marteau, Pierre-François\"],\"publicationdate\":\"2012-10-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"SEASIDE (IRISA - UBS) ; Université de Bretagne Sud (UBS) - CNRS\",\"Partially funded by the CPER Invent\\u0027IST \\\"masse de données\\\"\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1109/TCBB.2012.64\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00639663\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00639663\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00639663\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00639663\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00639663\"},\"trust\":0.39633512}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00639663v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bonnel, Nicolas","Marteau, Pierre-François"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00639663"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["PDB","Laplacian","protein","tertiary structure","GPU","Accuracy","Dynamic programming","Graphics processing unit","Heuristic algorithms","Laplace equations","Three dimensional displays","[INFO.INFO-BI] Computer Science/Bioinformatics","[SDV.BIBS] Life Sciences/Quantitative Methods"]},"trust":{"type":"FLOAT","value":0.39633512},"target_publication_title":{"type":"STRING","value":"LNA: Fast Protein Classification Using A Laplacian Characterization of Tertiary Structure"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3406015\",\"titles\":[\"Protective Effect of Total Phenolic Compounds from Inula helenium on Hydrogen Peroxide-induced Oxidative Stress in SH-SY5Y Cells\"],\"abstracts\":[\"Inula helenium has been reported to contain a large amount of phenolic compounds, which have shown promise in scavenging free radicals and prevention of neurodegenerative diseases. This study is to investigate the neuroprotective effects of total phenolic compounds from I. helenium on hydrogen peroxide-induced oxidative damage in human SH-SY5Y cells. Antioxidant capacity of total phenolic compounds was determined by radical scavenging activity, the level of intracellular reactive oxygen species and superoxide dismutase activity. The cytotoxicity of total phenolic compounds was determined using a cell counting kit-8 assay. The effect of total phenolic compounds on cell apoptosis due to hydrogen peroxide-induced oxidative damage was detected by Hoechst 33258 and Annexin-V/PI staining using fluorescence microscope and flow cytometry, respectively. Mitochondrial function was evaluated using the mitochondrial membrane potential and mitochondrial ATP synthesis by JC-1 dye and high performance liquid chromatography, respectively. It was shown that hydrogen peroxide significantly induced the loss of cell viability, increment of apoptosis, formation of reactive oxygen species, reduction of superoxide dismutase activity, decrease in mitochondrial membrane potential and a decrease in adenosine triphosphate production. On the other hand, total phenolic compounds dose-dependently reversed these effects. This study suggests that total phenolic compounds exert neuroprotective effects against hydrogen peroxide-induced oxidative damage via blocking reactive oxygen species production and improving mitochondrial function. The potential of total phenolic compounds and its neuroprotective mechanisms in attenuating hydrogen peroxide-induced oxidative stress-related cytotoxicity is worth further exploration.\"],\"language\":\"eng\",\"subjects\":[\"Research Paper\",\"Total phenolic compounds\",\"hydrogen peroxide\",\"SH-SY5Y\",\"apoptosis\",\"neurodegenerative disease\",\"neuroprotection\"],\"creators\":[\"Wang, J.\",\"Zhao, Y. M.\",\"Zhang, B.\",\"Guo, C. Y.\"],\"publicationdate\":\"2015-01-01\",\"publisher\":\"Medknow Publications \\u0026 Media Pvt Ltd\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Indian Journal of Pharmaceutical Sciences\",\"issn\":\"0250-474X\",\"eissn\":\"1998-3743\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC4442464\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4442464\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.ijpsonline.com/article.asp?issn\\u003d0250-474X;year\\u003d2015;volume\\u003d77;issue\\u003d2;spage\\u003d163;epage\\u003d169;aulast\\u003dWang\",\"license\":\"OPEN\",\"hostedby\":\"Indian Journal of Pharmaceutical Sciences\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ijpsonline.com/article.asp?issn\\u003d0250-474X;year\\u003d2015;volume\\u003d77;issue\\u003d2;spage\\u003d163;epage\\u003d169;aulast\\u003dWang\",\"license\":\"OPEN\",\"hostedby\":\"Indian Journal of Pharmaceutical Sciences\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.ijpsonline.com/article.asp?issn\\u003d0250-474X;year\\u003d2015;volume\\u003d77;issue\\u003d2;spage\\u003d163;epage\\u003d169;aulast\\u003dWang\",\"id\":\"oai:doaj.org/article:1450a6a8547042768e758086f87a0057\"},\"trust\":0.9319686}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3406015"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wang, J.","Zhao, Y. M.","Zhang, B.","Guo, C. Y."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:1450a6a8547042768e758086f87a0057"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Paper","Total phenolic compounds","hydrogen peroxide","SH-SY5Y","apoptosis","neurodegenerative disease","neuroprotection"]},"trust":{"type":"FLOAT","value":0.9319686},"target_publication_title":{"type":"STRING","value":"Protective Effect of Total Phenolic Compounds from Inula helenium on Hydrogen Peroxide-induced Oxidative Stress in SH-SY5Y Cells"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2015-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00206718v1\",\"titles\":[\"Magnétorésistance des couches minces de fer\"],\"abstracts\":[\"L\\u0027étude expérimentale des trois types de magnétorésistance des couches minces de fer a permis de confirmer l\\u0027existence d\\u0027une structure en domaines, de déterminer l\\u0027orientation du vecteur aimantation et de montrer que les tensions jouent un rôle important dans les propriétés magnétiques de ces couches.\"],\"language\":\"fra/fre\",\"subjects\":[\"Magnetoresistance\",\"Domain structure\",\"Stress effects\",\"Thin film\",\"Iron\",\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Vautier, C.\"],\"publicationdate\":\"1968-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphys:01968002908-9080700\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00206718\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00206718\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00206718\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00206718\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00206718\"},\"trust\":0.3674162}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00206718v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Vautier, C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00206718"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Magnetoresistance","Domain structure","Stress effects","Thin film","Iron","[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.3674162},"target_publication_title":{"type":"STRING","value":"Magnétorésistance des couches minces de fer"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1968-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00206718\",\"titles\":[\"Magnétorésistance des couches minces de fer\"],\"abstracts\":[\"L\\u0027étude expérimentale des trois types de magnétorésistance des couches minces de fer a permis de confirmer l\\u0027existence d\\u0027une structure en domaines, de déterminer l\\u0027orientation du vecteur aimantation et de montrer que les tensions jouent un rôle important dans les propriétés magnétiques de ces couches.\"],\"language\":\"fra/fre\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\",\"Magnetoresistance\",\"Domain structure\",\"Stress effects\",\"Thin film\",\"Iron\"],\"creators\":[\"Vautier, C.\"],\"publicationdate\":\"1968-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphys:01968002908-9080700\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00206718\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00206718\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00206718\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00206718\",\"id\":\"oai:HAL:jpa-00206718v1\"},\"trust\":0.41626608}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00206718"},"target_publication_author_list":{"type":"LIST_STRING","value":["Vautier, C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00206718v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens","Magnetoresistance","Domain structure","Stress effects","Thin film","Iron"]},"trust":{"type":"FLOAT","value":0.41626608},"target_publication_title":{"type":"STRING","value":"Magnétorésistance des couches minces de fer"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1968-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:tudelft.nl:uuid:763639db-bb90-4a42-bc7c-756e3ee910ff\",\"titles\":[\"Process and apparatus for burning solid fuel:\"],\"abstracts\":[\"Abstract of NL 9301828 (A) \\n \\nDescribed is a process for burning solid fuel, in which nitrogen in the form of NH3 is released from said fuel, for example by gasification, said NH3 being excluded from the combustion process but being admixed, together with CO likewise released, to the gases released in the combustion process proper. This ensures, by relatively simple means, that the emission of noxious substances such as SO2, NOx and N2O can be reduced to a minimum. Also described is an apparatus 1, 2 for carrying out the process. In a simple and compact embodiment, the apparatus can consist of a main combustor 21 and a gasifier 11 linked thereto\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Lin, W.\",\"Den Bleek, C. M.\"],\"publicationdate\":\"1995-01-01\",\"publisher\":\"European Patent Office\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"TU Delft Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://resolver.tudelft.nl/uuid:763639db-bb90-4a42-bc7c-756e3ee910ff\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Other\"},{\"url\":\"http://resolver.tudelft.nl/uuid:763639db-bb90-4a42-bc7c-756e3ee910ff\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Patent\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://resolver.tudelft.nl/uuid:763639db-bb90-4a42-bc7c-756e3ee910ff\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Patent\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://resolver.tudelft.nl/uuid:763639db-bb90-4a42-bc7c-756e3ee910ff\",\"id\":\"tud:oai:tudelft.nl:uuid:763639db-bb90-4a42-bc7c-756e3ee910ff\"},\"trust\":0.19722408}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"TU Delft Repository"},"target_publication_id":{"type":"STRING","value":"oai:tudelft.nl:uuid:763639db-bb90-4a42-bc7c-756e3ee910ff"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lin, W.","Den Bleek, C. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tud:oai:tudelft.nl:uuid:763639db-bb90-4a42-bc7c-756e3ee910ff"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.19722408},"target_publication_title":{"type":"STRING","value":"Process and apparatus for burning solid fuel:"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1995-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::c9892a989183de32e976c6f04e700201"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cdl:itsdav:629771\",\"titles\":[\"City carbon budgets: Aligning incentives for climate-friendly communities\"],\"abstracts\":[\"Local governments can have a large effect on carbon emissions through land use zoning, building codes, transport infrastructure investments, and support for transportation alternatives. Recognizing this, many cities have developed climate action plans, containing a disparate mix of mostly voluntary greenhouse gas emissions reduction proposals. This paper describes an integrated climate policy instrument for local governments: city carbon budgets. We identify and evaluate options for creating an effective and acceptable institutional structure, allocating emission targets to localities, measuring emissions, providing flexibility and incentives to local governments, and assuring compliance. We also discuss the likely costs of such a policy. Our recommended policy structure is based on the principles of effectiveness, equity, efficiency, administrative ease, and political acceptability.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Salon, Deborah\",\"Sperling, Dan\",\"Meier, Alan\",\"Murphy, Sinnott\",\"Gorham, Roger\",\"Barrett, James\"],\"publicationdate\":\"2008-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"id\":\"oai:RePEc:cdl:itsdav:qt0hp71320\"},\"trust\":0.22300339}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cdl:itsdav:629771"},"target_publication_author_list":{"type":"LIST_STRING","value":["Salon, Deborah","Sperling, Dan","Meier, Alan","Murphy, Sinnott","Gorham, Roger","Barrett, James"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cdl:itsdav:qt0hp71320"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.22300339},"target_publication_title":{"type":"STRING","value":"City carbon budgets: Aligning incentives for climate-friendly communities"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cdl:itsdav:629771\",\"titles\":[\"City carbon budgets: Aligning incentives for climate-friendly communities\"],\"abstracts\":[\"Local governments can have a large effect on carbon emissions through land use zoning, building codes, transport infrastructure investments, and support for transportation alternatives. Recognizing this, many cities have developed climate action plans, containing a disparate mix of mostly voluntary greenhouse gas emissions reduction proposals. This paper describes an integrated climate policy instrument for local governments: city carbon budgets. We identify and evaluate options for creating an effective and acceptable institutional structure, allocating emission targets to localities, measuring emissions, providing flexibility and incentives to local governments, and assuring compliance. We also discuss the likely costs of such a policy. Our recommended policy structure is based on the principles of effectiveness, equity, efficiency, administrative ease, and political acceptability.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Salon, Deborah\",\"Sperling, Dan\",\"Meier, Alan\",\"Murphy, Sinnott\",\"Gorham, Roger\",\"Barrett, James\"],\"publicationdate\":\"2008-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"id\":\"oai:RePEc:cdl:itsdav:qt4c07z5nq\"},\"trust\":0.51819897}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cdl:itsdav:629771"},"target_publication_author_list":{"type":"LIST_STRING","value":["Salon, Deborah","Sperling, Dan","Meier, Alan","Murphy, Sinnott","Gorham, Roger","Barrett, James"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cdl:itsdav:qt4c07z5nq"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.51819897},"target_publication_title":{"type":"STRING","value":"City carbon budgets: Aligning incentives for climate-friendly communities"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cdl:itsdav:629771\",\"titles\":[\"City carbon budgets: Aligning incentives for climate-friendly communities\"],\"abstracts\":[\"Local governments can have a large effect on carbon emissions through land use zoning, building codes, transport infrastructure investments, and support for transportation alternatives. Recognizing this, many cities have developed climate action plans, containing a disparate mix of mostly voluntary greenhouse gas emissions reduction proposals. This paper describes an integrated climate policy instrument for local governments: city carbon budgets. We identify and evaluate options for creating an effective and acceptable institutional structure, allocating emission targets to localities, measuring emissions, providing flexibility and incentives to local governments, and assuring compliance. We also discuss the likely costs of such a policy. Our recommended policy structure is based on the principles of effectiveness, equity, efficiency, administrative ease, and political acceptability.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Salon, Deborah\",\"Sperling, Dan\",\"Meier, Alan\",\"Murphy, Sinnott\",\"Gorham, Roger\",\"Barrett, James\"],\"publicationdate\":\"2008-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"id\":\"oai:RePEc:cdl:itsdav:1343259\"},\"trust\":0.49280024}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cdl:itsdav:629771"},"target_publication_author_list":{"type":"LIST_STRING","value":["Salon, Deborah","Sperling, Dan","Meier, Alan","Murphy, Sinnott","Gorham, Roger","Barrett, James"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cdl:itsdav:1343259"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.49280024},"target_publication_title":{"type":"STRING","value":"City carbon budgets: Aligning incentives for climate-friendly communities"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cdl:itsdav:qt0hp71320\",\"titles\":[\"City carbon budgets: Aligning incentives for climate-friendly communities\"],\"abstracts\":[\"Local governments can have a large effect on carbon emissions through land use zoning, building codes, transport infrastructure investments, and support for transportation alternatives. Recognizing this, many cities have developed climate action plans, containing a disparate mix of mostly voluntary greenhouse gas emissions reduction proposals. This paper describes an integrated climate policy instrument for local governments: city carbon budgets. We identify and evaluate options for creating an effective and acceptable institutional structure, allocating emission targets to localities, measuring emissions, providing flexibility and incentives to local governments, and assuring compliance. We also discuss the likely costs of such a policy. Our recommended policy structure is based on the principles of effectiveness, equity, efficiency, administrative ease, and political acceptability.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Salon, Deborah\",\"Sperling, Dan\",\"Meier, Alan\",\"Murphy, Sinnott\",\"Gorham, Roger\",\"Barrett, James\"],\"publicationdate\":\"2008-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"id\":\"oai:RePEc:cdl:itsdav:629771\"},\"trust\":0.13395393}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cdl:itsdav:qt0hp71320"},"target_publication_author_list":{"type":"LIST_STRING","value":["Salon, Deborah","Sperling, Dan","Meier, Alan","Murphy, Sinnott","Gorham, Roger","Barrett, James"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cdl:itsdav:629771"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.13395393},"target_publication_title":{"type":"STRING","value":"City carbon budgets: Aligning incentives for climate-friendly communities"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cdl:itsdav:qt0hp71320\",\"titles\":[\"City carbon budgets: Aligning incentives for climate-friendly communities\"],\"abstracts\":[\"Local governments can have a large effect on carbon emissions through land use zoning, building codes, transport infrastructure investments, and support for transportation alternatives. Recognizing this, many cities have developed climate action plans, containing a disparate mix of mostly voluntary greenhouse gas emissions reduction proposals. This paper describes an integrated climate policy instrument for local governments: city carbon budgets. We identify and evaluate options for creating an effective and acceptable institutional structure, allocating emission targets to localities, measuring emissions, providing flexibility and incentives to local governments, and assuring compliance. We also discuss the likely costs of such a policy. Our recommended policy structure is based on the principles of effectiveness, equity, efficiency, administrative ease, and political acceptability.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Salon, Deborah\",\"Sperling, Dan\",\"Meier, Alan\",\"Murphy, Sinnott\",\"Gorham, Roger\",\"Barrett, James\"],\"publicationdate\":\"2008-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"id\":\"oai:RePEc:cdl:itsdav:qt4c07z5nq\"},\"trust\":0.23730046}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cdl:itsdav:qt0hp71320"},"target_publication_author_list":{"type":"LIST_STRING","value":["Salon, Deborah","Sperling, Dan","Meier, Alan","Murphy, Sinnott","Gorham, Roger","Barrett, James"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cdl:itsdav:qt4c07z5nq"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.23730046},"target_publication_title":{"type":"STRING","value":"City carbon budgets: Aligning incentives for climate-friendly communities"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cdl:itsdav:qt0hp71320\",\"titles\":[\"City carbon budgets: Aligning incentives for climate-friendly communities\"],\"abstracts\":[\"Local governments can have a large effect on carbon emissions through land use zoning, building codes, transport infrastructure investments, and support for transportation alternatives. Recognizing this, many cities have developed climate action plans, containing a disparate mix of mostly voluntary greenhouse gas emissions reduction proposals. This paper describes an integrated climate policy instrument for local governments: city carbon budgets. We identify and evaluate options for creating an effective and acceptable institutional structure, allocating emission targets to localities, measuring emissions, providing flexibility and incentives to local governments, and assuring compliance. We also discuss the likely costs of such a policy. Our recommended policy structure is based on the principles of effectiveness, equity, efficiency, administrative ease, and political acceptability.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Salon, Deborah\",\"Sperling, Dan\",\"Meier, Alan\",\"Murphy, Sinnott\",\"Gorham, Roger\",\"Barrett, James\"],\"publicationdate\":\"2008-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"id\":\"oai:RePEc:cdl:itsdav:1343259\"},\"trust\":0.9361501}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cdl:itsdav:qt0hp71320"},"target_publication_author_list":{"type":"LIST_STRING","value":["Salon, Deborah","Sperling, Dan","Meier, Alan","Murphy, Sinnott","Gorham, Roger","Barrett, James"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cdl:itsdav:1343259"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.9361501},"target_publication_title":{"type":"STRING","value":"City carbon budgets: Aligning incentives for climate-friendly communities"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cdl:itsdav:qt4c07z5nq\",\"titles\":[\"City carbon budgets: Aligning incentives for climate-friendly communities\"],\"abstracts\":[\"Local governments can have a large effect on carbon emissions through land use zoning, building codes, transport infrastructure investments, and support for transportation alternatives. Recognizing this, many cities have developed climate action plans, containing a disparate mix of mostly voluntary greenhouse gas emissions reduction proposals. This paper describes an integrated climate policy instrument for local governments: city carbon budgets. We identify and evaluate options for creating an effective and acceptable institutional structure, allocating emission targets to localities, measuring emissions, providing flexibility and incentives to local governments, and assuring compliance. We also discuss the likely costs of such a policy. Our recommended policy structure is based on the principles of effectiveness, equity, efficiency, administrative ease, and political acceptability.\"],\"language\":\"und\",\"subjects\":[\"UCD-ITS-RR-08-17, Engineering\"],\"creators\":[\"Salon, Deborah\",\"Sperling, Dan\",\"Meier, Alan\",\"Murphy, Sinnott\",\"Gorham, Roger\",\"Barrett, James\"],\"publicationdate\":\"2008-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"id\":\"oai:RePEc:cdl:itsdav:629771\"},\"trust\":0.42558056}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cdl:itsdav:qt4c07z5nq"},"target_publication_author_list":{"type":"LIST_STRING","value":["Salon, Deborah","Sperling, Dan","Meier, Alan","Murphy, Sinnott","Gorham, Roger","Barrett, James"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cdl:itsdav:629771"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["UCD-ITS-RR-08-17, Engineering"]},"trust":{"type":"FLOAT","value":0.42558056},"target_publication_title":{"type":"STRING","value":"City carbon budgets: Aligning incentives for climate-friendly communities"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cdl:itsdav:qt4c07z5nq\",\"titles\":[\"City carbon budgets: Aligning incentives for climate-friendly communities\"],\"abstracts\":[\"Local governments can have a large effect on carbon emissions through land use zoning, building codes, transport infrastructure investments, and support for transportation alternatives. Recognizing this, many cities have developed climate action plans, containing a disparate mix of mostly voluntary greenhouse gas emissions reduction proposals. This paper describes an integrated climate policy instrument for local governments: city carbon budgets. We identify and evaluate options for creating an effective and acceptable institutional structure, allocating emission targets to localities, measuring emissions, providing flexibility and incentives to local governments, and assuring compliance. We also discuss the likely costs of such a policy. Our recommended policy structure is based on the principles of effectiveness, equity, efficiency, administrative ease, and political acceptability.\"],\"language\":\"und\",\"subjects\":[\"UCD-ITS-RR-08-17, Engineering\"],\"creators\":[\"Salon, Deborah\",\"Sperling, Dan\",\"Meier, Alan\",\"Murphy, Sinnott\",\"Gorham, Roger\",\"Barrett, James\"],\"publicationdate\":\"2008-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"id\":\"oai:RePEc:cdl:itsdav:qt0hp71320\"},\"trust\":0.57097465}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cdl:itsdav:qt4c07z5nq"},"target_publication_author_list":{"type":"LIST_STRING","value":["Salon, Deborah","Sperling, Dan","Meier, Alan","Murphy, Sinnott","Gorham, Roger","Barrett, James"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cdl:itsdav:qt0hp71320"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["UCD-ITS-RR-08-17, Engineering"]},"trust":{"type":"FLOAT","value":0.57097465},"target_publication_title":{"type":"STRING","value":"City carbon budgets: Aligning incentives for climate-friendly communities"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cdl:itsdav:qt4c07z5nq\",\"titles\":[\"City carbon budgets: Aligning incentives for climate-friendly communities\"],\"abstracts\":[\"Local governments can have a large effect on carbon emissions through land use zoning, building codes, transport infrastructure investments, and support for transportation alternatives. Recognizing this, many cities have developed climate action plans, containing a disparate mix of mostly voluntary greenhouse gas emissions reduction proposals. This paper describes an integrated climate policy instrument for local governments: city carbon budgets. We identify and evaluate options for creating an effective and acceptable institutional structure, allocating emission targets to localities, measuring emissions, providing flexibility and incentives to local governments, and assuring compliance. We also discuss the likely costs of such a policy. Our recommended policy structure is based on the principles of effectiveness, equity, efficiency, administrative ease, and political acceptability.\"],\"language\":\"und\",\"subjects\":[\"UCD-ITS-RR-08-17, Engineering\"],\"creators\":[\"Salon, Deborah\",\"Sperling, Dan\",\"Meier, Alan\",\"Murphy, Sinnott\",\"Gorham, Roger\",\"Barrett, James\"],\"publicationdate\":\"2008-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"id\":\"oai:RePEc:cdl:itsdav:1343259\"},\"trust\":0.6664644}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cdl:itsdav:qt4c07z5nq"},"target_publication_author_list":{"type":"LIST_STRING","value":["Salon, Deborah","Sperling, Dan","Meier, Alan","Murphy, Sinnott","Gorham, Roger","Barrett, James"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cdl:itsdav:1343259"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["UCD-ITS-RR-08-17, Engineering"]},"trust":{"type":"FLOAT","value":0.6664644},"target_publication_title":{"type":"STRING","value":"City carbon budgets: Aligning incentives for climate-friendly communities"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cdl:itsdav:1343259\",\"titles\":[\"City carbon budgets: Aligning incentives for climate-friendly communities\"],\"abstracts\":[\"Local governments can have a large effect on carbon emissions through land use zoning, building codes, transport infrastructure investments, and support for transportation alternatives. Recognizing this, many cities have developed climate action plans, containing a disparate mix of mostly voluntary greenhouse gas emissions reduction proposals. This paper describes an integrated climate policy instrument for local governments: city carbon budgets. We identify and evaluate options for creating an effective and acceptable institutional structure, allocating emission targets to localities, measuring emissions, providing flexibility and incentives to local governments, and assuring compliance. We also discuss the likely costs of such a policy. Our recommended policy structure is based on the principles of effectiveness, equity, efficiency, administrative ease, and political acceptability.\"],\"language\":\"und\",\"subjects\":[\"UCD-ITS-RR-08-17, Civil Engineering\"],\"creators\":[\"Salon, Deborah\",\"Sperling, Dan\",\"Meier, Alan\",\"Murphy, Sinnott\",\"Gorham, Roger\",\"Barrett, James\"],\"publicationdate\":\"2008-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"id\":\"oai:RePEc:cdl:itsdav:629771\"},\"trust\":0.4262101}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cdl:itsdav:1343259"},"target_publication_author_list":{"type":"LIST_STRING","value":["Salon, Deborah","Sperling, Dan","Meier, Alan","Murphy, Sinnott","Gorham, Roger","Barrett, James"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cdl:itsdav:629771"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["UCD-ITS-RR-08-17, Civil Engineering"]},"trust":{"type":"FLOAT","value":0.4262101},"target_publication_title":{"type":"STRING","value":"City carbon budgets: Aligning incentives for climate-friendly communities"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cdl:itsdav:1343259\",\"titles\":[\"City carbon budgets: Aligning incentives for climate-friendly communities\"],\"abstracts\":[\"Local governments can have a large effect on carbon emissions through land use zoning, building codes, transport infrastructure investments, and support for transportation alternatives. Recognizing this, many cities have developed climate action plans, containing a disparate mix of mostly voluntary greenhouse gas emissions reduction proposals. This paper describes an integrated climate policy instrument for local governments: city carbon budgets. We identify and evaluate options for creating an effective and acceptable institutional structure, allocating emission targets to localities, measuring emissions, providing flexibility and incentives to local governments, and assuring compliance. We also discuss the likely costs of such a policy. Our recommended policy structure is based on the principles of effectiveness, equity, efficiency, administrative ease, and political acceptability.\"],\"language\":\"und\",\"subjects\":[\"UCD-ITS-RR-08-17, Civil Engineering\"],\"creators\":[\"Salon, Deborah\",\"Sperling, Dan\",\"Meier, Alan\",\"Murphy, Sinnott\",\"Gorham, Roger\",\"Barrett, James\"],\"publicationdate\":\"2008-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.escholarship.org/uc/item/0hp71320.pdf;origin\\u003drepeccitec\",\"id\":\"oai:RePEc:cdl:itsdav:qt0hp71320\"},\"trust\":0.8865552}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cdl:itsdav:1343259"},"target_publication_author_list":{"type":"LIST_STRING","value":["Salon, Deborah","Sperling, Dan","Meier, Alan","Murphy, Sinnott","Gorham, Roger","Barrett, James"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cdl:itsdav:qt0hp71320"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["UCD-ITS-RR-08-17, Civil Engineering"]},"trust":{"type":"FLOAT","value":0.8865552},"target_publication_title":{"type":"STRING","value":"City carbon budgets: Aligning incentives for climate-friendly communities"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cdl:itsdav:1343259\",\"titles\":[\"City carbon budgets: Aligning incentives for climate-friendly communities\"],\"abstracts\":[\"Local governments can have a large effect on carbon emissions through land use zoning, building codes, transport infrastructure investments, and support for transportation alternatives. Recognizing this, many cities have developed climate action plans, containing a disparate mix of mostly voluntary greenhouse gas emissions reduction proposals. This paper describes an integrated climate policy instrument for local governments: city carbon budgets. We identify and evaluate options for creating an effective and acceptable institutional structure, allocating emission targets to localities, measuring emissions, providing flexibility and incentives to local governments, and assuring compliance. We also discuss the likely costs of such a policy. Our recommended policy structure is based on the principles of effectiveness, equity, efficiency, administrative ease, and political acceptability.\"],\"language\":\"und\",\"subjects\":[\"UCD-ITS-RR-08-17, Civil Engineering\"],\"creators\":[\"Salon, Deborah\",\"Sperling, Dan\",\"Meier, Alan\",\"Murphy, Sinnott\",\"Gorham, Roger\",\"Barrett, James\"],\"publicationdate\":\"2008-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.escholarship.org/uc/item/4c07z5nq.pdf;origin\\u003drepeccitec\",\"id\":\"oai:RePEc:cdl:itsdav:qt4c07z5nq\"},\"trust\":0.13411665}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cdl:itsdav:1343259"},"target_publication_author_list":{"type":"LIST_STRING","value":["Salon, Deborah","Sperling, Dan","Meier, Alan","Murphy, Sinnott","Gorham, Roger","Barrett, James"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cdl:itsdav:qt4c07z5nq"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["UCD-ITS-RR-08-17, Civil Engineering"]},"trust":{"type":"FLOAT","value":0.13411665},"target_publication_title":{"type":"STRING","value":"City carbon budgets: Aligning incentives for climate-friendly communities"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2566470\",\"titles\":[\"The palmitoylation state of PMP22 modulates epithelial cell morphology and migration\"],\"abstracts\":[\"PMP22 (peripheral myelin protein 22), also known as GAS 3 (growth-arrest-specific protein 3), is a disease-linked tetraspan glycoprotein of peripheral nerve myelin and constituent of intercellular junctions in epithelia. To date, our knowledge of the post-translational modification of PMP22 is limited. Using the CSS-Palm 2.0 software we predicted that C85 (cysteine 85), a highly conserved amino acid located between the second and third transmembrane domains, is a potential site for palmitoylation. To test this, we mutated C85S (C85 to serine) and established stable cells lines expressing the WT (wild-type) or the C85S-PMP22. In Schwann and MDCK (Madin–Darby canine kidney) cells mutating C85 blocked the palmitoylation of PMP22, which we monitored using 17-ODYA (17-octadecynoic acid). While palmitoylation was not necessary for processing the newly synthesized PMP22 through the secretory pathway, overexpression of C85S-PMP22 led to pronounced cell spreading and uneven monolayer thinning. To further investigate the functional significance of palmitoylated PMP22, we evaluated MDCK cell migration in a wound-healing assay. While WT-PMP22 expressing cells were resistant to migration, C85S cells displayed lamellipodial protrusions and migrated at a similar rate to vector control. These findings indicate that palmitoylation of PMP22 at C85 is critical for the role of the protein in modulating epithelial cell shape and motility.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\",\"S5\",\"lipid modification\",\"myelin\",\"protein trafficking\",\"Schwann cell\",\"tetraspan\",\"Con A, concavalin A\",\"C85, cysteine 85\",\"C85S, C85 to serine\",\"Endo H, endoglycosidase H\",\"ER, endoplasmic reticulum\",\"GAPDH, glyceraldehyde-3-phosphate dehydrogenase\",\"GAS3, growth-arrest-specific protein 3\",\"GFP, green fluorescent protein\",\"HA, haemagglutinin\",\"HN, hydroxylamine\",\"HRP, horseradish peroxidase\",\"MDCK, Madin–Darby canine kidney\",\"ODYA, octadecynoic acid\",\"PLP, proteolipid protein\",\"Palm-YFP, palmitoylatable yellow fluorescent protein\",\"PMP22, peripheral myelin protein 22\",\"PNGaseF, peptide N-glycosidase F\",\"RIPA, radioimmunoprecipitation assay\",\"TX-100, Triton X-100\",\"VVL, Vicia villosa lectin\",\"WT, wild-type\"],\"creators\":[\"Zoltewicz, Susie J.\",\"Lee, Sooyeon\",\"Chittoor, Vinita G.\",\"Freeland, Steven M.\",\"Rangaraju, Sunitha\",\"Zacharias, David A.\",\"Notterpek, Lucia\"],\"publicationdate\":\"2012-12-01\",\"publisher\":\"American Society for Neurochemistry\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"ASN NEURO\",\"issn\":\"\",\"eissn\":\"1759-0914\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1042/AN20120045\",\"type\":\"doi\"},{\"value\":\"PMC3563111\",\"type\":\"pmc\"},{\"value\":\"23127255\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3563111\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.asnneuro.org/an/004/e101/an004e101.htm\",\"license\":\"OPEN\",\"hostedby\":\"ASN Neuro\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.asnneuro.org/an/004/e101/an004e101.htm\",\"license\":\"OPEN\",\"hostedby\":\"ASN Neuro\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.asnneuro.org/an/004/e101/an004e101.htm\",\"id\":\"oai:doaj.org/article:356613e75d754e848f50f600b1336cd5\"},\"trust\":0.0961777}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2566470"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zoltewicz, Susie J.","Lee, Sooyeon","Chittoor, Vinita G.","Freeland, Steven M.","Rangaraju, Sunitha","Zacharias, David A.","Notterpek, Lucia"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:356613e75d754e848f50f600b1336cd5"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article","S5","lipid modification","myelin","protein trafficking","Schwann cell","tetraspan","Con A, concavalin A","C85, cysteine 85","C85S, C85 to serine","Endo H, endoglycosidase H","ER, endoplasmic reticulum","GAPDH, glyceraldehyde-3-phosphate dehydrogenase","GAS3, growth-arrest-specific protein 3","GFP, green fluorescent protein","HA, haemagglutinin","HN, hydroxylamine","HRP, horseradish peroxidase","MDCK, Madin–Darby canine kidney","ODYA, octadecynoic acid","PLP, proteolipid protein","Palm-YFP, palmitoylatable yellow fluorescent protein","PMP22, peripheral myelin protein 22","PNGaseF, peptide N-glycosidase F","RIPA, radioimmunoprecipitation assay","TX-100, Triton X-100","VVL, Vicia villosa lectin","WT, wild-type"]},"trust":{"type":"FLOAT","value":0.0961777},"target_publication_title":{"type":"STRING","value":"The palmitoylation state of PMP22 modulates epithelial cell morphology and migration"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bdr:borrec:037\",\"titles\":[\"La Relación entre el Crédito y la Inflación\"],\"abstracts\":[\"En los últimos dos años el crecimiento de la cartera del sistema financiero ha alcanzado niveles históricamente altos. En efecto, como se aprecia en el Gráfico 1, durante 1994 y parte de 1993, la cartera de todos los intermediarios creció por encima del 20% anual en términos reales, algo sin precedentes en los últimos diez años. Según el mismo gráfico, este fenómeno ha sido acompañado por un incremento significativo de los cuasidineros, aunque en proporciones inferiores a las del crédito. Por otra parte, según un trabajo reciente del Banco de la República, el alza de la cartera se ha concentrado en el crédito hipotecario y de consumo (Banco de la República, 1994). Tales comportamientos han despertado inquietud acerca de su posible efecto sobre la estabilidad de precios. El propósito del presente trabajo es, por lo tanto, determinar la relación entre Crédito e inflación en Colombia. Con dicho fin, es necesario en primera instancia explorar los mecanismos a través de los cuales el crédito puede incidir sobre los precios. Este es el tema de la segunda sección e implica discutir los canales de transmisión de la política monetaria. En la tercera se propone una forma de probar estadísticamente posibles relaciones entre crédito e inflación. En la cuarta sección, se explora un canal alternativo del crédito a los precios a través de la inflación de activos. La quinta concluye el trabajo.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hernando Vargas\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra037.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra037.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra037.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.banrep.gov.co/docum/ftp/borra037.pdf\",\"id\":\"oai:RePEc:col:000094:003076\"},\"trust\":0.30585635}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bdr:borrec:037"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hernando Vargas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:col:000094:003076"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.30585635},"target_publication_title":{"type":"STRING","value":"La Relación entre el Crédito y la Inflación"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bdr:borrec:037\",\"titles\":[\"La Relación entre el Crédito y la Inflación\"],\"abstracts\":[\"En los últimos dos años el crecimiento de la cartera del sistema financiero ha alcanzado niveles históricamente altos. En efecto, como se aprecia en el Gráfico 1, durante 1994 y parte de 1993, la cartera de todos los intermediarios creció por encima del 20% anual en términos reales, algo sin precedentes en los últimos diez años. Según el mismo gráfico, este fenómeno ha sido acompañado por un incremento significativo de los cuasidineros, aunque en proporciones inferiores a las del crédito. Por otra parte, según un trabajo reciente del Banco de la República, el alza de la cartera se ha concentrado en el crédito hipotecario y de consumo (Banco de la República, 1994). Tales comportamientos han despertado inquietud acerca de su posible efecto sobre la estabilidad de precios. El propósito del presente trabajo es, por lo tanto, determinar la relación entre Crédito e inflación en Colombia. Con dicho fin, es necesario en primera instancia explorar los mecanismos a través de los cuales el crédito puede incidir sobre los precios. Este es el tema de la segunda sección e implica discutir los canales de transmisión de la política monetaria. En la tercera se propone una forma de probar estadísticamente posibles relaciones entre crédito e inflación. En la cuarta sección, se explora un canal alternativo del crédito a los precios a través de la inflación de activos. La quinta concluye el trabajo.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hernando Vargas\"],\"publicationdate\":\"1995-07-31\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra037.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"1995-07-31\"},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.banrep.gov.co/docum/ftp/borra037.pdf\",\"id\":\"oai:RePEc:col:000094:003076\"},\"trust\":0.848383}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bdr:borrec:037"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hernando Vargas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:col:000094:003076"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.848383},"target_publication_title":{"type":"STRING","value":"La Relación entre el Crédito y la Inflación"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1995-07-31"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:col:000094:003076\",\"titles\":[\"LA RELACIÓN ENTRE EL CRÉDITO Y LA INFLACIÓN\"],\"abstracts\":[\"En los últimos dos años el crecimiento de la cartera del sistema financiero ha alcanzado niveles históricamente altos. En efecto, como se aprecia en el gráfico 1, durante 1994 y parte de 1993, la cartera de todos los intermediarios creció por encima del 20% anual en términos reales, algo sin precedentes en los últimos diez años. Según el mismo gráfico, este fenómeno ha sido acompañado por un incremento significativo de los cuasidineros, aunque en proporciones inferiores a las del crédito. Por otra parte, según un trabajo reciente del Banco de la República, el alza de la cartera se ha concentrado en el crédito hipotecario y de consumo (Banco de la República, 1994). Tales comportamientos han despertado inquietud acerca de su posible efecto sobre la estabilidad de precios. El propósito del presente trabajo es, por lo tanto, determinar la relación entre el crédito e inflación en Colombia. Con dicho fin, es necesario en primera instancia explorar los mecanismos a través de los cuales el crédito puede incidir sobre los precios. Este el tema de la segunda sección e implica discutir los canales de transmisión de la política monetaria. En la tercera se propone una forma de probar estadísticamente posibles relaciones entre crédito e inflación. En la cuarta sección, se explora un canal alternativo del crédito a los precios a través de la inflación de activos. La quinta concluye el trabajo.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hernando Vargas H.\"],\"publicationdate\":\"1995-07-31\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra037.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra037.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra037.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.banrep.gov.co/docum/ftp/borra037.pdf\",\"id\":\"oai:RePEc:bdr:borrec:037\"},\"trust\":0.9340581}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:col:000094:003076"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hernando Vargas H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bdr:borrec:037"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.9340581},"target_publication_title":{"type":"STRING","value":"LA RELACIÓN ENTRE EL CRÉDITO Y LA INFLACIÓN"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1995-07-31"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:eprints.lse.ac.uk:39906\",\"titles\":[\"New conflicts across the Middle East mean that defence strategy making is more important than ever: history shows that we cannot afford to think of defence in solely monetary terms\"],\"abstracts\":[\"British defence and security policy has recently come under attack for lacking strategic vision. In a historical study of British strategy-making, Gwyn Prins pulls out key lessons for current defence strategists, finding that it is often best to leave the Treasury out of strategy-making.\"],\"language\":\"eng\",\"subjects\":[\"HC Economic History and Conditions\",\"JA Political science (General)\",\"JZ International relations\"],\"creators\":[\"Prins, Gwyn\"],\"publicationdate\":\"2011-11-25\",\"publisher\":\"Blog post from London School of Economics \\u0026 Political Science\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"LSE Research Online\"],\"pids\":[],\"instances\":[{\"url\":\"http://blogs.lse.ac.uk/politicsandpolicy/\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Unknown\"},{\"url\":\"http://eprints.lse.ac.uk/39906/1/blogs_lse_ac_uk-New_conflicts_across_the_Middle_East_mean_that_defence_strategy_making_is_more_important_than_ever_Hi.pdf\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/39906/1/blogs_lse_ac_uk-New_conflicts_across_the_Middle_East_mean_that_defence_strategy_making_is_more_important_than_ever_Hi.pdf\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.lse.ac.uk/39906/1/blogs_lse_ac_uk-New_conflicts_across_the_Middle_East_mean_that_defence_strategy_making_is_more_important_than_ever_Hi.pdf\",\"id\":\"oai:eprints.lse.ac.uk:39906\"},\"trust\":0.13994539}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"LSE Research Online"},"target_publication_id":{"type":"STRING","value":"oai:eprints.lse.ac.uk:39906"},"target_publication_author_list":{"type":"LIST_STRING","value":["Prins, Gwyn"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.lse.ac.uk:39906"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["HC Economic History and Conditions","JA Political science (General)","JZ International relations"]},"trust":{"type":"FLOAT","value":0.13994539},"target_publication_title":{"type":"STRING","value":"New conflicts across the Middle East mean that defence strategy making is more important than ever: history shows that we cannot afford to think of defence in solely monetary terms"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7eabe3a1649ffa2b3ff8c02ebfd5659f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:eprints.lse.ac.uk:39906\",\"titles\":[\"New conflicts across the Middle East mean that defence strategy making is more important than ever: history shows that we cannot afford to think of defence in solely monetary terms\"],\"abstracts\":[\"British defence and security policy has recently come under attack for lacking strategic vision. In a historical study of British strategy-making, Gwyn Prins pulls out key lessons for current defence strategists, finding that it is often best to leave the Treasury out of strategy-making.\"],\"language\":\"eng\",\"subjects\":[\"HC Economic History and Conditions\",\"JA Political science (General)\",\"JZ International relations\"],\"creators\":[\"Prins, Gwyn\"],\"publicationdate\":\"2011-11-25\",\"publisher\":\"Blog post from London School of Economics \\u0026 Political Science\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"LSE Research Online\"],\"pids\":[],\"instances\":[{\"url\":\"http://blogs.lse.ac.uk/politicsandpolicy/\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Unknown\"},{\"url\":\"http://eprints.lse.ac.uk/39906/1/blogs_lse_ac_uk-New_conflicts_across_the_Middle_East_mean_that_defence_strategy_making_is_more_important_than_ever_Hi.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/39906/1/blogs_lse_ac_uk-New_conflicts_across_the_Middle_East_mean_that_defence_strategy_making_is_more_important_than_ever_Hi.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://eprints.lse.ac.uk/39906/1/blogs_lse_ac_uk-New_conflicts_across_the_Middle_East_mean_that_defence_strategy_making_is_more_important_than_ever_Hi.pdf\",\"id\":\"oai:RePEc:ner:lselon:http://eprints.lse.ac.uk/39906/\"},\"trust\":0.18644983}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"LSE Research Online"},"target_publication_id":{"type":"STRING","value":"oai:eprints.lse.ac.uk:39906"},"target_publication_author_list":{"type":"LIST_STRING","value":["Prins, Gwyn"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ner:lselon:http://eprints.lse.ac.uk/39906/"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["HC Economic History and Conditions","JA Political science (General)","JZ International relations"]},"trust":{"type":"FLOAT","value":0.18644983},"target_publication_title":{"type":"STRING","value":"New conflicts across the Middle East mean that defence strategy making is more important than ever: history shows that we cannot afford to think of defence in solely monetary terms"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7eabe3a1649ffa2b3ff8c02ebfd5659f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ner:lselon:http://eprints.lse.ac.uk/39906/\",\"titles\":[\"New conflicts across the Middle East mean that defence strategy making is more important than ever: history shows that we cannot afford to think of defence in solely monetary terms.\"],\"abstracts\":[\"British defence and security policy has recently come under attack for lacking strategic vision. In a historical study of British strategy-making, Gwyn Prins pulls out key lessons for current defence strategists, finding that it is often best to leave the Treasury out of strategy-making.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Prins, Gwyn\"],\"publicationdate\":\"2011-11-25\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/39906/1/blogs_lse_ac_uk-New_conflicts_across_the_Middle_East_mean_that_defence_strategy_making_is_more_important_than_ever_Hi.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://blogs.lse.ac.uk/politicsandpolicy/\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://blogs.lse.ac.uk/politicsandpolicy/\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"LSE Research Online\",\"url\":\"http://blogs.lse.ac.uk/politicsandpolicy/\",\"id\":\"oai:eprints.lse.ac.uk:39906\"},\"trust\":0.8802285}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ner:lselon:http://eprints.lse.ac.uk/39906/"},"target_publication_author_list":{"type":"LIST_STRING","value":["Prins, Gwyn"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.lse.ac.uk:39906"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7eabe3a1649ffa2b3ff8c02ebfd5659f"},"trust":{"type":"FLOAT","value":0.8802285},"target_publication_title":{"type":"STRING","value":"New conflicts across the Middle East mean that defence strategy making is more important than ever: history shows that we cannot afford to think of defence in solely monetary terms."},"provenance_datasource_name":{"type":"STRING","value":"LSE Research Online"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ner:lselon:http://eprints.lse.ac.uk/39906/\",\"titles\":[\"New conflicts across the Middle East mean that defence strategy making is more important than ever: history shows that we cannot afford to think of defence in solely monetary terms.\"],\"abstracts\":[\"British defence and security policy has recently come under attack for lacking strategic vision. In a historical study of British strategy-making, Gwyn Prins pulls out key lessons for current defence strategists, finding that it is often best to leave the Treasury out of strategy-making.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Prins, Gwyn\"],\"publicationdate\":\"2011-11-25\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/39906/1/blogs_lse_ac_uk-New_conflicts_across_the_Middle_East_mean_that_defence_strategy_making_is_more_important_than_ever_Hi.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://eprints.lse.ac.uk/39906/1/blogs_lse_ac_uk-New_conflicts_across_the_Middle_East_mean_that_defence_strategy_making_is_more_important_than_ever_Hi.pdf\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/39906/1/blogs_lse_ac_uk-New_conflicts_across_the_Middle_East_mean_that_defence_strategy_making_is_more_important_than_ever_Hi.pdf\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.lse.ac.uk/39906/1/blogs_lse_ac_uk-New_conflicts_across_the_Middle_East_mean_that_defence_strategy_making_is_more_important_than_ever_Hi.pdf\",\"id\":\"oai:eprints.lse.ac.uk:39906\"},\"trust\":0.88754725}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ner:lselon:http://eprints.lse.ac.uk/39906/"},"target_publication_author_list":{"type":"LIST_STRING","value":["Prins, Gwyn"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.lse.ac.uk:39906"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"trust":{"type":"FLOAT","value":0.88754725},"target_publication_title":{"type":"STRING","value":"New conflicts across the Middle East mean that defence strategy making is more important than ever: history shows that we cannot afford to think of defence in solely monetary terms."},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bxr:bxrceb:2013/186516\",\"titles\":[\"THE DYNAMICS OF TASK-BIASED TECHNOLOGICAL CHANGE :THE CASE OF OCCUPATIONS\"],\"abstracts\":[\"This article uses detailed German household panel data to address important unresolved issuesrelated to task-biased technological change. Implementing a task-based model of occupationalemployment and earnings, results show that the task composition of occupations in 1985 issignificantly associated with relative employment changes and accounts at least partially for thejob polarisation that occurred during the period 1985-2008. By contrast, initial task content isnot related to observed trends in remuneration. We also contribute to a central, but so far underresearchedaspect of task-biased employment changes, namely their dynamics over time. Weshow that task-biased employment effects can take more than a decade to materialize, differacross task categories, and be preceded by movements in the opposite direction. These findingshave important ramifications for research in this field, for instance by underlining the necessityto work with sufficiently long observation periods and to pay closer attention to infra-periodevolutions.\"],\"language\":\"und\",\"subjects\":[\"Polarisation; Technological change; Pay rules; Occupations; Inequality; Tasks\"],\"creators\":[\"Stephan Kampelmann\",\"François Rycx\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Brussels economic review\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://dipot.ulb.ac.be/dspace/bitstream/2013/186516/1/ARTICLEKAMPELMANNRYCX.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/2013/ULB-DIPOT:oai:dipot.ulb.ac.be:2013/186516\",\"license\":\"OPEN\",\"hostedby\":\"DI-fusion\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2013/ULB-DIPOT:oai:dipot.ulb.ac.be:2013/186516\",\"license\":\"OPEN\",\"hostedby\":\"DI-fusion\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DI-fusion\",\"url\":\"http://hdl.handle.net/2013/ULB-DIPOT:oai:dipot.ulb.ac.be:2013/186516\",\"id\":\"oai:dipot.ulb.ac.be:2013/186516\"},\"trust\":0.8381293}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bxr:bxrceb:2013/186516"},"target_publication_author_list":{"type":"LIST_STRING","value":["Stephan Kampelmann","François Rycx"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dipot.ulb.ac.be:2013/186516"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::c5866e93cab1776890fe343c9e7063fb"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Polarisation; Technological change; Pay rules; Occupations; Inequality; Tasks"]},"trust":{"type":"FLOAT","value":0.8381293},"target_publication_title":{"type":"STRING","value":"THE DYNAMICS OF TASK-BIASED TECHNOLOGICAL CHANGE :THE CASE OF OCCUPATIONS"},"provenance_datasource_name":{"type":"STRING","value":"DI-fusion"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dipot.ulb.ac.be:2013/186516\",\"titles\":[\"THE DYNAMICS OF TASK-BIASED TECHNOLOGICAL CHANGE :THE CASE OF OCCUPATIONS\"],\"abstracts\":[\"This article uses detailed German household panel data to address important unresolved issuesrelated to task-biased technological change. Implementing a task-based model of occupationalemployment and earnings, results show that the task composition of occupations in 1985 issignificantly associated with relative employment changes and accounts at least partially for thejob polarisation that occurred during the period 1985-2008. By contrast, initial task content isnot related to observed trends in remuneration. We also contribute to a central, but so far underresearchedaspect of task-biased employment changes, namely their dynamics over time. Weshow that task-biased employment effects can take more than a decade to materialize, differacross task categories, and be preceded by movements in the opposite direction. These findingshave important ramifications for research in this field, for instance by underlining the necessityto work with sufficiently long observation periods and to pay closer attention to infra-periodevolutions.\",\"info:eu-repo/semantics/published\"],\"language\":\"eng\",\"subjects\":[\"Economie\",\"Labor Force and Employment, Size, and Structure\",\"J21\",\"Human Capital; Skills; Occupational Choice; Labor Productivity\",\"J24\",\"Wage Level and Structure; Wage Differentials\",\"J31\",\"Polarisation\",\"Technological change\",\"Pay rules\",\"Occupations\",\"Inequality\",\"Tasks\"],\"creators\":[\"Kampelmann, Stephan\",\"Rycx, François\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DI-fusion\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2013/ULB-DIPOT:oai:dipot.ulb.ac.be:2013/186516\",\"license\":\"OPEN\",\"hostedby\":\"DI-fusion\",\"instancetype\":\"Article\"},{\"url\":\"https://dipot.ulb.ac.be/dspace/bitstream/2013/186516/1/ARTICLEKAMPELMANNRYCX.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://dipot.ulb.ac.be/dspace/bitstream/2013/186516/1/ARTICLEKAMPELMANNRYCX.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://dipot.ulb.ac.be/dspace/bitstream/2013/186516/1/ARTICLEKAMPELMANNRYCX.pdf\",\"id\":\"oai:RePEc:bxr:bxrceb:2013/186516\"},\"trust\":0.92541385}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DI-fusion"},"target_publication_id":{"type":"STRING","value":"oai:dipot.ulb.ac.be:2013/186516"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kampelmann, Stephan","Rycx, François"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bxr:bxrceb:2013/186516"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Economie","Labor Force and Employment, Size, and Structure","J21","Human Capital; Skills; Occupational Choice; Labor Productivity","J24","Wage Level and Structure; Wage Differentials","J31","Polarisation","Technological change","Pay rules","Occupations","Inequality","Tasks"]},"trust":{"type":"FLOAT","value":0.92541385},"target_publication_title":{"type":"STRING","value":"THE DYNAMICS OF TASK-BIASED TECHNOLOGICAL CHANGE :THE CASE OF OCCUPATIONS"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::c5866e93cab1776890fe343c9e7063fb"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:33251\",\"titles\":[\"Interpreting interaction terms in linear and non-linear models: A cautionary tale\"],\"abstracts\":[\"Interaction terms are often misinterpreted in the empirical economics literature by assuming that the coefficient of interest represents unconditional marginal changes. I present the correct way to estimate conditional marginal changes in a series of non-linear models including (ordered) logit/probit regressions, censored and truncated regressions. The linear regression model is used as the benchmark case.\"],\"language\":\"eng\",\"subjects\":[\"C51 - Model Construction and Estimation\",\"C12 - Hypothesis Testing: General\",\"C24 - Truncated and Censored Models; Switching Regression Models\",\"C25 - Discrete Regression and Qualitative Choice Models; Discrete Regressors; Proportions\"],\"creators\":[\"Drichoutis, Andreas\"],\"publicationdate\":\"2011-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/33251/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/33251/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/33251/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/33251/\",\"id\":\"33251\"},\"trust\":0.8394338}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:33251"},"target_publication_author_list":{"type":"LIST_STRING","value":["Drichoutis, Andreas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["33251"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["C51 - Model Construction and Estimation","C12 - Hypothesis Testing: General","C24 - Truncated and Censored Models; Switching Regression Models","C25 - Discrete Regression and Qualitative Choice Models; Discrete Regressors; Proportions"]},"trust":{"type":"FLOAT","value":0.8394338},"target_publication_title":{"type":"STRING","value":"Interpreting interaction terms in linear and non-linear models: A cautionary tale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:33251\",\"titles\":[\"Interpreting interaction terms in linear and non-linear models: A cautionary tale\"],\"abstracts\":[\"Interaction terms are often misinterpreted in the empirical economics literature by assuming that the coefficient of interest represents unconditional marginal changes. I present the correct way to estimate conditional marginal changes in a series of non-linear models including (ordered) logit/probit regressions, censored and truncated regressions. The linear regression model is used as the benchmark case.\"],\"language\":\"eng\",\"subjects\":[\"C51 - Model Construction and Estimation\",\"C12 - Hypothesis Testing: General\",\"C24 - Truncated and Censored Models; Switching Regression Models\",\"C25 - Discrete Regression and Qualitative Choice Models; Discrete Regressors; Proportions\"],\"creators\":[\"Drichoutis, Andreas\"],\"publicationdate\":\"2011-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/33251/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/33251/1/MPRA_paper_33251.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/33251/1/MPRA_paper_33251.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/33251/1/MPRA_paper_33251.pdf\",\"id\":\"oai:RePEc:pra:mprapa:33251\"},\"trust\":0.30127978}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:33251"},"target_publication_author_list":{"type":"LIST_STRING","value":["Drichoutis, Andreas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:33251"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["C51 - Model Construction and Estimation","C12 - Hypothesis Testing: General","C24 - Truncated and Censored Models; Switching Regression Models","C25 - Discrete Regression and Qualitative Choice Models; Discrete Regressors; Proportions"]},"trust":{"type":"FLOAT","value":0.30127978},"target_publication_title":{"type":"STRING","value":"Interpreting interaction terms in linear and non-linear models: A cautionary tale"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"33251\",\"titles\":[\"Interpreting interaction terms in linear and non-linear models: A cautionary tale\"],\"abstracts\":[\"Interaction terms are often misinterpreted in the empirical economics literature by assuming that the coefficient of interest represents unconditional marginal changes. I present the correct way to estimate conditional marginal changes in a series of non-linear models including (ordered) logit/probit regressions, censored and truncated regressions. The linear regression model is used as the benchmark case.\"],\"language\":\"eng\",\"subjects\":[\"C51 - Model Construction and Estimation\",\"C12 - Hypothesis Testing: General\",\"C24 - Truncated and Censored Models ; Switching Regression Models ; Threshold Regression Models\",\"C25 - Discrete Regression and Qualitative Choice Models ; Discrete Regressors ; Proportions ; Probabilities\"],\"creators\":[\"Drichoutis, Andreas\"],\"publicationdate\":\"2011-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/33251/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/33251/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/33251/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/33251/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:33251\"},\"trust\":0.50762826}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"33251"},"target_publication_author_list":{"type":"LIST_STRING","value":["Drichoutis, Andreas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:33251"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["C51 - Model Construction and Estimation","C12 - Hypothesis Testing: General","C24 - Truncated and Censored Models ; Switching Regression Models ; Threshold Regression Models","C25 - Discrete Regression and Qualitative Choice Models ; Discrete Regressors ; Proportions ; Probabilities"]},"trust":{"type":"FLOAT","value":0.50762826},"target_publication_title":{"type":"STRING","value":"Interpreting interaction terms in linear and non-linear models: A cautionary tale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"33251\",\"titles\":[\"Interpreting interaction terms in linear and non-linear models: A cautionary tale\"],\"abstracts\":[\"Interaction terms are often misinterpreted in the empirical economics literature by assuming that the coefficient of interest represents unconditional marginal changes. I present the correct way to estimate conditional marginal changes in a series of non-linear models including (ordered) logit/probit regressions, censored and truncated regressions. The linear regression model is used as the benchmark case.\"],\"language\":\"eng\",\"subjects\":[\"C51 - Model Construction and Estimation\",\"C12 - Hypothesis Testing: General\",\"C24 - Truncated and Censored Models ; Switching Regression Models ; Threshold Regression Models\",\"C25 - Discrete Regression and Qualitative Choice Models ; Discrete Regressors ; Proportions ; Probabilities\"],\"creators\":[\"Drichoutis, Andreas\"],\"publicationdate\":\"2011-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/33251/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/33251/1/MPRA_paper_33251.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/33251/1/MPRA_paper_33251.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/33251/1/MPRA_paper_33251.pdf\",\"id\":\"oai:RePEc:pra:mprapa:33251\"},\"trust\":0.31995183}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"33251"},"target_publication_author_list":{"type":"LIST_STRING","value":["Drichoutis, Andreas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:33251"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["C51 - Model Construction and Estimation","C12 - Hypothesis Testing: General","C24 - Truncated and Censored Models ; Switching Regression Models ; Threshold Regression Models","C25 - Discrete Regression and Qualitative Choice Models ; Discrete Regressors ; Proportions ; Probabilities"]},"trust":{"type":"FLOAT","value":0.31995183},"target_publication_title":{"type":"STRING","value":"Interpreting interaction terms in linear and non-linear models: A cautionary tale"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:33251\",\"titles\":[\"Interpreting interaction terms in linear and non-linear models: A cautionary tale\"],\"abstracts\":[\"Interaction terms are often misinterpreted in the empirical economics literature by assuming that the coefficient of interest represents unconditional marginal changes. I present the correct way to estimate conditional marginal changes in a series of non-linear models including (ordered) logit/probit regressions, censored and truncated regressions. The linear regression model is used as the benchmark case.\"],\"language\":\"und\",\"subjects\":[\"interaction terms; ordered probit; ordered logit; truncated regression; censored regression; nonlinear models\"],\"creators\":[\"Drichoutis, Andreas\"],\"publicationdate\":\"2011-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/33251/1/MPRA_paper_33251.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/33251/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/33251/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/33251/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:33251\"},\"trust\":0.7538139}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:33251"},"target_publication_author_list":{"type":"LIST_STRING","value":["Drichoutis, Andreas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:33251"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["interaction terms; ordered probit; ordered logit; truncated regression; censored regression; nonlinear models"]},"trust":{"type":"FLOAT","value":0.7538139},"target_publication_title":{"type":"STRING","value":"Interpreting interaction terms in linear and non-linear models: A cautionary tale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:33251\",\"titles\":[\"Interpreting interaction terms in linear and non-linear models: A cautionary tale\"],\"abstracts\":[\"Interaction terms are often misinterpreted in the empirical economics literature by assuming that the coefficient of interest represents unconditional marginal changes. I present the correct way to estimate conditional marginal changes in a series of non-linear models including (ordered) logit/probit regressions, censored and truncated regressions. The linear regression model is used as the benchmark case.\"],\"language\":\"und\",\"subjects\":[\"interaction terms; ordered probit; ordered logit; truncated regression; censored regression; nonlinear models\"],\"creators\":[\"Drichoutis, Andreas\"],\"publicationdate\":\"2011-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/33251/1/MPRA_paper_33251.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/33251/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/33251/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/33251/\",\"id\":\"33251\"},\"trust\":0.0252074}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:33251"},"target_publication_author_list":{"type":"LIST_STRING","value":["Drichoutis, Andreas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["33251"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["interaction terms; ordered probit; ordered logit; truncated regression; censored regression; nonlinear models"]},"trust":{"type":"FLOAT","value":0.0252074},"target_publication_title":{"type":"STRING","value":"Interpreting interaction terms in linear and non-linear models: A cautionary tale"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57\",\"titles\":[\"The Core When Strategies Are Restricted by Law.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bergstrom, Theodore C.\"],\"publicationdate\":\"1975-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Review of Economic Studies\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.2307/2296532\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://links.jstor.org/sici?sici\\u003d0034-6527%28197504%2942%3A2%3C249%3ATCWSAR%3E2.0.CO%3B2-C\\u0026origin\\u003dbc\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.2307/2296532\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dx.doi.org/10.2307/2296532\",\"id\":\"oai:RePEc:cor:louvrp:244\"},\"trust\":0.37628973}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bergstrom, Theodore C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cor:louvrp:244"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.37628973},"target_publication_title":{"type":"STRING","value":"The Core When Strategies Are Restricted by Law."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1975-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57\",\"titles\":[\"The Core When Strategies Are Restricted by Law.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bergstrom, Theodore C.\"],\"publicationdate\":\"1975-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Review of Economic Studies\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.2307/2296532\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://links.jstor.org/sici?sici\\u003d0034-6527%28197504%2942%3A2%3C249%3ATCWSAR%3E2.0.CO%3B2-C\\u0026origin\\u003dbc\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.2307/2296532\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dx.doi.org/10.2307/2296532\",\"id\":\"oai:RePEc:cor:louvrp:244\"},\"trust\":0.37628973}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bergstrom, Theodore C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cor:louvrp:244"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.37628973},"target_publication_title":{"type":"STRING","value":"The Core When Strategies Are Restricted by Law."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1975-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57\",\"titles\":[\"The Core When Strategies Are Restricted by Law.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bergstrom, Theodore C.\"],\"publicationdate\":\"1975-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Review of Economic Studies\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://links.jstor.org/sici?sici\\u003d0034-6527%28197504%2942%3A2%3C249%3ATCWSAR%3E2.0.CO%3B2-C\\u0026origin\\u003dbc\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.2307/2296532\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.2307/2296532\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dx.doi.org/10.2307/2296532\",\"id\":\"oai:RePEc:cor:louvrp:244\"},\"trust\":0.2074843}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bergstrom, Theodore C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cor:louvrp:244"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.2074843},"target_publication_title":{"type":"STRING","value":"The Core When Strategies Are Restricted by Law."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1975-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57\",\"titles\":[\"The Core When Strategies Are Restricted by Law.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bergstrom, Theodore C.\"],\"publicationdate\":\"1975-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Review of Economic Studies\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.2307/2296532\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://links.jstor.org/sici?sici\\u003d0034-6527%28197504%2942%3A2%3C249%3ATCWSAR%3E2.0.CO%3B2-C\\u0026origin\\u003dbc\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.2307/2296532\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dx.doi.org/10.2307/2296532\",\"id\":\"oai:RePEc:cor:louvrp:-1635\"},\"trust\":0.81999105}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bergstrom, Theodore C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cor:louvrp:-1635"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.81999105},"target_publication_title":{"type":"STRING","value":"The Core When Strategies Are Restricted by Law."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1975-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57\",\"titles\":[\"The Core When Strategies Are Restricted by Law.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bergstrom, Theodore C.\"],\"publicationdate\":\"1975-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Review of Economic Studies\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.2307/2296532\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://links.jstor.org/sici?sici\\u003d0034-6527%28197504%2942%3A2%3C249%3ATCWSAR%3E2.0.CO%3B2-C\\u0026origin\\u003dbc\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.2307/2296532\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dx.doi.org/10.2307/2296532\",\"id\":\"oai:RePEc:cor:louvrp:-1635\"},\"trust\":0.81999105}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bergstrom, Theodore C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cor:louvrp:-1635"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.81999105},"target_publication_title":{"type":"STRING","value":"The Core When Strategies Are Restricted by Law."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1975-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57\",\"titles\":[\"The Core When Strategies Are Restricted by Law.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bergstrom, Theodore C.\"],\"publicationdate\":\"1975-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Review of Economic Studies\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://links.jstor.org/sici?sici\\u003d0034-6527%28197504%2942%3A2%3C249%3ATCWSAR%3E2.0.CO%3B2-C\\u0026origin\\u003dbc\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.2307/2296532\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.2307/2296532\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dx.doi.org/10.2307/2296532\",\"id\":\"oai:RePEc:cor:louvrp:-1635\"},\"trust\":0.13642955}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bergstrom, Theodore C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cor:louvrp:-1635"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.13642955},"target_publication_title":{"type":"STRING","value":"The Core When Strategies Are Restricted by Law."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1975-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cor:louvrp:244\",\"titles\":[\"The core when strategies are restricted by law\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bergstrom, Theodore C.\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.2307/2296532\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://dx.doi.org/10.2307/2296532\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://links.jstor.org/sici?sici\\u003d0034-6527%28197504%2942%3A2%3C249%3ATCWSAR%3E2.0.CO%3B2-C\\u0026origin\\u003dbc\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://links.jstor.org/sici?sici\\u003d0034-6527%28197504%2942%3A2%3C249%3ATCWSAR%3E2.0.CO%3B2-C\\u0026origin\\u003dbc\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://links.jstor.org/sici?sici\\u003d0034-6527%28197504%2942%3A2%3C249%3ATCWSAR%3E2.0.CO%3B2-C\\u0026origin\\u003dbc\",\"id\":\"oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57\"},\"trust\":0.092954874}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cor:louvrp:244"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bergstrom, Theodore C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.092954874},"target_publication_title":{"type":"STRING","value":"The core when strategies are restricted by law"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cor:louvrp:244\",\"titles\":[\"The core when strategies are restricted by law\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bergstrom, Theodore C.\"],\"publicationdate\":\"1975-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.2307/2296532\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://dx.doi.org/10.2307/2296532\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"1975-01-01\"},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://links.jstor.org/sici?sici\\u003d0034-6527%28197504%2942%3A2%3C249%3ATCWSAR%3E2.0.CO%3B2-C\\u0026origin\\u003dbc\",\"id\":\"oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57\"},\"trust\":0.9170703}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cor:louvrp:244"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bergstrom, Theodore C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.9170703},"target_publication_title":{"type":"STRING","value":"The core when strategies are restricted by law"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1975-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cor:louvrp:244\",\"titles\":[\"The core when strategies are restricted by law\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bergstrom, Theodore C.\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.2307/2296532\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://dx.doi.org/10.2307/2296532\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://dx.doi.org/10.2307/2296532\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.2307/2296532\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dx.doi.org/10.2307/2296532\",\"id\":\"oai:RePEc:cor:louvrp:-1635\"},\"trust\":0.5913716}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cor:louvrp:244"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bergstrom, Theodore C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cor:louvrp:-1635"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.5913716},"target_publication_title":{"type":"STRING","value":"The core when strategies are restricted by law"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cor:louvrp:-1635\",\"titles\":[\"The core when strategies are restricted by law\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bergstrom, Theodore C.\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.2307/2296532\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://dx.doi.org/10.2307/2296532\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://links.jstor.org/sici?sici\\u003d0034-6527%28197504%2942%3A2%3C249%3ATCWSAR%3E2.0.CO%3B2-C\\u0026origin\\u003dbc\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://links.jstor.org/sici?sici\\u003d0034-6527%28197504%2942%3A2%3C249%3ATCWSAR%3E2.0.CO%3B2-C\\u0026origin\\u003dbc\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://links.jstor.org/sici?sici\\u003d0034-6527%28197504%2942%3A2%3C249%3ATCWSAR%3E2.0.CO%3B2-C\\u0026origin\\u003dbc\",\"id\":\"oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57\"},\"trust\":0.23299527}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cor:louvrp:-1635"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bergstrom, Theodore C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.23299527},"target_publication_title":{"type":"STRING","value":"The core when strategies are restricted by law"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cor:louvrp:-1635\",\"titles\":[\"The core when strategies are restricted by law\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bergstrom, Theodore C.\"],\"publicationdate\":\"1975-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.2307/2296532\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://dx.doi.org/10.2307/2296532\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"1975-01-01\"},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://links.jstor.org/sici?sici\\u003d0034-6527%28197504%2942%3A2%3C249%3ATCWSAR%3E2.0.CO%3B2-C\\u0026origin\\u003dbc\",\"id\":\"oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57\"},\"trust\":0.18607628}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cor:louvrp:-1635"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bergstrom, Theodore C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bla:restud:v:42:y:1975:i:2:p:249-57"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.18607628},"target_publication_title":{"type":"STRING","value":"The core when strategies are restricted by law"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1975-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cor:louvrp:-1635\",\"titles\":[\"The core when strategies are restricted by law\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bergstrom, Theodore C.\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.2307/2296532\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://dx.doi.org/10.2307/2296532\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://dx.doi.org/10.2307/2296532\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.2307/2296532\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dx.doi.org/10.2307/2296532\",\"id\":\"oai:RePEc:cor:louvrp:244\"},\"trust\":0.554823}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cor:louvrp:-1635"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bergstrom, Theodore C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cor:louvrp:244"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.554823},"target_publication_title":{"type":"STRING","value":"The core when strategies are restricted by law"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00706751\",\"titles\":[\"Incertitudes Stochastiques sur des Modèles de Markov Cachés : Application dans l\\u0027Aide à la Décision pour une Maintenance Préventive Industrielle\"],\"abstracts\":[\"Dans ce papier, nous utilisons les Modèles de Markov Cachés comme outils de diagnostic dans l\\u0027aide à la décision en maintenance industrielle. En effet, les chaines de fabrication industrielles utilisent une robotisation de plus en plus pointue. Seulement, les politiques de maintenance ne sont pas adaptées aux attentes de compétitivité exigées. Notre démarche consiste à essayer d\\u0027estimer le niveau de dégradation d\\u0027un processus industriel quelconque, à l\\u0027aide d\\u0027un Modèle de Markov Caché. Nous avons réalisé un modèle de synthèse simulant un tel processus afin d\\u0027en étudier le comportement : pertinence des observations, incertitude et robustesse du modèle. Nous avons au préalable déterminé la topologie la mieux adaptée en terme de maintenance industrielle, en réalisant des mesures de pertinence sur nos différents modèles étudiés. A présent, nous nous intéressons aux incertitudes de ces modèles. Nous tentons d\\u0027évaluer ces incertitudes sur différents algorithmes d\\u0027apprentissage et de décodage, différentes distributions sur les observations et différentes topologies. Nous examinons ainsi les erreurs épistémiques de notre modèle de synthèse et déterminons les éléments ayant la plus faible incertitude. Nous espérons ainsi corroborer notre choix de modèle. Notre objectif est de pouvoir valider de façon objective, un choix de modèle : topologie, ordre, symbole... sans connaissance a priori sur les résultats.\"],\"language\":\"fra/fre\",\"subjects\":[\"[INFO:INFO_AU] Computer Science/Automatic Control Engineering\",\"[INFO:INFO_AU] Informatique/Automatique\",\"Modèles de Markov Cachés\",\"sélection de modèles\",\"algorithmes d\\u0027apprentissage et de décodage\",\"incertitudes de modélisation\",\"maintenance prédictive\"],\"creators\":[\"Roblès, Bernard\",\"Avila, Manuel\",\"Duculty, Florent\",\"Vrignat, Pascal\",\"Begot, Stéphane\",\"Kratz, Frédéric\"],\"publicationdate\":\"2012-06-06\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00706751\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00706751\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00706751\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00706751\",\"id\":\"oai:HAL:hal-00706751v1\"},\"trust\":0.44422013}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00706751"},"target_publication_author_list":{"type":"LIST_STRING","value":["Roblès, Bernard","Avila, Manuel","Duculty, Florent","Vrignat, Pascal","Begot, Stéphane","Kratz, Frédéric"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00706751v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_AU] Computer Science/Automatic Control Engineering","[INFO:INFO_AU] Informatique/Automatique","Modèles de Markov Cachés","sélection de modèles","algorithmes d\u0027apprentissage et de décodage","incertitudes de modélisation","maintenance prédictive"]},"trust":{"type":"FLOAT","value":0.44422013},"target_publication_title":{"type":"STRING","value":"Incertitudes Stochastiques sur des Modèles de Markov Cachés : Application dans l\u0027Aide à la Décision pour une Maintenance Préventive Industrielle"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00706751v1\",\"titles\":[\"Incertitudes Stochastiques sur des Modèles de Markov Cachés : Application dans l\\u0027Aide à la Décision pour une Maintenance Préventive Industrielle\"],\"abstracts\":[\"Dans ce papier, nous utilisons les Modèles de Markov Cachés comme outils de diagnostic dans l\\u0027aide à la décision en maintenance industrielle. En effet, les chaines de fabrication industrielles utilisent une robotisation de plus en plus pointue. Seulement, les politiques de maintenance ne sont pas adaptées aux attentes de compétitivité exigées. Notre démarche consiste à essayer d\\u0027estimer le niveau de dégradation d\\u0027un processus industriel quelconque, à l\\u0027aide d\\u0027un Modèle de Markov Caché. Nous avons réalisé un modèle de synthèse simulant un tel processus afin d\\u0027en étudier le comportement : pertinence des observations, incertitude et robustesse du modèle. Nous avons au préalable déterminé la topologie la mieux adaptée en terme de maintenance industrielle, en réalisant des mesures de pertinence sur nos différents modèles étudiés. A présent, nous nous intéressons aux incertitudes de ces modèles. Nous tentons d\\u0027évaluer ces incertitudes sur différents algorithmes d\\u0027apprentissage et de décodage, différentes distributions sur les observations et différentes topologies. Nous examinons ainsi les erreurs épistémiques de notre modèle de synthèse et déterminons les éléments ayant la plus faible incertitude. Nous espérons ainsi corroborer notre choix de modèle. Notre objectif est de pouvoir valider de façon objective, un choix de modèle : topologie, ordre, symbole... sans connaissance a priori sur les résultats.\"],\"language\":\"fra/fre\",\"subjects\":[\"Modèles de Markov Cachés\",\"sélection de modèles\",\"algorithmes d\\u0027apprentissage et de décodage\",\"incertitudes de modélisation\",\"maintenance prédictive\",\"[INFO.INFO-AU] Computer Science/Automatic Control Engineering\"],\"creators\":[\"Roblès, Bernard\",\"Avila, Manuel\",\"Duculty, Florent\",\"Vrignat, Pascal\",\"Begot, Stéphane\",\"Kratz, Frédéric\"],\"publicationdate\":\"2012-06-06\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire PRISME (PRISME) ; Université d\\u0027Orléans - ENSI Bourges\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00706751\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00706751\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00706751\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00706751\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00706751\"},\"trust\":0.4140811}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00706751v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Roblès, Bernard","Avila, Manuel","Duculty, Florent","Vrignat, Pascal","Begot, Stéphane","Kratz, Frédéric"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00706751"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Modèles de Markov Cachés","sélection de modèles","algorithmes d\u0027apprentissage et de décodage","incertitudes de modélisation","maintenance prédictive","[INFO.INFO-AU] Computer Science/Automatic Control Engineering"]},"trust":{"type":"FLOAT","value":0.4140811},"target_publication_title":{"type":"STRING","value":"Incertitudes Stochastiques sur des Modèles de Markov Cachés : Application dans l\u0027Aide à la Décision pour une Maintenance Préventive Industrielle"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.tue.nl:654011\",\"titles\":[\"Emission spectrum of a depleted neon-mercury positive column\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Bakker, Lp\",\"Kroesen, Gmw\"],\"publicationdate\":\"2000-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repository TU/e\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.tue.nl/654011\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"},{\"url\":\"http://repository.tue.nl/654011\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.tue.nl/654011\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.tue.nl/654011\",\"id\":\"tue:oai:library.tue.nl:654011\"},\"trust\":0.5780535}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repository TU/e"},"target_publication_id":{"type":"STRING","value":"oai:library.tue.nl:654011"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bakker, Lp","Kroesen, Gmw"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tue:oai:library.tue.nl:654011"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.5780535},"target_publication_title":{"type":"STRING","value":"Emission spectrum of a depleted neon-mercury positive column"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2000-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::99c5e07b4d5de9d18c350cdf64c5aa3d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repositorio.ipv.pt:10400.19/1445\",\"titles\":[\"Produção de Pêra Passa: Modernização de Técnicas e Diversificação de Variedades.\"],\"abstracts\":[\"As informações aqui apresentadas resultam do trabalho \\ndesenvolvido por um grupo de docentes da \\nEscola Superior Agrária de Viseu, \\nno âmbito do Projecto AGRO nº 158, intitulado \\n“Conservação e valorização dos recurso genéticos de \\npomóideas regionais” \\n \\nO trabalho teve por objectivos, \\npor um lado propor soluções alternativas ao método de \\nsecagem tradicional, de forma a torná-lo mais competitivo, \\ne por outro avaliar da possibilidade de produzir pêra passa com \\ncaracterísticas semelhantes à pêra passa tradicional, \\na partir de variedades alternativas, \\nprovenientes de variedades regionais de pomóideas.\"],\"language\":\"por\",\"subjects\":[\"secagem\",\"peras\"],\"creators\":[\"Guiné, Raquel\",\"Ferreira, Dulcineia\",\"Barroca, Maria João\",\"Gonçalves, Fernando\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"ESAV\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repositório Científico do Instituto Politécnico de Viseu\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10400.19/1445\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico do Instituto Politécnico de Viseu\",\"instancetype\":\"Book\"},{\"url\":\"http://hdl.handle.net/10400.19/1258\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico do Instituto Politécnico de Viseu\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10400.19/1258\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico do Instituto Politécnico de Viseu\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Repositório Científico do Instituto Politécnico de Viseu\",\"url\":\"http://hdl.handle.net/10400.19/1258\",\"id\":\"oai:repositorio.ipv.pt:10400.19/1258\"},\"trust\":0.8495165}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repositório Científico do Instituto Politécnico de Viseu"},"target_publication_id":{"type":"STRING","value":"oai:repositorio.ipv.pt:10400.19/1445"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guiné, Raquel","Ferreira, Dulcineia","Barroca, Maria João","Gonçalves, Fernando"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repositorio.ipv.pt:10400.19/1258"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8d8818c8e140c64c743113f563cf750f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["secagem","peras"]},"trust":{"type":"FLOAT","value":0.8495165},"target_publication_title":{"type":"STRING","value":"Produção de Pêra Passa: Modernização de Técnicas e Diversificação de Variedades."},"provenance_datasource_name":{"type":"STRING","value":"Repositório Científico do Instituto Politécnico de Viseu"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8d8818c8e140c64c743113f563cf750f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repositorio.ipv.pt:10400.19/1258\",\"titles\":[\"Produção de Pêra Passa: Modernização de Técnicas e Diversificação de Variedades\"],\"abstracts\":[\"Introdução: A Pêra Passa de Viseu é um produto agrícola regional \\nresultante de um processo tecnológico artesanal, que reúne \\ncaracterísticas organolépticas ímpares, tornando-a num\\nproduto agro-alimentar tradicional bastante apreciado.\\nA produção de pêra passa tem decrescido acentuadamente \\nnas últimas décadas, em parte devido aos elevados custos de \\nprodução, ao desconhecimento das suas qualidades e à\\ndeficiente promoção do produto.\\nNo sentido de promover a pêra passa e incentivar a sua \\nprodução, por forma a não se perder um recurso endógeno de \\ngrande qualidade que faz parte do património cultural da\\nregião, a Escola Superior Agrária de Viseu (ESAV), através de \\nalguns dos seus docentes, tem vindo a desenvolver desde \\n1995 diversos trabalhos com vista ao estudo de processos de \\nprodução e caracterização das suas propriedades nutricionais \\ne estruturais, bem como iniciativas para divulgação e promoção \\ndo produto.\\nUm dos objectivos do projecto Agro 158, de que resultam os \\ntrabalhos aqui apresentados, enquadra-se no âmbito das \\nacções que têm vindo a ser desenvolvidos na ESAV, e alia-os aos interesses dos produtores, bem como à experiência das \\nDirecções Regionais de Agricultura envolvidas no Projecto.\"],\"language\":\"por\",\"subjects\":[\"Pera Passa\",\"Produto tradicional\",\"Secagem\"],\"creators\":[\"Guiné, Raquel\",\"Ferreira, Dulcineia\",\"Barroca, Maria João\",\"Gonçalves, Fernando\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"ESAV\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repositório Científico do Instituto Politécnico de Viseu\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10400.19/1258\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico do Instituto Politécnico de Viseu\",\"instancetype\":\"Book\"},{\"url\":\"http://hdl.handle.net/10400.19/1445\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico do Instituto Politécnico de Viseu\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10400.19/1445\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Científico do Instituto Politécnico de Viseu\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Repositório Científico do Instituto Politécnico de Viseu\",\"url\":\"http://hdl.handle.net/10400.19/1445\",\"id\":\"oai:repositorio.ipv.pt:10400.19/1445\"},\"trust\":0.8565896}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repositório Científico do Instituto Politécnico de Viseu"},"target_publication_id":{"type":"STRING","value":"oai:repositorio.ipv.pt:10400.19/1258"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guiné, Raquel","Ferreira, Dulcineia","Barroca, Maria João","Gonçalves, Fernando"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repositorio.ipv.pt:10400.19/1445"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8d8818c8e140c64c743113f563cf750f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Pera Passa","Produto tradicional","Secagem"]},"trust":{"type":"FLOAT","value":0.8565896},"target_publication_title":{"type":"STRING","value":"Produção de Pêra Passa: Modernização de Técnicas e Diversificação de Variedades"},"provenance_datasource_name":{"type":"STRING","value":"Repositório Científico do Instituto Politécnico de Viseu"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8d8818c8e140c64c743113f563cf750f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2510968\",\"titles\":[\"Dissemination of pCT-Like IncK Plasmids Harboring CTX-M-14 Extended-Spectrum β-Lactamase among Clinical Escherichia coli Isolates in the United Kingdom\"],\"abstracts\":[\"IncK plasmids encoding CTX-M-14 extended-spectrum β-lactamase (ESBL) and highly related to plasmid pCT were detected in 13 of 67 (19%) human clinical isolates of Escherichia coli with a group 9 CTX-M-type ESBL from the United Kingdom and in 2 quality assurance isolates. None of these E. coli strains was related to the cattle strain from which pCT was originally characterized.\"],\"language\":\"eng\",\"subjects\":[\"Mechanisms of Resistance\"],\"creators\":[\"Dhanji, Hiran\",\"Khan, Parmina\",\"Cottell, Jennifer L.\",\"Piddock, Laura J. V.\",\"Zhang, Jiancheng\",\"Livermore, David M.\",\"Woodford, Neil\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"American Society for Microbiology\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC3370816\",\"type\":\"pmc\"},{\"value\":\"10.1128/aac.00313-12\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3370816\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1128/aac.00313-12\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"HEALTH FP7 Publications Database\",\"url\":\"http://dx.doi.org/10.1128/aac.00313-12\",\"id\":\"63b28a1faca32f6a8f8b7eca60e846e2\"},\"trust\":0.78467405}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2510968"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dhanji, Hiran","Khan, Parmina","Cottell, Jennifer L.","Piddock, Laura J. V.","Zhang, Jiancheng","Livermore, David M.","Woodford, Neil"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["63b28a1faca32f6a8f8b7eca60e846e2"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::9d14b9d525a1518d0998707bc962b7c2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mechanisms of Resistance"]},"trust":{"type":"FLOAT","value":0.78467405},"target_publication_title":{"type":"STRING","value":"Dissemination of pCT-Like IncK Plasmids Harboring CTX-M-14 Extended-Spectrum β-Lactamase among Clinical Escherichia coli Isolates in the United Kingdom"},"provenance_datasource_name":{"type":"STRING","value":"HEALTH FP7 Publications Database"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2510968\",\"titles\":[\"Dissemination of pCT-Like IncK Plasmids Harboring CTX-M-14 Extended-Spectrum β-Lactamase among Clinical Escherichia coli Isolates in the United Kingdom\"],\"abstracts\":[\"IncK plasmids encoding CTX-M-14 extended-spectrum β-lactamase (ESBL) and highly related to plasmid pCT were detected in 13 of 67 (19%) human clinical isolates of Escherichia coli with a group 9 CTX-M-type ESBL from the United Kingdom and in 2 quality assurance isolates. None of these E. coli strains was related to the cattle strain from which pCT was originally characterized.\"],\"language\":\"eng\",\"subjects\":[\"Mechanisms of Resistance\"],\"creators\":[\"Dhanji, Hiran\",\"Khan, Parmina\",\"Cottell, Jennifer L.\",\"Piddock, Laura J. V.\",\"Zhang, Jiancheng\",\"Livermore, David M.\",\"Woodford, Neil\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"American Society for Microbiology\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC3370816\",\"type\":\"pmc\"},{\"value\":\"10.1128/AAC.00313-12\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3370816\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1128/AAC.00313-12\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"SESAM Publication Database - FP7 HEALTH\",\"url\":\"http://dx.doi.org/10.1128/AAC.00313-12\",\"id\":\"10.1128/aac.00313-12\"},\"trust\":0.9013272}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2510968"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dhanji, Hiran","Khan, Parmina","Cottell, Jennifer L.","Piddock, Laura J. V.","Zhang, Jiancheng","Livermore, David M.","Woodford, Neil"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.1128/aac.00313-12"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::9068113e3d038579bda94f54c3357d37"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mechanisms of Resistance"]},"trust":{"type":"FLOAT","value":0.9013272},"target_publication_title":{"type":"STRING","value":"Dissemination of pCT-Like IncK Plasmids Harboring CTX-M-14 Extended-Spectrum β-Lactamase among Clinical Escherichia coli Isolates in the United Kingdom"},"provenance_datasource_name":{"type":"STRING","value":"SESAM Publication Database - FP7 HEALTH"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.tue.nl:693682\",\"titles\":[\"Towards fast femtosecond laser micromachining of fused silica: The effect of deposited energy.\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Rajesh, S.\",\"Bellouard, Yj\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repository TU/e\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.tue.nl/693682\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"},{\"url\":\"http://repository.tue.nl/693682\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.tue.nl/693682\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.tue.nl/693682\",\"id\":\"tue:oai:library.tue.nl:693682\"},\"trust\":0.46005553}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repository TU/e"},"target_publication_id":{"type":"STRING","value":"oai:library.tue.nl:693682"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rajesh, S.","Bellouard, Yj"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tue:oai:library.tue.nl:693682"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.46005553},"target_publication_title":{"type":"STRING","value":"Towards fast femtosecond laser micromachining of fused silica: The effect of deposited energy."},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::99c5e07b4d5de9d18c350cdf64c5aa3d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1223992\",\"titles\":[\"Assessment of the pharmacokinetics and dynamics of two combination regimens of fosmidomycin-clindamycin in patients with acute uncomplicated falciparum malaria\"],\"abstracts\":[\"Background This study investigated the pharmacokinetics of fosmidomycin when given in combination with clindamycin at two dosage regimens in patients with acute uncomplicated falciparum malaria. Methods A total of 70 patients with acute uncomplicated Plasmodium falciparum malaria who fulfilled the enrolment criteria were recruited in the pharmacokinetic study. Patients were treated with two different dosage regimens of fosmidomycin in combination with clindamycin as follows: Group I: fosmidomycin (900 mg) and clindamycin (300 mg) every 6 hours for 3 days (n \\u003d 25); and Group II: fosmidomycin (1,800 mg) and clindamycin (600 mg) every 12 hours for 3 days (n \\u003d 54). Results Both regimens were well tolerated with no serious adverse events. The 28-day cure rates for Group I and Group II were 91.3 and 89.7%, respectively. Steady-state plasma concentrations of fosmidomycin and clindamycin were attained at about 24 hr after the first dose. The pharmacokinetics of both fosmidomycin and clindamycin analysed by model-independent and model-dependent approaches were generally in broad agreement. There were marked differences in the pharmacokinetic profiles of fosmidomycin and clindamycin when given as two different combination regimens. In general, most of the dose-dependent pharmacokinetic parameters (model-independent Cmax: 3.74 vs 2.41 μg/ml; Cmax-ss: 2.80 vs 2.08 μg/ml; Cmax-min-ss: 2.03 vs 0.71 μg/ml; AUC: 23.31 vs 10.63 μg.hr/ml (median values) were significantly higher in patients who received the high dose regimen (Group II). However, Cmin-ss was lower in this group (0.80 vs 1.37 μg/ml), resulting in significantly higher fluctuations in the plasma concentrations of both fosmidomycin and clindamycin following multiple dosing (110.0 vs 41.9%). Other pharmacokinetic parameters, notably total clearance (CL/F), apparent volume of distribution (V/F, Vz/F) and elimination half-life (t1/2z, t1/2e) were also significantly different between the two dosage regimens. In addition, the dose-dependent pharmacokinetics of both fosmidomycin and clindamycin tended to be lower in patients with recrudescence responses in both groups. Conclusion The findings may suggest that dosing frequency and duration have a significant impact on outcome. The combination of fosmidomycin (900 mg) and clindamycin (300–600 mg) administered every six hours for a minimum of five days would constitute the lowest dose regimen with the shortest duration of treatment and which could result in a cure rate greater than 95%.\"],\"language\":\"eng\",\"subjects\":[\"Research\"],\"creators\":[\"Ruangweerayut, Ronnatrai\",\"Looareesuwan, Sornchai\",\"Hutchinson, David\",\"Chauemung, Anurak\",\"Banmairuroi, Vick\",\"Na-Bangchang, Kesara\"],\"publicationdate\":\"2008-10-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Malaria Journal\",\"issn\":\"\",\"eissn\":\"1475-2875\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1475-2875-7-225\",\"type\":\"doi\"},{\"value\":\"PMC2600645\",\"type\":\"pmc\"},{\"value\":\"18973702\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2600645\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.malariajournal.com/content/7/1/225\",\"license\":\"OPEN\",\"hostedby\":\"Malaria Journal\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.malariajournal.com/content/7/1/225\",\"license\":\"OPEN\",\"hostedby\":\"Malaria Journal\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.malariajournal.com/content/7/1/225\",\"id\":\"oai:doaj.org/article:a13869ebb6384f74aafc1480a59561ce\"},\"trust\":0.48558486}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1223992"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ruangweerayut, Ronnatrai","Looareesuwan, Sornchai","Hutchinson, David","Chauemung, Anurak","Banmairuroi, Vick","Na-Bangchang, Kesara"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:a13869ebb6384f74aafc1480a59561ce"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research"]},"trust":{"type":"FLOAT","value":0.48558486},"target_publication_title":{"type":"STRING","value":"Assessment of the pharmacokinetics and dynamics of two combination regimens of fosmidomycin-clindamycin in patients with acute uncomplicated falciparum malaria"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2008-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dare.ubvu.vu.nl:1871/10119\",\"titles\":[\"Effects of noise on the phase dynamics of nonlinear oscillators\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Daffertshofer, A.\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at VU\"],\"pids\":[{\"value\":\"10.1103/PhysRevLett.76.327\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1871/10119\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1871/10119\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1871/10119\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at VU\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1871/10119\",\"id\":\"vu:oai:dare.ubvu.vu.nl:1871/10119\"},\"trust\":0.951491}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at VU"},"target_publication_id":{"type":"STRING","value":"oai:dare.ubvu.vu.nl:1871/10119"},"target_publication_author_list":{"type":"LIST_STRING","value":["Daffertshofer, A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["vu:oai:dare.ubvu.vu.nl:1871/10119"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.951491},"target_publication_title":{"type":"STRING","value":"Effects of noise on the phase dynamics of nonlinear oscillators"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0c74b7f78409a4022a2c4c5a5ca3ee19"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:47867\",\"titles\":[\"Personal vs. Corporate Goals: Why do Insurance Companies Manage Loss Reserves?\"],\"abstracts\":[\"This study analyses the determining factors of reserve errors in publicly listed property and casualty insurance companies in the U.S. This subject deserves special attention because the previous literature does not control for trade-offs between executive remuneration and other incentives regarding such insurers’ discretionary accounting choices. We find that insurance managers manipulate loss reserves to increase their stock-based remuneration and to achieve corporate goals particularly those goals that relate to reducing tax burdens and obscuring financial weakness. We also observe that enactment of the Sarbanes-Oxley Act has constrained the loss reserve underestimation and changed the structure of reserve error incentives.\"],\"language\":\"und\",\"subjects\":[\"P\\u0026C insurers; reserve manipulation; executive compensation\"],\"creators\":[\"Fiordelisi, Franco\",\"Meles, Antonio\",\"Monferrà, Stefano\",\"Starita, Maria Grazia\"],\"publicationdate\":\"2013-06-24\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/47867/1/MPRA_paper_47867.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/47867/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/47867/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/47867/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:47867\"},\"trust\":0.16878563}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:47867"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fiordelisi, Franco","Meles, Antonio","Monferrà, Stefano","Starita, Maria Grazia"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:47867"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["P\u0026C insurers; reserve manipulation; executive compensation"]},"trust":{"type":"FLOAT","value":0.16878563},"target_publication_title":{"type":"STRING","value":"Personal vs. Corporate Goals: Why do Insurance Companies Manage Loss Reserves?"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-06-24"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:47867\",\"titles\":[\"Personal vs. Corporate Goals: Why do Insurance Companies Manage Loss Reserves?\"],\"abstracts\":[\"This study analyses the determining factors of reserve errors in publicly listed property and casualty insurance companies in the U.S. This subject deserves special attention because the previous literature does not control for trade-offs between executive remuneration and other incentives regarding such insurers’ discretionary accounting choices. We find that insurance managers manipulate loss reserves to increase their stock-based remuneration and to achieve corporate goals particularly those goals that relate to reducing tax burdens and obscuring financial weakness. We also observe that enactment of the Sarbanes-Oxley Act has constrained the loss reserve underestimation and changed the structure of reserve error incentives.\"],\"language\":\"und\",\"subjects\":[\"P\\u0026C insurers; reserve manipulation; executive compensation\"],\"creators\":[\"Fiordelisi, Franco\",\"Meles, Antonio\",\"Monferrà, Stefano\",\"Starita, Maria Grazia\"],\"publicationdate\":\"2013-06-24\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/47867/1/MPRA_paper_47867.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/47867/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/47867/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/47867/\",\"id\":\"47867\"},\"trust\":0.06513286}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:47867"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fiordelisi, Franco","Meles, Antonio","Monferrà, Stefano","Starita, Maria Grazia"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["47867"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["P\u0026C insurers; reserve manipulation; executive compensation"]},"trust":{"type":"FLOAT","value":0.06513286},"target_publication_title":{"type":"STRING","value":"Personal vs. Corporate Goals: Why do Insurance Companies Manage Loss Reserves?"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-06-24"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:47867\",\"titles\":[\"Personal vs. Corporate Goals: Why do Insurance Companies Manage Loss Reserves?\"],\"abstracts\":[\"This study analyses the determining factors of reserve errors in publicly listed property and casualty insurance companies in the U.S. This subject deserves special attention because the previous literature does not control for trade-offs between executive remuneration and other incentives regarding such insurers’ discretionary accounting choices. We find that insurance managers manipulate loss reserves to increase their stock-based remuneration and to achieve corporate goals particularly those goals that relate to reducing tax burdens and obscuring financial weakness. We also observe that enactment of the Sarbanes-Oxley Act has constrained the loss reserve underestimation and changed the structure of reserve error incentives.\"],\"language\":\"eng\",\"subjects\":[\"G22 - Insurance ; Insurance Companies ; Actuarial Studies\",\"G32 - Financing Policy ; Financial Risk and Risk Management ; Capital and Ownership Structure ; Value of Firms ; Goodwill\",\"M42 - Auditing\"],\"creators\":[\"Fiordelisi, Franco\",\"Meles, Antonio\",\"Monferrà, Stefano\",\"Starita, Maria Grazia\"],\"publicationdate\":\"2013-06-24\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/47867/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/47867/1/MPRA_paper_47867.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/47867/1/MPRA_paper_47867.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/47867/1/MPRA_paper_47867.pdf\",\"id\":\"oai:RePEc:pra:mprapa:47867\"},\"trust\":0.96506137}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:47867"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fiordelisi, Franco","Meles, Antonio","Monferrà, Stefano","Starita, Maria Grazia"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:47867"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G22 - Insurance ; Insurance Companies ; Actuarial Studies","G32 - Financing Policy ; Financial Risk and Risk Management ; Capital and Ownership Structure ; Value of Firms ; Goodwill","M42 - Auditing"]},"trust":{"type":"FLOAT","value":0.96506137},"target_publication_title":{"type":"STRING","value":"Personal vs. Corporate Goals: Why do Insurance Companies Manage Loss Reserves?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-06-24"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:47867\",\"titles\":[\"Personal vs. Corporate Goals: Why do Insurance Companies Manage Loss Reserves?\"],\"abstracts\":[\"This study analyses the determining factors of reserve errors in publicly listed property and casualty insurance companies in the U.S. This subject deserves special attention because the previous literature does not control for trade-offs between executive remuneration and other incentives regarding such insurers’ discretionary accounting choices. We find that insurance managers manipulate loss reserves to increase their stock-based remuneration and to achieve corporate goals particularly those goals that relate to reducing tax burdens and obscuring financial weakness. We also observe that enactment of the Sarbanes-Oxley Act has constrained the loss reserve underestimation and changed the structure of reserve error incentives.\"],\"language\":\"eng\",\"subjects\":[\"G22 - Insurance ; Insurance Companies ; Actuarial Studies\",\"G32 - Financing Policy ; Financial Risk and Risk Management ; Capital and Ownership Structure ; Value of Firms ; Goodwill\",\"M42 - Auditing\"],\"creators\":[\"Fiordelisi, Franco\",\"Meles, Antonio\",\"Monferrà, Stefano\",\"Starita, Maria Grazia\"],\"publicationdate\":\"2013-06-24\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/47867/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/47867/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/47867/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/47867/\",\"id\":\"47867\"},\"trust\":0.6163081}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:47867"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fiordelisi, Franco","Meles, Antonio","Monferrà, Stefano","Starita, Maria Grazia"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["47867"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G22 - Insurance ; Insurance Companies ; Actuarial Studies","G32 - Financing Policy ; Financial Risk and Risk Management ; Capital and Ownership Structure ; Value of Firms ; Goodwill","M42 - Auditing"]},"trust":{"type":"FLOAT","value":0.6163081},"target_publication_title":{"type":"STRING","value":"Personal vs. Corporate Goals: Why do Insurance Companies Manage Loss Reserves?"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-06-24"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"47867\",\"titles\":[\"Personal vs. Corporate Goals: Why do Insurance Companies Manage Loss Reserves?\"],\"abstracts\":[\"This study analyses the determining factors of reserve errors in publicly listed property and casualty insurance companies in the U.S. This subject deserves special attention because the previous literature does not control for trade-offs between executive remuneration and other incentives regarding such insurers’ discretionary accounting choices. We find that insurance managers manipulate loss reserves to increase their stock-based remuneration and to achieve corporate goals particularly those goals that relate to reducing tax burdens and obscuring financial weakness. We also observe that enactment of the Sarbanes-Oxley Act has constrained the loss reserve underestimation and changed the structure of reserve error incentives.\"],\"language\":\"eng\",\"subjects\":[\"G22 - Insurance ; Insurance Companies ; Actuarial Studies\",\"G32 - Financing Policy ; Financial Risk and Risk Management ; Capital and Ownership Structure ; Value of Firms ; Goodwill\",\"M42 - Auditing\"],\"creators\":[\"Fiordelisi, Franco\",\"Meles, Antonio\",\"Monferrà, Stefano\",\"Starita, Maria Grazia\"],\"publicationdate\":\"2013-06-24\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/47867/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/47867/1/MPRA_paper_47867.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/47867/1/MPRA_paper_47867.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/47867/1/MPRA_paper_47867.pdf\",\"id\":\"oai:RePEc:pra:mprapa:47867\"},\"trust\":0.90819097}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"47867"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fiordelisi, Franco","Meles, Antonio","Monferrà, Stefano","Starita, Maria Grazia"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:47867"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G22 - Insurance ; Insurance Companies ; Actuarial Studies","G32 - Financing Policy ; Financial Risk and Risk Management ; Capital and Ownership Structure ; Value of Firms ; Goodwill","M42 - Auditing"]},"trust":{"type":"FLOAT","value":0.90819097},"target_publication_title":{"type":"STRING","value":"Personal vs. Corporate Goals: Why do Insurance Companies Manage Loss Reserves?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-06-24"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"47867\",\"titles\":[\"Personal vs. Corporate Goals: Why do Insurance Companies Manage Loss Reserves?\"],\"abstracts\":[\"This study analyses the determining factors of reserve errors in publicly listed property and casualty insurance companies in the U.S. This subject deserves special attention because the previous literature does not control for trade-offs between executive remuneration and other incentives regarding such insurers’ discretionary accounting choices. We find that insurance managers manipulate loss reserves to increase their stock-based remuneration and to achieve corporate goals particularly those goals that relate to reducing tax burdens and obscuring financial weakness. We also observe that enactment of the Sarbanes-Oxley Act has constrained the loss reserve underestimation and changed the structure of reserve error incentives.\"],\"language\":\"eng\",\"subjects\":[\"G22 - Insurance ; Insurance Companies ; Actuarial Studies\",\"G32 - Financing Policy ; Financial Risk and Risk Management ; Capital and Ownership Structure ; Value of Firms ; Goodwill\",\"M42 - Auditing\"],\"creators\":[\"Fiordelisi, Franco\",\"Meles, Antonio\",\"Monferrà, Stefano\",\"Starita, Maria Grazia\"],\"publicationdate\":\"2013-06-24\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/47867/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/47867/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/47867/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/47867/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:47867\"},\"trust\":0.52309245}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"47867"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fiordelisi, Franco","Meles, Antonio","Monferrà, Stefano","Starita, Maria Grazia"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:47867"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G22 - Insurance ; Insurance Companies ; Actuarial Studies","G32 - Financing Policy ; Financial Risk and Risk Management ; Capital and Ownership Structure ; Value of Firms ; Goodwill","M42 - Auditing"]},"trust":{"type":"FLOAT","value":0.52309245},"target_publication_title":{"type":"STRING","value":"Personal vs. Corporate Goals: Why do Insurance Companies Manage Loss Reserves?"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-06-24"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00311419\",\"titles\":[\"Dynamics of grain ejection by sphere impact on a granular bed\"],\"abstracts\":[\"The dynamics of grain ejection consecutive to a sphere impacting a granular material is investigated experimentally and the variations of the characteristics of grain ejection with the control parameters are quantitatively studied. The time evolution of the corona formed by the ejected grains is reported, mainly in terms of its diameter and height, and favourably compared with a simple ballistic model. A key characteristic of the granular corona is that the angle formed by its edge with the horizontal granular surface remains constant during the ejection process, which again can be reproduced by the ballistic model. The number and the kinetic energy of the ejected grains is evaluated and allows for the calculation of an effective restitution coefficient characterizing the complex collision process between the impacting sphere and the fine granular target. The effective restitution coefficient is found to be constant when varying the control parameters.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:COND:CM_SCM] Physics/Condensed Matter/Soft Condensed Matter\",\"[PHYS:COND:CM_SCM] Physique/Matière Condensée/Matière Molle\",\"[PHYS:MECA:MEFL] Physics/Mechanics/Mechanics of the fluids\",\"[PHYS:MECA:MEFL] Physique/Mécanique/Mécanique des fluides\",\"[SPI:MECA:MEFL] Engineering Sciences/Mechanics/Fluids mechanics\",\"[SPI:MECA:MEFL] Sciences de l\\u0027ingénieur/Mécanique/Mécanique des fluides\",\"Granular\",\"Impact\",\"Ejection\",\"Crater\"],\"creators\":[\"Deboeuf, Stéphanie\",\"Gondret, Philippe\",\"Rabaud, Marc\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1103/PhysRevE.79.041306\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00311419\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1103/PhysRevE.79.041306\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0808.2295\",\"id\":\"oai:arXiv.org:0808.2295\"},\"trust\":0.89926577}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00311419"},"target_publication_author_list":{"type":"LIST_STRING","value":["Deboeuf, Stéphanie","Gondret, Philippe","Rabaud, Marc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0808.2295"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:COND:CM_SCM] Physics/Condensed Matter/Soft Condensed Matter","[PHYS:COND:CM_SCM] Physique/Matière Condensée/Matière Molle","[PHYS:MECA:MEFL] Physics/Mechanics/Mechanics of the fluids","[PHYS:MECA:MEFL] Physique/Mécanique/Mécanique des fluides","[SPI:MECA:MEFL] Engineering Sciences/Mechanics/Fluids mechanics","[SPI:MECA:MEFL] Sciences de l\u0027ingénieur/Mécanique/Mécanique des fluides","Granular","Impact","Ejection","Crater"]},"trust":{"type":"FLOAT","value":0.89926577},"target_publication_title":{"type":"STRING","value":"Dynamics of grain ejection by sphere impact on a granular bed"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00311419\",\"titles\":[\"Dynamics of grain ejection by sphere impact on a granular bed\"],\"abstracts\":[\"The dynamics of grain ejection consecutive to a sphere impacting a granular material is investigated experimentally and the variations of the characteristics of grain ejection with the control parameters are quantitatively studied. The time evolution of the corona formed by the ejected grains is reported, mainly in terms of its diameter and height, and favourably compared with a simple ballistic model. A key characteristic of the granular corona is that the angle formed by its edge with the horizontal granular surface remains constant during the ejection process, which again can be reproduced by the ballistic model. The number and the kinetic energy of the ejected grains is evaluated and allows for the calculation of an effective restitution coefficient characterizing the complex collision process between the impacting sphere and the fine granular target. The effective restitution coefficient is found to be constant when varying the control parameters.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:COND:CM_SCM] Physics/Condensed Matter/Soft Condensed Matter\",\"[PHYS:COND:CM_SCM] Physique/Matière Condensée/Matière Molle\",\"[PHYS:MECA:MEFL] Physics/Mechanics/Mechanics of the fluids\",\"[PHYS:MECA:MEFL] Physique/Mécanique/Mécanique des fluides\",\"[SPI:MECA:MEFL] Engineering Sciences/Mechanics/Fluids mechanics\",\"[SPI:MECA:MEFL] Sciences de l\\u0027ingénieur/Mécanique/Mécanique des fluides\",\"Granular\",\"Impact\",\"Ejection\",\"Crater\"],\"creators\":[\"Deboeuf, Stéphanie\",\"Gondret, Philippe\",\"Rabaud, Marc\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1103/PhysRevE.79.041306\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00311419\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1103/PhysRevE.79.041306\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0808.2295\",\"id\":\"oai:arXiv.org:0808.2295\"},\"trust\":0.89926577}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00311419"},"target_publication_author_list":{"type":"LIST_STRING","value":["Deboeuf, Stéphanie","Gondret, Philippe","Rabaud, Marc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0808.2295"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:COND:CM_SCM] Physics/Condensed Matter/Soft Condensed Matter","[PHYS:COND:CM_SCM] Physique/Matière Condensée/Matière Molle","[PHYS:MECA:MEFL] Physics/Mechanics/Mechanics of the fluids","[PHYS:MECA:MEFL] Physique/Mécanique/Mécanique des fluides","[SPI:MECA:MEFL] Engineering Sciences/Mechanics/Fluids mechanics","[SPI:MECA:MEFL] Sciences de l\u0027ingénieur/Mécanique/Mécanique des fluides","Granular","Impact","Ejection","Crater"]},"trust":{"type":"FLOAT","value":0.89926577},"target_publication_title":{"type":"STRING","value":"Dynamics of grain ejection by sphere impact on a granular bed"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00311419\",\"titles\":[\"Dynamics of grain ejection by sphere impact on a granular bed\"],\"abstracts\":[\"The dynamics of grain ejection consecutive to a sphere impacting a granular material is investigated experimentally and the variations of the characteristics of grain ejection with the control parameters are quantitatively studied. The time evolution of the corona formed by the ejected grains is reported, mainly in terms of its diameter and height, and favourably compared with a simple ballistic model. A key characteristic of the granular corona is that the angle formed by its edge with the horizontal granular surface remains constant during the ejection process, which again can be reproduced by the ballistic model. The number and the kinetic energy of the ejected grains is evaluated and allows for the calculation of an effective restitution coefficient characterizing the complex collision process between the impacting sphere and the fine granular target. The effective restitution coefficient is found to be constant when varying the control parameters.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:COND:CM_SCM] Physics/Condensed Matter/Soft Condensed Matter\",\"[PHYS:COND:CM_SCM] Physique/Matière Condensée/Matière Molle\",\"[PHYS:MECA:MEFL] Physics/Mechanics/Mechanics of the fluids\",\"[PHYS:MECA:MEFL] Physique/Mécanique/Mécanique des fluides\",\"[SPI:MECA:MEFL] Engineering Sciences/Mechanics/Fluids mechanics\",\"[SPI:MECA:MEFL] Sciences de l\\u0027ingénieur/Mécanique/Mécanique des fluides\",\"Granular\",\"Impact\",\"Ejection\",\"Crater\"],\"creators\":[\"Deboeuf, Stéphanie\",\"Gondret, Philippe\",\"Rabaud, Marc\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00311419\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"},{\"url\":\"http://arxiv.org/abs/0808.2295\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/0808.2295\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0808.2295\",\"id\":\"oai:arXiv.org:0808.2295\"},\"trust\":0.18165088}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00311419"},"target_publication_author_list":{"type":"LIST_STRING","value":["Deboeuf, Stéphanie","Gondret, Philippe","Rabaud, Marc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0808.2295"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:COND:CM_SCM] Physics/Condensed Matter/Soft Condensed Matter","[PHYS:COND:CM_SCM] Physique/Matière Condensée/Matière Molle","[PHYS:MECA:MEFL] Physics/Mechanics/Mechanics of the fluids","[PHYS:MECA:MEFL] Physique/Mécanique/Mécanique des fluides","[SPI:MECA:MEFL] Engineering Sciences/Mechanics/Fluids mechanics","[SPI:MECA:MEFL] Sciences de l\u0027ingénieur/Mécanique/Mécanique des fluides","Granular","Impact","Ejection","Crater"]},"trust":{"type":"FLOAT","value":0.18165088},"target_publication_title":{"type":"STRING","value":"Dynamics of grain ejection by sphere impact on a granular bed"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00311419\",\"titles\":[\"Dynamics of grain ejection by sphere impact on a granular bed\"],\"abstracts\":[\"The dynamics of grain ejection consecutive to a sphere impacting a granular material is investigated experimentally and the variations of the characteristics of grain ejection with the control parameters are quantitatively studied. The time evolution of the corona formed by the ejected grains is reported, mainly in terms of its diameter and height, and favourably compared with a simple ballistic model. A key characteristic of the granular corona is that the angle formed by its edge with the horizontal granular surface remains constant during the ejection process, which again can be reproduced by the ballistic model. The number and the kinetic energy of the ejected grains is evaluated and allows for the calculation of an effective restitution coefficient characterizing the complex collision process between the impacting sphere and the fine granular target. The effective restitution coefficient is found to be constant when varying the control parameters.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:COND:CM_SCM] Physics/Condensed Matter/Soft Condensed Matter\",\"[PHYS:COND:CM_SCM] Physique/Matière Condensée/Matière Molle\",\"[PHYS:MECA:MEFL] Physics/Mechanics/Mechanics of the fluids\",\"[PHYS:MECA:MEFL] Physique/Mécanique/Mécanique des fluides\",\"[SPI:MECA:MEFL] Engineering Sciences/Mechanics/Fluids mechanics\",\"[SPI:MECA:MEFL] Sciences de l\\u0027ingénieur/Mécanique/Mécanique des fluides\",\"Granular\",\"Impact\",\"Ejection\",\"Crater\"],\"creators\":[\"Deboeuf, Stéphanie\",\"Gondret, Philippe\",\"Rabaud, Marc\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00311419\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00311419\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00311419\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00311419\",\"id\":\"oai:HAL:hal-00311419v3\"},\"trust\":0.84723043}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00311419"},"target_publication_author_list":{"type":"LIST_STRING","value":["Deboeuf, Stéphanie","Gondret, Philippe","Rabaud, Marc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00311419v3"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:COND:CM_SCM] Physics/Condensed Matter/Soft Condensed Matter","[PHYS:COND:CM_SCM] Physique/Matière Condensée/Matière Molle","[PHYS:MECA:MEFL] Physics/Mechanics/Mechanics of the fluids","[PHYS:MECA:MEFL] Physique/Mécanique/Mécanique des fluides","[SPI:MECA:MEFL] Engineering Sciences/Mechanics/Fluids mechanics","[SPI:MECA:MEFL] Sciences de l\u0027ingénieur/Mécanique/Mécanique des fluides","Granular","Impact","Ejection","Crater"]},"trust":{"type":"FLOAT","value":0.84723043},"target_publication_title":{"type":"STRING","value":"Dynamics of grain ejection by sphere impact on a granular bed"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:0808.2295\",\"titles\":[\"Dynamics of grain ejection by sphere impact on a granular bed\"],\"abstracts\":[\" The dynamics of grain ejection consecutive to a sphere impacting a granular\\nmaterial is investigated experimentally and the variations of the\\ncharacteristics of grain ejection with the control parameters are\\nquantitatively studied. The time evolution of the corona formed by the ejected\\ngrains is reported, mainly in terms of its diameter and height, and favourably\\ncompared with a simple ballistic model. A key characteristic of the granular\\ncorona is that the angle formed by its edge with the horizontal granular\\nsurface remains constant during the ejection process, which again can be\\nreproduced by the ballistic model. The number and the kinetic energy of the\\nejected grains is evaluated and allows for the calculation of an effective\\nrestitution coefficient characterizing the complex collision process between\\nthe impacting sphere and the fine granular target. The effective restitution\\ncoefficient is found to be constant when varying the control parameters.\\n\",\"Comment: 9 pages\"],\"language\":\"eng\",\"subjects\":[\"Condensed Matter - Soft Condensed Matter\",\"Physics - Classical Physics\"],\"creators\":[\"Deboeuf, Stéphanie\",\"Gondret, Philippe\",\"Rabaud, Marc\"],\"publicationdate\":\"2008-08-17\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1103/PhysRevE.79.041306\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/0808.2295\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00311419\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00311419\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00311419\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00311419\"},\"trust\":0.23493516}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:0808.2295"},"target_publication_author_list":{"type":"LIST_STRING","value":["Deboeuf, Stéphanie","Gondret, Philippe","Rabaud, Marc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00311419"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Condensed Matter - Soft Condensed Matter","Physics - Classical Physics"]},"trust":{"type":"FLOAT","value":0.23493516},"target_publication_title":{"type":"STRING","value":"Dynamics of grain ejection by sphere impact on a granular bed"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-08-17"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:0808.2295\",\"titles\":[\"Dynamics of grain ejection by sphere impact on a granular bed\"],\"abstracts\":[\" The dynamics of grain ejection consecutive to a sphere impacting a granular\\nmaterial is investigated experimentally and the variations of the\\ncharacteristics of grain ejection with the control parameters are\\nquantitatively studied. The time evolution of the corona formed by the ejected\\ngrains is reported, mainly in terms of its diameter and height, and favourably\\ncompared with a simple ballistic model. A key characteristic of the granular\\ncorona is that the angle formed by its edge with the horizontal granular\\nsurface remains constant during the ejection process, which again can be\\nreproduced by the ballistic model. The number and the kinetic energy of the\\nejected grains is evaluated and allows for the calculation of an effective\\nrestitution coefficient characterizing the complex collision process between\\nthe impacting sphere and the fine granular target. The effective restitution\\ncoefficient is found to be constant when varying the control parameters.\\n\",\"Comment: 9 pages\"],\"language\":\"eng\",\"subjects\":[\"Condensed Matter - Soft Condensed Matter\",\"Physics - Classical Physics\"],\"creators\":[\"Deboeuf, Stéphanie\",\"Gondret, Philippe\",\"Rabaud, Marc\"],\"publicationdate\":\"2008-08-17\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1103/PhysRevE.79.041306\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/0808.2295\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00311419\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00311419\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00311419\",\"id\":\"oai:HAL:hal-00311419v3\"},\"trust\":0.79222935}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:0808.2295"},"target_publication_author_list":{"type":"LIST_STRING","value":["Deboeuf, Stéphanie","Gondret, Philippe","Rabaud, Marc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00311419v3"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Condensed Matter - Soft Condensed Matter","Physics - Classical Physics"]},"trust":{"type":"FLOAT","value":0.79222935},"target_publication_title":{"type":"STRING","value":"Dynamics of grain ejection by sphere impact on a granular bed"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-08-17"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00311419v3\",\"titles\":[\"Dynamics of grain ejection by sphere impact on a granular bed\"],\"abstracts\":[\"9 pages\",\"The dynamics of grain ejection consecutive to a sphere impacting a granular material is investigated experimentally and the variations of the characteristics of grain ejection with the control parameters are quantitatively studied. The time evolution of the corona formed by the ejected grains is reported, mainly in terms of its diameter and height, and favourably compared with a simple ballistic model. A key characteristic of the granular corona is that the angle formed by its edge with the horizontal granular surface remains constant during the ejection process, which again can be reproduced by the ballistic model. The number and the kinetic energy of the ejected grains is evaluated and allows for the calculation of an effective restitution coefficient characterizing the complex collision process between the impacting sphere and the fine granular target. The effective restitution coefficient is found to be constant when varying the control parameters.\"],\"language\":\"eng\",\"subjects\":[\"Granular\",\"Impact\",\"Ejection\",\"Crater\",\"PACS: 45.70.-n, 45.50.-j, 83.80.Fg, 96.15.Qr\",\"[PHYS.COND.CM-SCM] Physics/Condensed Matter/Soft Condensed Matter\",\"[PHYS.MECA.MEFL] Physics/Mechanics/Mechanics of the fluids\",\"[SPI.MECA.MEFL] Engineering Sciences/Mechanics/Fluids mechanics\"],\"creators\":[\"Deboeuf, Stéphanie\",\"Gondret, Philippe\",\"Rabaud, Marc\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire de Physique Statistique de l\\u0027ENS (LPS) ; CNRS - Université Paris VII - Paris Diderot - École normale supérieure [ENS] - Paris - Université Pierre et Marie Curie (UPMC) - Paris VI\",\"Fluides, automatique, systèmes thermiques (FAST) ; Université Paris XI - Paris Sud - Université Pierre et Marie Curie (UPMC) - Paris VI - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00311419\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00311419\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00311419\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00311419\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00311419\"},\"trust\":0.37763286}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00311419v3"},"target_publication_author_list":{"type":"LIST_STRING","value":["Deboeuf, Stéphanie","Gondret, Philippe","Rabaud, Marc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00311419"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Granular","Impact","Ejection","Crater","PACS: 45.70.-n, 45.50.-j, 83.80.Fg, 96.15.Qr","[PHYS.COND.CM-SCM] Physics/Condensed Matter/Soft Condensed Matter","[PHYS.MECA.MEFL] Physics/Mechanics/Mechanics of the fluids","[SPI.MECA.MEFL] Engineering Sciences/Mechanics/Fluids mechanics"]},"trust":{"type":"FLOAT","value":0.37763286},"target_publication_title":{"type":"STRING","value":"Dynamics of grain ejection by sphere impact on a granular bed"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00311419v3\",\"titles\":[\"Dynamics of grain ejection by sphere impact on a granular bed\"],\"abstracts\":[\"9 pages\",\"The dynamics of grain ejection consecutive to a sphere impacting a granular material is investigated experimentally and the variations of the characteristics of grain ejection with the control parameters are quantitatively studied. The time evolution of the corona formed by the ejected grains is reported, mainly in terms of its diameter and height, and favourably compared with a simple ballistic model. A key characteristic of the granular corona is that the angle formed by its edge with the horizontal granular surface remains constant during the ejection process, which again can be reproduced by the ballistic model. The number and the kinetic energy of the ejected grains is evaluated and allows for the calculation of an effective restitution coefficient characterizing the complex collision process between the impacting sphere and the fine granular target. The effective restitution coefficient is found to be constant when varying the control parameters.\"],\"language\":\"eng\",\"subjects\":[\"Granular\",\"Impact\",\"Ejection\",\"Crater\",\"PACS: 45.70.-n, 45.50.-j, 83.80.Fg, 96.15.Qr\",\"[PHYS.COND.CM-SCM] Physics/Condensed Matter/Soft Condensed Matter\",\"[PHYS.MECA.MEFL] Physics/Mechanics/Mechanics of the fluids\",\"[SPI.MECA.MEFL] Engineering Sciences/Mechanics/Fluids mechanics\"],\"creators\":[\"Deboeuf, Stéphanie\",\"Gondret, Philippe\",\"Rabaud, Marc\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire de Physique Statistique de l\\u0027ENS (LPS) ; CNRS - Université Paris VII - Paris Diderot - École normale supérieure [ENS] - Paris - Université Pierre et Marie Curie (UPMC) - Paris VI\",\"Fluides, automatique, systèmes thermiques (FAST) ; Université Paris XI - Paris Sud - Université Pierre et Marie Curie (UPMC) - Paris VI - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1103/PhysRevE.79.041306\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00311419\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1103/PhysRevE.79.041306\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0808.2295\",\"id\":\"oai:arXiv.org:0808.2295\"},\"trust\":0.66816217}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00311419v3"},"target_publication_author_list":{"type":"LIST_STRING","value":["Deboeuf, Stéphanie","Gondret, Philippe","Rabaud, Marc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0808.2295"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Granular","Impact","Ejection","Crater","PACS: 45.70.-n, 45.50.-j, 83.80.Fg, 96.15.Qr","[PHYS.COND.CM-SCM] Physics/Condensed Matter/Soft Condensed Matter","[PHYS.MECA.MEFL] Physics/Mechanics/Mechanics of the fluids","[SPI.MECA.MEFL] Engineering Sciences/Mechanics/Fluids mechanics"]},"trust":{"type":"FLOAT","value":0.66816217},"target_publication_title":{"type":"STRING","value":"Dynamics of grain ejection by sphere impact on a granular bed"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00311419v3\",\"titles\":[\"Dynamics of grain ejection by sphere impact on a granular bed\"],\"abstracts\":[\"9 pages\",\"The dynamics of grain ejection consecutive to a sphere impacting a granular material is investigated experimentally and the variations of the characteristics of grain ejection with the control parameters are quantitatively studied. The time evolution of the corona formed by the ejected grains is reported, mainly in terms of its diameter and height, and favourably compared with a simple ballistic model. A key characteristic of the granular corona is that the angle formed by its edge with the horizontal granular surface remains constant during the ejection process, which again can be reproduced by the ballistic model. The number and the kinetic energy of the ejected grains is evaluated and allows for the calculation of an effective restitution coefficient characterizing the complex collision process between the impacting sphere and the fine granular target. The effective restitution coefficient is found to be constant when varying the control parameters.\"],\"language\":\"eng\",\"subjects\":[\"Granular\",\"Impact\",\"Ejection\",\"Crater\",\"PACS: 45.70.-n, 45.50.-j, 83.80.Fg, 96.15.Qr\",\"[PHYS.COND.CM-SCM] Physics/Condensed Matter/Soft Condensed Matter\",\"[PHYS.MECA.MEFL] Physics/Mechanics/Mechanics of the fluids\",\"[SPI.MECA.MEFL] Engineering Sciences/Mechanics/Fluids mechanics\"],\"creators\":[\"Deboeuf, Stéphanie\",\"Gondret, Philippe\",\"Rabaud, Marc\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire de Physique Statistique de l\\u0027ENS (LPS) ; CNRS - Université Paris VII - Paris Diderot - École normale supérieure [ENS] - Paris - Université Pierre et Marie Curie (UPMC) - Paris VI\",\"Fluides, automatique, systèmes thermiques (FAST) ; Université Paris XI - Paris Sud - Université Pierre et Marie Curie (UPMC) - Paris VI - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1103/PhysRevE.79.041306\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00311419\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1103/PhysRevE.79.041306\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0808.2295\",\"id\":\"oai:arXiv.org:0808.2295\"},\"trust\":0.66816217}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00311419v3"},"target_publication_author_list":{"type":"LIST_STRING","value":["Deboeuf, Stéphanie","Gondret, Philippe","Rabaud, Marc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0808.2295"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Granular","Impact","Ejection","Crater","PACS: 45.70.-n, 45.50.-j, 83.80.Fg, 96.15.Qr","[PHYS.COND.CM-SCM] Physics/Condensed Matter/Soft Condensed Matter","[PHYS.MECA.MEFL] Physics/Mechanics/Mechanics of the fluids","[SPI.MECA.MEFL] Engineering Sciences/Mechanics/Fluids mechanics"]},"trust":{"type":"FLOAT","value":0.66816217},"target_publication_title":{"type":"STRING","value":"Dynamics of grain ejection by sphere impact on a granular bed"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00311419v3\",\"titles\":[\"Dynamics of grain ejection by sphere impact on a granular bed\"],\"abstracts\":[\"9 pages\",\"The dynamics of grain ejection consecutive to a sphere impacting a granular material is investigated experimentally and the variations of the characteristics of grain ejection with the control parameters are quantitatively studied. The time evolution of the corona formed by the ejected grains is reported, mainly in terms of its diameter and height, and favourably compared with a simple ballistic model. A key characteristic of the granular corona is that the angle formed by its edge with the horizontal granular surface remains constant during the ejection process, which again can be reproduced by the ballistic model. The number and the kinetic energy of the ejected grains is evaluated and allows for the calculation of an effective restitution coefficient characterizing the complex collision process between the impacting sphere and the fine granular target. The effective restitution coefficient is found to be constant when varying the control parameters.\"],\"language\":\"eng\",\"subjects\":[\"Granular\",\"Impact\",\"Ejection\",\"Crater\",\"PACS: 45.70.-n, 45.50.-j, 83.80.Fg, 96.15.Qr\",\"[PHYS.COND.CM-SCM] Physics/Condensed Matter/Soft Condensed Matter\",\"[PHYS.MECA.MEFL] Physics/Mechanics/Mechanics of the fluids\",\"[SPI.MECA.MEFL] Engineering Sciences/Mechanics/Fluids mechanics\"],\"creators\":[\"Deboeuf, Stéphanie\",\"Gondret, Philippe\",\"Rabaud, Marc\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire de Physique Statistique de l\\u0027ENS (LPS) ; CNRS - Université Paris VII - Paris Diderot - École normale supérieure [ENS] - Paris - Université Pierre et Marie Curie (UPMC) - Paris VI\",\"Fluides, automatique, systèmes thermiques (FAST) ; Université Paris XI - Paris Sud - Université Pierre et Marie Curie (UPMC) - Paris VI - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00311419\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/0808.2295\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/0808.2295\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0808.2295\",\"id\":\"oai:arXiv.org:0808.2295\"},\"trust\":0.6346082}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00311419v3"},"target_publication_author_list":{"type":"LIST_STRING","value":["Deboeuf, Stéphanie","Gondret, Philippe","Rabaud, Marc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0808.2295"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Granular","Impact","Ejection","Crater","PACS: 45.70.-n, 45.50.-j, 83.80.Fg, 96.15.Qr","[PHYS.COND.CM-SCM] Physics/Condensed Matter/Soft Condensed Matter","[PHYS.MECA.MEFL] Physics/Mechanics/Mechanics of the fluids","[SPI.MECA.MEFL] Engineering Sciences/Mechanics/Fluids mechanics"]},"trust":{"type":"FLOAT","value":0.6346082},"target_publication_title":{"type":"STRING","value":"Dynamics of grain ejection by sphere impact on a granular bed"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ssb:dispap:649\",\"titles\":[\"On the meaning and measurement of redistribution in cross-country comparisons\"],\"abstracts\":[\"Empirical findings on the relationship between income inequality and redistribution from a cross-country perspective are not conclusive. One reason may be that observers have in mind different concepts of redistribution. A major factor is that comparator countries’ pre-fisc distributions typically differ markedly, and account is taken of this differently (if at all) by different measures of redistribution. The ambiguities can be resolved by applying the “transplant-and-compare” approach, rendering fiscal regimes into a common base by adjusting for differences in pre-fisc income inequality, and then measuring the “pure” effect of tax-and-transfer policies using this benchmark. We illustrate both what is possible, and what remains problematic, using this technique, by conducting an exploratory international comparison, based on microdata from the Luxembourg Income Study database in combination with more aggregated information from the OECD, for 15 countries.\"],\"language\":\"und\",\"subjects\":[\"Redistributive effect; Personal income tax; Cross-country comparison\"],\"creators\":[\"Lambert, Peter J.\",\"Runa Nesbakken\",\"Thoresen, Thor O.\"],\"publicationdate\":\"2011-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ssb.no/a/publikasjoner/pdf/DP/dp649.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Norwegian Open Research Archives\",\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"id\":\"\"},\"trust\":0.341406}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ssb:dispap:649"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lambert, Peter J.","Runa Nesbakken","Thoresen, Thor O."]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Redistributive effect; Personal income tax; Cross-country comparison"]},"trust":{"type":"FLOAT","value":0.341406},"target_publication_title":{"type":"STRING","value":"On the meaning and measurement of redistribution in cross-country comparisons"},"provenance_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_dateofacceptance":{"type":"DATE","value":"2011-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ssb:dispap:649\",\"titles\":[\"On the meaning and measurement of redistribution in cross-country comparisons\"],\"abstracts\":[\"Empirical findings on the relationship between income inequality and redistribution from a cross-country perspective are not conclusive. One reason may be that observers have in mind different concepts of redistribution. A major factor is that comparator countries’ pre-fisc distributions typically differ markedly, and account is taken of this differently (if at all) by different measures of redistribution. The ambiguities can be resolved by applying the “transplant-and-compare” approach, rendering fiscal regimes into a common base by adjusting for differences in pre-fisc income inequality, and then measuring the “pure” effect of tax-and-transfer policies using this benchmark. We illustrate both what is possible, and what remains problematic, using this technique, by conducting an exploratory international comparison, based on microdata from the Luxembourg Income Study database in combination with more aggregated information from the OECD, for 15 countries.\"],\"language\":\"und\",\"subjects\":[\"Redistributive effect; Personal income tax; Cross-country comparison\"],\"creators\":[\"Lambert, Peter J.\",\"Runa Nesbakken\",\"Thoresen, Thor O.\"],\"publicationdate\":\"2011-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ssb.no/a/publikasjoner/pdf/DP/dp649.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Norwegian Open Research Archives\",\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"id\":\"\"},\"trust\":0.19416922}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ssb:dispap:649"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lambert, Peter J.","Runa Nesbakken","Thoresen, Thor O."]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Redistributive effect; Personal income tax; Cross-country comparison"]},"trust":{"type":"FLOAT","value":0.19416922},"target_publication_title":{"type":"STRING","value":"On the meaning and measurement of redistribution in cross-country comparisons"},"provenance_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_dateofacceptance":{"type":"DATE","value":"2011-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ssb:dispap:649\",\"titles\":[\"On the meaning and measurement of redistribution in cross-country comparisons\"],\"abstracts\":[\"Empirical findings on the relationship between income inequality and redistribution from a cross-country perspective are not conclusive. One reason may be that observers have in mind different concepts of redistribution. A major factor is that comparator countries’ pre-fisc distributions typically differ markedly, and account is taken of this differently (if at all) by different measures of redistribution. The ambiguities can be resolved by applying the “transplant-and-compare” approach, rendering fiscal regimes into a common base by adjusting for differences in pre-fisc income inequality, and then measuring the “pure” effect of tax-and-transfer policies using this benchmark. We illustrate both what is possible, and what remains problematic, using this technique, by conducting an exploratory international comparison, based on microdata from the Luxembourg Income Study database in combination with more aggregated information from the OECD, for 15 countries.\"],\"language\":\"und\",\"subjects\":[\"Redistributive effect; Personal income tax; Cross-country comparison\"],\"creators\":[\"Lambert, Peter J.\",\"Runa Nesbakken\",\"Thoresen, Thor O.\"],\"publicationdate\":\"2011-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ssb.no/a/publikasjoner/pdf/DP/dp649.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/95351\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/95351\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/95351\",\"id\":\"oai:econstor.eu:10419/95351\"},\"trust\":0.7580181}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ssb:dispap:649"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lambert, Peter J.","Runa Nesbakken","Thoresen, Thor O."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/95351"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Redistributive effect; Personal income tax; Cross-country comparison"]},"trust":{"type":"FLOAT","value":0.7580181},"target_publication_title":{"type":"STRING","value":"On the meaning and measurement of redistribution in cross-country comparisons"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2011-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"\",\"titles\":[\"On the meaning and measurement of redistribution in cross-country comparisons\"],\"abstracts\":[\"Abstract: Empirical findings on the relationship between income inequality and redistribution from a cross-country perspective are not conclusive. One reason may be that observers have in mind different concepts of redistribution. A major factor is that comparator countries’ pre-fisc distributions typically differ markedly, and account is taken of this differently (if at all) by different measures of redistribution. The ambiguities can be resolved by applying the “transplant-and-compare” approach, rendering fiscal regimes into a common base by adjusting for differences in pre-fisc income inequality, and then measuring the “pure” effect of tax-and-transfer policies using this benchmark. We illustrate both what is possible, and what remains problematic, using this technique, by conducting an exploratory international comparison, based on microdata from the Luxembourg Income Study database in combination with more aggregated information from the OECD, for 15 countries. Keywords: Redistributive effect; Personal income tax; Cross-country comparison\",\"Abstracts with downloadable Discussion Papers in PDF are available on the Internet: http://www.ssb.no\",\"This work was supported by the Norwegian Research Council, Grant 187403. We are also grateful to the Luxembourg Income Study (LIS), http://www.lisproject.org/techdoc.htm, for making cross-country income and tax data available. An extended version of the present paper was published as Working Paper No 532 by Luxembourg Income Study.\"],\"language\":\"eng\",\"subjects\":[\"Social science:Economics:Economics:\",\"Samfunnsvitenskap:Økonomi:Samfunnsøkonomi:\",\"Personal income tax\",\"Income inequality\",\"Cross-country comparisons\",\"Redistributive effect\",\"JEL classification: H11\",\"JEL classification: H23\",\"JEL classification: H53\"],\"creators\":[\"Lambert, Peter J.\",\"Nesbakken, Runa\",\"Thoresen, Thor Olav\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Statistics Norway\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Norwegian Open Research Archives\"],\"pids\":[],\"instances\":[{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"},{\"url\":\"http://www.ssb.no/a/publikasjoner/pdf/DP/dp649.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ssb.no/a/publikasjoner/pdf/DP/dp649.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.ssb.no/a/publikasjoner/pdf/DP/dp649.pdf\",\"id\":\"oai:RePEc:ssb:dispap:649\"},\"trust\":0.9852883}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_publication_id":{"type":"STRING","value":""},"target_publication_author_list":{"type":"LIST_STRING","value":["Lambert, Peter J.","Nesbakken, Runa","Thoresen, Thor Olav"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ssb:dispap:649"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Social science:Economics:Economics:","Samfunnsvitenskap:Økonomi:Samfunnsøkonomi:","Personal income tax","Income inequality","Cross-country comparisons","Redistributive effect","JEL classification: H11","JEL classification: H23","JEL classification: H53"]},"trust":{"type":"FLOAT","value":0.9852883},"target_publication_title":{"type":"STRING","value":"On the meaning and measurement of redistribution in cross-country comparisons"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"\",\"titles\":[\"On the meaning and measurement of redistribution in cross-country comparisons\"],\"abstracts\":[\"Abstract: Empirical findings on the relationship between income inequality and redistribution from a cross-country perspective are not conclusive. One reason may be that observers have in mind different concepts of redistribution. A major factor is that comparator countries’ pre-fisc distributions typically differ markedly, and account is taken of this differently (if at all) by different measures of redistribution. The ambiguities can be resolved by applying the “transplant-and-compare” approach, rendering fiscal regimes into a common base by adjusting for differences in pre-fisc income inequality, and then measuring the “pure” effect of tax-and-transfer policies using this benchmark. We illustrate both what is possible, and what remains problematic, using this technique, by conducting an exploratory international comparison, based on microdata from the Luxembourg Income Study database in combination with more aggregated information from the OECD, for 15 countries. Keywords: Redistributive effect; Personal income tax; Cross-country comparison\",\"Abstracts with downloadable Discussion Papers in PDF are available on the Internet: http://www.ssb.no\",\"This work was supported by the Norwegian Research Council, Grant 187403. We are also grateful to the Luxembourg Income Study (LIS), http://www.lisproject.org/techdoc.htm, for making cross-country income and tax data available. An extended version of the present paper was published as Working Paper No 532 by Luxembourg Income Study.\"],\"language\":\"eng\",\"subjects\":[\"Social science:Economics:Economics:\",\"Samfunnsvitenskap:Økonomi:Samfunnsøkonomi:\",\"Personal income tax\",\"Income inequality\",\"Cross-country comparisons\",\"Redistributive effect\",\"JEL classification: H11\",\"JEL classification: H23\",\"JEL classification: H53\"],\"creators\":[\"Lambert, Peter J.\",\"Nesbakken, Runa\",\"Thoresen, Thor Olav\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Statistics Norway\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Norwegian Open Research Archives\"],\"pids\":[],\"instances\":[{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"},{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Norwegian Open Research Archives\",\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"id\":\"\"},\"trust\":0.36582208}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_publication_id":{"type":"STRING","value":""},"target_publication_author_list":{"type":"LIST_STRING","value":["Lambert, Peter J.","Nesbakken, Runa","Thoresen, Thor Olav"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Social science:Economics:Economics:","Samfunnsvitenskap:Økonomi:Samfunnsøkonomi:","Personal income tax","Income inequality","Cross-country comparisons","Redistributive effect","JEL classification: H11","JEL classification: H23","JEL classification: H53"]},"trust":{"type":"FLOAT","value":0.36582208},"target_publication_title":{"type":"STRING","value":"On the meaning and measurement of redistribution in cross-country comparisons"},"provenance_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"\",\"titles\":[\"On the meaning and measurement of redistribution in cross-country comparisons\"],\"abstracts\":[\"Abstract: Empirical findings on the relationship between income inequality and redistribution from a cross-country perspective are not conclusive. One reason may be that observers have in mind different concepts of redistribution. A major factor is that comparator countries’ pre-fisc distributions typically differ markedly, and account is taken of this differently (if at all) by different measures of redistribution. The ambiguities can be resolved by applying the “transplant-and-compare” approach, rendering fiscal regimes into a common base by adjusting for differences in pre-fisc income inequality, and then measuring the “pure” effect of tax-and-transfer policies using this benchmark. We illustrate both what is possible, and what remains problematic, using this technique, by conducting an exploratory international comparison, based on microdata from the Luxembourg Income Study database in combination with more aggregated information from the OECD, for 15 countries. Keywords: Redistributive effect; Personal income tax; Cross-country comparison\",\"Abstracts with downloadable Discussion Papers in PDF are available on the Internet: http://www.ssb.no\",\"This work was supported by the Norwegian Research Council, Grant 187403. We are also grateful to the Luxembourg Income Study (LIS), http://www.lisproject.org/techdoc.htm, for making cross-country income and tax data available. An extended version of the present paper was published as Working Paper No 532 by Luxembourg Income Study.\"],\"language\":\"eng\",\"subjects\":[\"Social science:Economics:Economics:\",\"Samfunnsvitenskap:Økonomi:Samfunnsøkonomi:\",\"Personal income tax\",\"Income inequality\",\"Cross-country comparisons\",\"Redistributive effect\",\"JEL classification: H11\",\"JEL classification: H23\",\"JEL classification: H53\"],\"creators\":[\"Lambert, Peter J.\",\"Nesbakken, Runa\",\"Thoresen, Thor Olav\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Statistics Norway\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Norwegian Open Research Archives\"],\"pids\":[],\"instances\":[{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/95351\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/95351\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/95351\",\"id\":\"oai:econstor.eu:10419/95351\"},\"trust\":0.63360703}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_publication_id":{"type":"STRING","value":""},"target_publication_author_list":{"type":"LIST_STRING","value":["Lambert, Peter J.","Nesbakken, Runa","Thoresen, Thor Olav"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/95351"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Social science:Economics:Economics:","Samfunnsvitenskap:Økonomi:Samfunnsøkonomi:","Personal income tax","Income inequality","Cross-country comparisons","Redistributive effect","JEL classification: H11","JEL classification: H23","JEL classification: H53"]},"trust":{"type":"FLOAT","value":0.63360703},"target_publication_title":{"type":"STRING","value":"On the meaning and measurement of redistribution in cross-country comparisons"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"\",\"titles\":[\"On the meaning and measurement of redistribution in cross-country comparisons\"],\"abstracts\":[\"Abstracts with downloadable Discussion Papersin PDF are available on the Internet:http://www.ssb.no\",\"Abstract:Empirical findings on the relationship between income inequality and redistribution from a cross-country perspective are not conclusive. One reason may be that observers have in mind different concepts of redistribution. A major factor is that comparator countries’ pre-fisc distributions typically differ markedly, and account is taken of this differently (if at all) by different measures of redistribution. The ambiguities can be resolved by applying the “transplant-and-compare” approach, rendering fiscal regimes into a common base by adjusting for differences in pre-fisc income inequality, and then measuring the “pure” effect of tax-and-transfer policies using this benchmark. We illustrate both what is possible, and what remains problematic, using this technique, by conducting an exploratory international comparison, based on microdata from the Luxembourg Income Study database in combination with more aggregated information from the OECD, for 15 countries. Keywords: Redistributive effect; Personal income tax; Cross-country comparison\"],\"language\":\"eng\",\"subjects\":[\"Social science:Economics:Economics:\",\"Samfunnsvitenskap:Økonomi:Samfunnsøkonomi:\",\"Personal income tax\",\"Income inequality\",\"Cross-country comparison\",\"Redistributive effect\",\"JEL classification: H11\",\"JEL classification: H23\",\"JEL classification: H53\"],\"creators\":[\"Lambert, Peter J.\",\"Nesbakken, Runa\",\"Thoresen, Thor Olav\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Statistics Norway\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Norwegian Open Research Archives\"],\"pids\":[],\"instances\":[{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"},{\"url\":\"http://www.ssb.no/a/publikasjoner/pdf/DP/dp649.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ssb.no/a/publikasjoner/pdf/DP/dp649.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.ssb.no/a/publikasjoner/pdf/DP/dp649.pdf\",\"id\":\"oai:RePEc:ssb:dispap:649\"},\"trust\":0.027624369}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_publication_id":{"type":"STRING","value":""},"target_publication_author_list":{"type":"LIST_STRING","value":["Lambert, Peter J.","Nesbakken, Runa","Thoresen, Thor Olav"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ssb:dispap:649"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Social science:Economics:Economics:","Samfunnsvitenskap:Økonomi:Samfunnsøkonomi:","Personal income tax","Income inequality","Cross-country comparison","Redistributive effect","JEL classification: H11","JEL classification: H23","JEL classification: H53"]},"trust":{"type":"FLOAT","value":0.027624369},"target_publication_title":{"type":"STRING","value":"On the meaning and measurement of redistribution in cross-country comparisons"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"\",\"titles\":[\"On the meaning and measurement of redistribution in cross-country comparisons\"],\"abstracts\":[\"Abstracts with downloadable Discussion Papersin PDF are available on the Internet:http://www.ssb.no\",\"Abstract:Empirical findings on the relationship between income inequality and redistribution from a cross-country perspective are not conclusive. One reason may be that observers have in mind different concepts of redistribution. A major factor is that comparator countries’ pre-fisc distributions typically differ markedly, and account is taken of this differently (if at all) by different measures of redistribution. The ambiguities can be resolved by applying the “transplant-and-compare” approach, rendering fiscal regimes into a common base by adjusting for differences in pre-fisc income inequality, and then measuring the “pure” effect of tax-and-transfer policies using this benchmark. We illustrate both what is possible, and what remains problematic, using this technique, by conducting an exploratory international comparison, based on microdata from the Luxembourg Income Study database in combination with more aggregated information from the OECD, for 15 countries. Keywords: Redistributive effect; Personal income tax; Cross-country comparison\"],\"language\":\"eng\",\"subjects\":[\"Social science:Economics:Economics:\",\"Samfunnsvitenskap:Økonomi:Samfunnsøkonomi:\",\"Personal income tax\",\"Income inequality\",\"Cross-country comparison\",\"Redistributive effect\",\"JEL classification: H11\",\"JEL classification: H23\",\"JEL classification: H53\"],\"creators\":[\"Lambert, Peter J.\",\"Nesbakken, Runa\",\"Thoresen, Thor Olav\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Statistics Norway\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Norwegian Open Research Archives\"],\"pids\":[],\"instances\":[{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"},{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Norwegian Open Research Archives\",\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"id\":\"\"},\"trust\":0.49113888}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_publication_id":{"type":"STRING","value":""},"target_publication_author_list":{"type":"LIST_STRING","value":["Lambert, Peter J.","Nesbakken, Runa","Thoresen, Thor Olav"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Social science:Economics:Economics:","Samfunnsvitenskap:Økonomi:Samfunnsøkonomi:","Personal income tax","Income inequality","Cross-country comparison","Redistributive effect","JEL classification: H11","JEL classification: H23","JEL classification: H53"]},"trust":{"type":"FLOAT","value":0.49113888},"target_publication_title":{"type":"STRING","value":"On the meaning and measurement of redistribution in cross-country comparisons"},"provenance_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"\",\"titles\":[\"On the meaning and measurement of redistribution in cross-country comparisons\"],\"abstracts\":[\"Abstracts with downloadable Discussion Papersin PDF are available on the Internet:http://www.ssb.no\",\"Abstract:Empirical findings on the relationship between income inequality and redistribution from a cross-country perspective are not conclusive. One reason may be that observers have in mind different concepts of redistribution. A major factor is that comparator countries’ pre-fisc distributions typically differ markedly, and account is taken of this differently (if at all) by different measures of redistribution. The ambiguities can be resolved by applying the “transplant-and-compare” approach, rendering fiscal regimes into a common base by adjusting for differences in pre-fisc income inequality, and then measuring the “pure” effect of tax-and-transfer policies using this benchmark. We illustrate both what is possible, and what remains problematic, using this technique, by conducting an exploratory international comparison, based on microdata from the Luxembourg Income Study database in combination with more aggregated information from the OECD, for 15 countries. Keywords: Redistributive effect; Personal income tax; Cross-country comparison\"],\"language\":\"eng\",\"subjects\":[\"Social science:Economics:Economics:\",\"Samfunnsvitenskap:Økonomi:Samfunnsøkonomi:\",\"Personal income tax\",\"Income inequality\",\"Cross-country comparison\",\"Redistributive effect\",\"JEL classification: H11\",\"JEL classification: H23\",\"JEL classification: H53\"],\"creators\":[\"Lambert, Peter J.\",\"Nesbakken, Runa\",\"Thoresen, Thor Olav\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Statistics Norway\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Norwegian Open Research Archives\"],\"pids\":[],\"instances\":[{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/95351\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/95351\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/95351\",\"id\":\"oai:econstor.eu:10419/95351\"},\"trust\":0.31959784}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_publication_id":{"type":"STRING","value":""},"target_publication_author_list":{"type":"LIST_STRING","value":["Lambert, Peter J.","Nesbakken, Runa","Thoresen, Thor Olav"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/95351"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Social science:Economics:Economics:","Samfunnsvitenskap:Økonomi:Samfunnsøkonomi:","Personal income tax","Income inequality","Cross-country comparison","Redistributive effect","JEL classification: H11","JEL classification: H23","JEL classification: H53"]},"trust":{"type":"FLOAT","value":0.31959784},"target_publication_title":{"type":"STRING","value":"On the meaning and measurement of redistribution in cross-country comparisons"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/95351\",\"titles\":[\"On the meaning and measurement of redistribution in cross-country comparisons\"],\"abstracts\":[\"There is confusion in the literature concerning the relationship between income inequality and redistribution in a cross-country perspective. The reason for this is that different contributions in the literature are not referring to the same characteristic. This is shown by addressing information about redistribution in an international context from a number of angles: the size measures, such as tax revenue and government spending, the progressivity and redistributive effect with which the size is financed on the tax side, and the redistributional effects of government spending. By employing micro data from the Luxembourg Income Study database in combination with more aggregated information from the OECD for 15 countries, we show that the answer to the question \\u0027does more income inequality generate more redistribution?\\u0027 depends on how the concept of redistribution is operationalized. Moreover, we argue that closer attention should be given to the common-base version of redistribution, which uses the \\u0027transplant-and-compare\\u0027 procedure of Dardanoni and Lambert (2002). This conceptualization of redistribution is in fact what many authors actually may have in mind when discussing the relationship between income inequality and redistribution.\"],\"language\":\"eng\",\"subjects\":[\"H11\",\"H23\",\"H53\",\"ddc:330\",\"Redistributive effect\",\"Personal income tax\",\"Cross-country comparison\",\"Einkommensverteilung\",\"Einkommensumverteilung\",\"Einkommensteuer\",\"OECD-Staaten\"],\"creators\":[\"Lambert, Peter J.\",\"Nesbakken, Runa\",\"Thoresen, Thor O.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"Luxembourg Income Study (LIS) Luxembourg\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/95351\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.ssb.no/a/publikasjoner/pdf/DP/dp649.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ssb.no/a/publikasjoner/pdf/DP/dp649.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.ssb.no/a/publikasjoner/pdf/DP/dp649.pdf\",\"id\":\"oai:RePEc:ssb:dispap:649\"},\"trust\":0.6376873}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/95351"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lambert, Peter J.","Nesbakken, Runa","Thoresen, Thor O."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ssb:dispap:649"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H11","H23","H53","ddc:330","Redistributive effect","Personal income tax","Cross-country comparison","Einkommensverteilung","Einkommensumverteilung","Einkommensteuer","OECD-Staaten"]},"trust":{"type":"FLOAT","value":0.6376873},"target_publication_title":{"type":"STRING","value":"On the meaning and measurement of redistribution in cross-country comparisons"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/95351\",\"titles\":[\"On the meaning and measurement of redistribution in cross-country comparisons\"],\"abstracts\":[\"There is confusion in the literature concerning the relationship between income inequality and redistribution in a cross-country perspective. The reason for this is that different contributions in the literature are not referring to the same characteristic. This is shown by addressing information about redistribution in an international context from a number of angles: the size measures, such as tax revenue and government spending, the progressivity and redistributive effect with which the size is financed on the tax side, and the redistributional effects of government spending. By employing micro data from the Luxembourg Income Study database in combination with more aggregated information from the OECD for 15 countries, we show that the answer to the question \\u0027does more income inequality generate more redistribution?\\u0027 depends on how the concept of redistribution is operationalized. Moreover, we argue that closer attention should be given to the common-base version of redistribution, which uses the \\u0027transplant-and-compare\\u0027 procedure of Dardanoni and Lambert (2002). This conceptualization of redistribution is in fact what many authors actually may have in mind when discussing the relationship between income inequality and redistribution.\"],\"language\":\"eng\",\"subjects\":[\"H11\",\"H23\",\"H53\",\"ddc:330\",\"Redistributive effect\",\"Personal income tax\",\"Cross-country comparison\",\"Einkommensverteilung\",\"Einkommensumverteilung\",\"Einkommensteuer\",\"OECD-Staaten\"],\"creators\":[\"Lambert, Peter J.\",\"Nesbakken, Runa\",\"Thoresen, Thor O.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"Luxembourg Income Study (LIS) Luxembourg\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/95351\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Norwegian Open Research Archives\",\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"id\":\"\"},\"trust\":0.53392684}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/95351"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lambert, Peter J.","Nesbakken, Runa","Thoresen, Thor O."]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H11","H23","H53","ddc:330","Redistributive effect","Personal income tax","Cross-country comparison","Einkommensverteilung","Einkommensumverteilung","Einkommensteuer","OECD-Staaten"]},"trust":{"type":"FLOAT","value":0.53392684},"target_publication_title":{"type":"STRING","value":"On the meaning and measurement of redistribution in cross-country comparisons"},"provenance_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/95351\",\"titles\":[\"On the meaning and measurement of redistribution in cross-country comparisons\"],\"abstracts\":[\"There is confusion in the literature concerning the relationship between income inequality and redistribution in a cross-country perspective. The reason for this is that different contributions in the literature are not referring to the same characteristic. This is shown by addressing information about redistribution in an international context from a number of angles: the size measures, such as tax revenue and government spending, the progressivity and redistributive effect with which the size is financed on the tax side, and the redistributional effects of government spending. By employing micro data from the Luxembourg Income Study database in combination with more aggregated information from the OECD for 15 countries, we show that the answer to the question \\u0027does more income inequality generate more redistribution?\\u0027 depends on how the concept of redistribution is operationalized. Moreover, we argue that closer attention should be given to the common-base version of redistribution, which uses the \\u0027transplant-and-compare\\u0027 procedure of Dardanoni and Lambert (2002). This conceptualization of redistribution is in fact what many authors actually may have in mind when discussing the relationship between income inequality and redistribution.\"],\"language\":\"eng\",\"subjects\":[\"H11\",\"H23\",\"H53\",\"ddc:330\",\"Redistributive effect\",\"Personal income tax\",\"Cross-country comparison\",\"Einkommensverteilung\",\"Einkommensumverteilung\",\"Einkommensteuer\",\"OECD-Staaten\"],\"creators\":[\"Lambert, Peter J.\",\"Nesbakken, Runa\",\"Thoresen, Thor O.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"Luxembourg Income Study (LIS) Luxembourg\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/95351\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Norwegian Open Research Archives\",\"url\":\"http://idtjeneste.nb.no/URN:NBN:no-bibsys_brage_21454\",\"id\":\"\"},\"trust\":0.6176051}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/95351"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lambert, Peter J.","Nesbakken, Runa","Thoresen, Thor O."]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["H11","H23","H53","ddc:330","Redistributive effect","Personal income tax","Cross-country comparison","Einkommensverteilung","Einkommensumverteilung","Einkommensteuer","OECD-Staaten"]},"trust":{"type":"FLOAT","value":0.6176051},"target_publication_title":{"type":"STRING","value":"On the meaning and measurement of redistribution in cross-country comparisons"},"provenance_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:depot.knaw.nl:9125\",\"titles\":[\"Modeling biogeochemical processes in sediments from the Rhône River prodelta area (NW Mediterranean Sea)\"],\"abstracts\":[\"In situ oxygen microprofiles, sediment organic\\ncarbon content, and pore-water concentrations of nitrate, ammonium,\\niron, manganese, and sulfides obtained in sediments\\nfrom the Rhˆone River prodelta and its adjacent continental\\nshelf were used to constrain a numerical diagenetic\\nmodel. Results showed that (1) the organic matter from the\\nRhˆone River is composed of a fraction of fresh material associated\\nto high first-order degradation rate constants (11–\\n33 yr−1); (2) the burial efficiency (burial/input ratio) in the\\nRhˆone prodelta (within 3 km of the river outlet) can be up\\nto 80 %, and decreases to 20% on the adjacent continental\\nshelf 10–15 km further offshore; (3) there is a large contribution\\nof anoxic processes to total mineralization in sediments\\nnear the river mouth, certainly due to large inputs of fresh\\norganic material combined with high sedimentation rates;\\n(4) diagenetic by-products originally produced during anoxic\\norganic matter mineralization are almost entirely precipitated\\n(\\u003e97 %) and buried in the sediment, which leads to (5) a low\\ncontribution of the re-oxidation of reduced products to total\\noxygen consumption. Consequently, total carbon mineralization\\nrates as based on oxygen consumption rates and using\\nRedfield stoichiometry can be largely underestimated in such\\nRiver-dominated Ocean Margins (RiOMar) environments.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Pastor, L.\",\"Cathalot, C.\",\"Deflandre, B.\",\"Viollier, E.\",\"Soetaert, K.\",\"Meysman, F. J. R.\",\"Ulses, C.\",\"Metzger, E.\",\"Rabouille, C.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"KNAW Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://depot.knaw.nl/9125/\",\"license\":\"OPEN\",\"hostedby\":\"KNAW Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://www.biogeosciences-discuss.net/8/549/2011/bgd-8-549-2011.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Biogeosciences Discussions\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.biogeosciences-discuss.net/8/549/2011/bgd-8-549-2011.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Biogeosciences Discussions\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.biogeosciences-discuss.net/8/549/2011/bgd-8-549-2011.pdf\",\"id\":\"oai:doaj.org/article:f5bb00a2dc6d4c9abd1d9d132930ff53\"},\"trust\":0.4271235}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"KNAW Repository"},"target_publication_id":{"type":"STRING","value":"oai:depot.knaw.nl:9125"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pastor, L.","Cathalot, C.","Deflandre, B.","Viollier, E.","Soetaert, K.","Meysman, F. J. R.","Ulses, C.","Metzger, E.","Rabouille, C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:f5bb00a2dc6d4c9abd1d9d132930ff53"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"trust":{"type":"FLOAT","value":0.4271235},"target_publication_title":{"type":"STRING","value":"Modeling biogeochemical processes in sediments from the Rhône River prodelta area (NW Mediterranean Sea)"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::97275a23ca44226c9964043c8462be96"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:depot.knaw.nl:9125\",\"titles\":[\"Modeling biogeochemical processes in sediments from the Rhône River prodelta area (NW Mediterranean Sea)\"],\"abstracts\":[\"In situ oxygen microprofiles, sediment organic\\ncarbon content, and pore-water concentrations of nitrate, ammonium,\\niron, manganese, and sulfides obtained in sediments\\nfrom the Rhˆone River prodelta and its adjacent continental\\nshelf were used to constrain a numerical diagenetic\\nmodel. Results showed that (1) the organic matter from the\\nRhˆone River is composed of a fraction of fresh material associated\\nto high first-order degradation rate constants (11–\\n33 yr−1); (2) the burial efficiency (burial/input ratio) in the\\nRhˆone prodelta (within 3 km of the river outlet) can be up\\nto 80 %, and decreases to 20% on the adjacent continental\\nshelf 10–15 km further offshore; (3) there is a large contribution\\nof anoxic processes to total mineralization in sediments\\nnear the river mouth, certainly due to large inputs of fresh\\norganic material combined with high sedimentation rates;\\n(4) diagenetic by-products originally produced during anoxic\\norganic matter mineralization are almost entirely precipitated\\n(\\u003e97 %) and buried in the sediment, which leads to (5) a low\\ncontribution of the re-oxidation of reduced products to total\\noxygen consumption. Consequently, total carbon mineralization\\nrates as based on oxygen consumption rates and using\\nRedfield stoichiometry can be largely underestimated in such\\nRiver-dominated Ocean Margins (RiOMar) environments.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Pastor, L.\",\"Cathalot, C.\",\"Deflandre, B.\",\"Viollier, E.\",\"Soetaert, K.\",\"Meysman, F. J. R.\",\"Ulses, C.\",\"Metzger, E.\",\"Rabouille, C.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"KNAW Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://depot.knaw.nl/9125/\",\"license\":\"OPEN\",\"hostedby\":\"KNAW Repository\",\"instancetype\":\"Article\"},{\"url\":\"https://pure.knaw.nl/portal/en/publications/modeling-biogeochemical-processes-in-sediments-from-the-rhone-river-prodelta-area-nw-mediterranean-sea(15793625-cf11-446d-aa61-19d5771131dd).html\",\"license\":\"OPEN\",\"hostedby\":\"KNAW Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://pure.knaw.nl/portal/en/publications/modeling-biogeochemical-processes-in-sediments-from-the-rhone-river-prodelta-area-nw-mediterranean-sea(15793625-cf11-446d-aa61-19d5771131dd).html\",\"license\":\"OPEN\",\"hostedby\":\"KNAW Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"https://pure.knaw.nl/portal/en/publications/modeling-biogeochemical-processes-in-sediments-from-the-rhone-river-prodelta-area-nw-mediterranean-sea(15793625-cf11-446d-aa61-19d5771131dd).html\",\"id\":\"knaw:oai:pure.knaw.nl:publications/15793625-cf11-446d-aa61-19d5771131dd\"},\"trust\":0.32830644}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"KNAW Repository"},"target_publication_id":{"type":"STRING","value":"oai:depot.knaw.nl:9125"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pastor, L.","Cathalot, C.","Deflandre, B.","Viollier, E.","Soetaert, K.","Meysman, F. J. R.","Ulses, C.","Metzger, E.","Rabouille, C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["knaw:oai:pure.knaw.nl:publications/15793625-cf11-446d-aa61-19d5771131dd"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.32830644},"target_publication_title":{"type":"STRING","value":"Modeling biogeochemical processes in sediments from the Rhône River prodelta area (NW Mediterranean Sea)"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::97275a23ca44226c9964043c8462be96"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:depot.knaw.nl:9125\",\"titles\":[\"Modeling biogeochemical processes in sediments from the Rhône River prodelta area (NW Mediterranean Sea)\"],\"abstracts\":[\"In situ oxygen microprofiles, sediment organic\\ncarbon content, and pore-water concentrations of nitrate, ammonium,\\niron, manganese, and sulfides obtained in sediments\\nfrom the Rhˆone River prodelta and its adjacent continental\\nshelf were used to constrain a numerical diagenetic\\nmodel. Results showed that (1) the organic matter from the\\nRhˆone River is composed of a fraction of fresh material associated\\nto high first-order degradation rate constants (11–\\n33 yr−1); (2) the burial efficiency (burial/input ratio) in the\\nRhˆone prodelta (within 3 km of the river outlet) can be up\\nto 80 %, and decreases to 20% on the adjacent continental\\nshelf 10–15 km further offshore; (3) there is a large contribution\\nof anoxic processes to total mineralization in sediments\\nnear the river mouth, certainly due to large inputs of fresh\\norganic material combined with high sedimentation rates;\\n(4) diagenetic by-products originally produced during anoxic\\norganic matter mineralization are almost entirely precipitated\\n(\\u003e97 %) and buried in the sediment, which leads to (5) a low\\ncontribution of the re-oxidation of reduced products to total\\noxygen consumption. Consequently, total carbon mineralization\\nrates as based on oxygen consumption rates and using\\nRedfield stoichiometry can be largely underestimated in such\\nRiver-dominated Ocean Margins (RiOMar) environments.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Pastor, L.\",\"Cathalot, C.\",\"Deflandre, B.\",\"Viollier, E.\",\"Soetaert, K.\",\"Meysman, F. J. R.\",\"Ulses, C.\",\"Metzger, E.\",\"Rabouille, C.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"KNAW Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://depot.knaw.nl/9125/\",\"license\":\"OPEN\",\"hostedby\":\"KNAW Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://www.biogeosciences.net/8/1351/2011/bg-8-1351-2011.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Biogeosciences\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.biogeosciences.net/8/1351/2011/bg-8-1351-2011.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Biogeosciences\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.biogeosciences.net/8/1351/2011/bg-8-1351-2011.pdf\",\"id\":\"oai:doaj.org/article:205aea6ec95e4a2cb5c3fe23d57cb26c\"},\"trust\":0.94146264}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"KNAW Repository"},"target_publication_id":{"type":"STRING","value":"oai:depot.knaw.nl:9125"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pastor, L.","Cathalot, C.","Deflandre, B.","Viollier, E.","Soetaert, K.","Meysman, F. J. R.","Ulses, C.","Metzger, E.","Rabouille, C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:205aea6ec95e4a2cb5c3fe23d57cb26c"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"trust":{"type":"FLOAT","value":0.94146264},"target_publication_title":{"type":"STRING","value":"Modeling biogeochemical processes in sediments from the Rhône River prodelta area (NW Mediterranean Sea)"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::97275a23ca44226c9964043c8462be96"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.tue.nl:694047\",\"titles\":[\"ICT as a means of education\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Leeuwen, Jp\",\"Dubbelman, Thmewj\",\"Achten, Hh\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"s.n.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repository TU/e\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.tue.nl/694047\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"\"},{\"url\":\"http://repository.tue.nl/694047\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.tue.nl/694047\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.tue.nl/694047\",\"id\":\"tue:oai:library.tue.nl:694047\"},\"trust\":0.45057845}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repository TU/e"},"target_publication_id":{"type":"STRING","value":"oai:library.tue.nl:694047"},"target_publication_author_list":{"type":"LIST_STRING","value":["Leeuwen, Jp","Dubbelman, Thmewj","Achten, Hh"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tue:oai:library.tue.nl:694047"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.45057845},"target_publication_title":{"type":"STRING","value":"ICT as a means of education"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::99c5e07b4d5de9d18c350cdf64c5aa3d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00213263v1\",\"titles\":[\"RÉSULTATS SUR LA CATHODOLUMINESCENCE DU SÉLÉNIURE DE ZINC\"],\"abstracts\":[\"L\\u0027intensité et la position du maximum des bandes d\\u0027émission du séléniure de zinc excité par bombardement électronique sont étudiées en fonction des conditions d\\u0027excitation. Nous donnons les premiers résultats sur les mesures de la concentration en zinc dans l\\u0027échantillon ainsi que la durée de vie de certaines bandes en vue d\\u0027une interprétation ultérieure du spectre d\\u0027émission.\"],\"language\":\"fra/fre\",\"subjects\":[\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Hitier, G.\",\"Gans, F.\"],\"publicationdate\":\"1967-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphyscol:1967314\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00213263\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00213263\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00213263\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00213263\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00213263\"},\"trust\":0.42874086}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00213263v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hitier, G.","Gans, F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00213263"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.42874086},"target_publication_title":{"type":"STRING","value":"RÉSULTATS SUR LA CATHODOLUMINESCENCE DU SÉLÉNIURE DE ZINC"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1967-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00213263\",\"titles\":[\"RÉSULTATS SUR LA CATHODOLUMINESCENCE DU SÉLÉNIURE DE ZINC\"],\"abstracts\":[\"L\\u0027intensité et la position du maximum des bandes d\\u0027émission du séléniure de zinc excité par bombardement électronique sont étudiées en fonction des conditions d\\u0027excitation. Nous donnons les premiers résultats sur les mesures de la concentration en zinc dans l\\u0027échantillon ainsi que la durée de vie de certaines bandes en vue d\\u0027une interprétation ultérieure du spectre d\\u0027émission.\"],\"language\":\"fra/fre\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\"],\"creators\":[\"Hitier, G.\",\"Gans, F.\"],\"publicationdate\":\"1967-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphyscol:1967314\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00213263\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00213263\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00213263\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00213263\",\"id\":\"oai:HAL:jpa-00213263v1\"},\"trust\":0.6906187}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00213263"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hitier, G.","Gans, F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00213263v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens"]},"trust":{"type":"FLOAT","value":0.6906187},"target_publication_title":{"type":"STRING","value":"RÉSULTATS SUR LA CATHODOLUMINESCENCE DU SÉLÉNIURE DE ZINC"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1967-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1793270\",\"titles\":[\"Secrets of safe laparoscopic surgery: Anaesthetic and surgical considerations\"],\"abstracts\":[\"In recent years, laparoscopic surgery has gained popularity in clinical practice. The key element in laparoscopic surgery is creation of pneumoperitoneum and carbon dioxide is commonly used for insufflation. This pneumoperitoneum perils the normal cardiopulmonary system to a considerable extent. Every laparoscopic surgeon should understand the consequences of pneumoperitoneum; so that its untoward effects can be averted. Pneumoperitoneum increases pressure on diaphragm, leading to its cephalic displacement and thereby decreasing venous return, which can be aggravated by the position of patient during surgery. There is no absolute contraindication of laparoscopic surgery, though we can anticipate some problems in conditions like obesity, pregnancy and previous abdominal surgery. This review discusses some aspects of the pathophysiology of carbon dioxide induced pneumoperitoneum, its consequences as well as strategies to counteract them. Also, we propose certain guidelines for safe laparoscopic surgery.\"],\"language\":\"eng\",\"subjects\":[\"Review Article\",\"Obesity\",\"pneumoperitoneum\",\"pregnancy\",\"previous surgery\",\"safe laparoscopy\"],\"creators\":[\"Srivastava, Arati\",\"Niranjan, Ashutosh\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"Medknow Publications\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Minimal Access Surgery\",\"issn\":\"0972-9941\",\"eissn\":\"1998-3921\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4103/0972-9941.72593\",\"type\":\"doi\"},{\"value\":\"PMC2992667\",\"type\":\"pmc\"},{\"value\":\"21120064\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2992667\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.journalofmas.com/article.asp?issn\\u003d0972-9941;year\\u003d2010;volume\\u003d6;issue\\u003d4;spage\\u003d91;epage\\u003d94;aulast\\u003dSrivastava\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Minimal Access Surgery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.journalofmas.com/article.asp?issn\\u003d0972-9941;year\\u003d2010;volume\\u003d6;issue\\u003d4;spage\\u003d91;epage\\u003d94;aulast\\u003dSrivastava\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Minimal Access Surgery\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.journalofmas.com/article.asp?issn\\u003d0972-9941;year\\u003d2010;volume\\u003d6;issue\\u003d4;spage\\u003d91;epage\\u003d94;aulast\\u003dSrivastava\",\"id\":\"oai:doaj.org/article:2de340db48c34d30b179dda7805597cd\"},\"trust\":0.61357284}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1793270"},"target_publication_author_list":{"type":"LIST_STRING","value":["Srivastava, Arati","Niranjan, Ashutosh"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:2de340db48c34d30b179dda7805597cd"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Review Article","Obesity","pneumoperitoneum","pregnancy","previous surgery","safe laparoscopy"]},"trust":{"type":"FLOAT","value":0.61357284},"target_publication_title":{"type":"STRING","value":"Secrets of safe laparoscopic surgery: Anaesthetic and surgical considerations"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3134935\",\"titles\":[\"Four-dimensional live imaging of apical biosynthetic trafficking reveals a post-Golgi sorting role of apical endosomal intermediates\"],\"abstracts\":[\"The establishment and maintenance of epithelial polarity relies on the tight regulation of vesicular trafficking, which ensures that apical and basolateral membrane proteins reach their designated plasma membrane domains. Here, we report the direct visualization of biosynthetic trans-endosomal trafficking of apically targeted rhodopsin in polarized epithelial cells. Our work provides novel insights into the crosstalk between biosynthetic and endocytic pathways. We demonstrate that the small GTPase Rab11a regulates sorting at apical recycling endosomes (AREs) and is also implicated in carrier vesicle docking at the apical plasma membrane. We further unveil a surprising role for dynamin-2 in the release of apical carriers from AREs. Our data indicate that trans-endosomal trafficking is indispensable for accurate and high-fidelity apical delivery.\"],\"language\":\"eng\",\"subjects\":[\"Biological Sciences\"],\"creators\":[\"Thuenauer, Roland\",\"Hsu, Ya-Chu\",\"Carvajal-Gonzalez, Jose Maria\",\"Deborde, Sylvie\",\"Chuang, Jen-Zen\",\"Römer, Winfried\",\"Sonnleitner, Alois\",\"Rodriguez-Boulan, Enrique\",\"Sung, Ching-Hwa\"],\"publicationdate\":\"2014-03-03\",\"publisher\":\"National Academy of Sciences\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC3964106\",\"type\":\"pmc\"},{\"value\":\"10.1073/pnas.1304168111\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3964106\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1073/pnas.1304168111\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Crossref\",\"url\":\"http://dx.doi.org/10.1073/pnas.1304168111\",\"id\":\"WOS:000333027900058\"},\"trust\":0.005971849}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3134935"},"target_publication_author_list":{"type":"LIST_STRING","value":["Thuenauer, Roland","Hsu, Ya-Chu","Carvajal-Gonzalez, Jose Maria","Deborde, Sylvie","Chuang, Jen-Zen","Römer, Winfried","Sonnleitner, Alois","Rodriguez-Boulan, Enrique","Sung, Ching-Hwa"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["WOS:000333027900058"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::081b82f96300b6a6e3d282bad31cb6e2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Biological Sciences"]},"trust":{"type":"FLOAT","value":0.005971849},"target_publication_title":{"type":"STRING","value":"Four-dimensional live imaging of apical biosynthetic trafficking reveals a post-Golgi sorting role of apical endosomal intermediates"},"provenance_datasource_name":{"type":"STRING","value":"Crossref"},"target_dateofacceptance":{"type":"DATE","value":"2014-03-03"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ega:rafega:200805\",\"titles\":[\"Gobierno corporativo, diversificación estratégica y desempeño empresarial en México\"],\"abstracts\":[\"We study the relationships among corporate governance, strategic diversification and financial performance in Mexico. The study uses data from 99 non-financial firms listed in the BMV (Mexican Stock Market) during 2004. The main findings are: Firms which property is concentrated in a principal shareholder focus on the domestic market. Family firms try to diversify their productive activities and sources of income. There are no trends, regarding strategies and performance, related to the separation between ownership and control. Finally, when independent committees exist in the boards of directors, mean-narrow-spectrum diversification is encouraged in the firms\"],\"language\":\"und\",\"subjects\":[\"Gobierno corporativo, diversificación estratégica, desempeño empresarial, propiedad familiar, consejos de administración\"],\"creators\":[\"Antonio Ruiz Porras\",\"William Henry Steinwascher Sacio\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Revista de Administración, Finanzas y Economía (Journal of Management, Finance and Economics)\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/2008V2A5Ruiz-Steinwascher.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/3819/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/3819/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/3819/\",\"id\":\"3819\"},\"trust\":0.7510274}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ega:rafega:200805"},"target_publication_author_list":{"type":"LIST_STRING","value":["Antonio Ruiz Porras","William Henry Steinwascher Sacio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["3819"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Gobierno corporativo, diversificación estratégica, desempeño empresarial, propiedad familiar, consejos de administración"]},"trust":{"type":"FLOAT","value":0.7510274},"target_publication_title":{"type":"STRING","value":"Gobierno corporativo, diversificación estratégica y desempeño empresarial en México"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ega:rafega:200805\",\"titles\":[\"Gobierno corporativo, diversificación estratégica y desempeño empresarial en México\"],\"abstracts\":[\"We study the relationships among corporate governance, strategic diversification and financial performance in Mexico. The study uses data from 99 non-financial firms listed in the BMV (Mexican Stock Market) during 2004. The main findings are: Firms which property is concentrated in a principal shareholder focus on the domestic market. Family firms try to diversify their productive activities and sources of income. There are no trends, regarding strategies and performance, related to the separation between ownership and control. Finally, when independent committees exist in the boards of directors, mean-narrow-spectrum diversification is encouraged in the firms\"],\"language\":\"und\",\"subjects\":[\"Gobierno corporativo, diversificación estratégica, desempeño empresarial, propiedad familiar, consejos de administración\"],\"creators\":[\"Antonio Ruiz Porras\",\"William Henry Steinwascher Sacio\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Revista de Administración, Finanzas y Economía (Journal of Management, Finance and Economics)\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/2008V2A5Ruiz-Steinwascher.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/3819/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/3819/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/3819/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:3819\"},\"trust\":0.12726128}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ega:rafega:200805"},"target_publication_author_list":{"type":"LIST_STRING","value":["Antonio Ruiz Porras","William Henry Steinwascher Sacio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:3819"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Gobierno corporativo, diversificación estratégica, desempeño empresarial, propiedad familiar, consejos de administración"]},"trust":{"type":"FLOAT","value":0.12726128},"target_publication_title":{"type":"STRING","value":"Gobierno corporativo, diversificación estratégica y desempeño empresarial en México"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"3819\",\"titles\":[\"Gobierno corporativo, diversificación estratégica y desempeño empresarial en México\"],\"abstracts\":[\"We study the empirical relationships among corporate governance, strategic diversification and financial performance in Mexico. The study uses data from 99 non-financial firms listed in the BMV (Mexican Stock Market) during 2004. The main relationships found are: Firms which property is concentrated use to focus on the domestic market. Family businesses diversify their productive activities and their sources of income. There are no trends, regarding strategies and performance, related to the separation between ownership and control. When independent committees exist in the board of directors, firms diversify on a mean-narrow-spectrum sense.\"],\"language\":\"eng\",\"subjects\":[\"M21 - Business Economics\",\"G34 - Mergers ; Acquisitions ; Restructuring ; Corporate Governance\",\"L20 - General\"],\"creators\":[\"Ruiz-Porras, Antonio\",\"Steinwascher, William\"],\"publicationdate\":\"2007-07-03\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/3819/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/2008V2A5Ruiz-Steinwascher.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/2008V2A5Ruiz-Steinwascher.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/2008V2A5Ruiz-Steinwascher.pdf\",\"id\":\"oai:RePEc:ega:rafega:200805\"},\"trust\":0.52749974}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"3819"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ruiz-Porras, Antonio","Steinwascher, William"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ega:rafega:200805"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["M21 - Business Economics","G34 - Mergers ; Acquisitions ; Restructuring ; Corporate Governance","L20 - General"]},"trust":{"type":"FLOAT","value":0.52749974},"target_publication_title":{"type":"STRING","value":"Gobierno corporativo, diversificación estratégica y desempeño empresarial en México"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-07-03"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"3819\",\"titles\":[\"Gobierno corporativo, diversificación estratégica y desempeño empresarial en México\"],\"abstracts\":[\"We study the empirical relationships among corporate governance, strategic diversification and financial performance in Mexico. The study uses data from 99 non-financial firms listed in the BMV (Mexican Stock Market) during 2004. The main relationships found are: Firms which property is concentrated use to focus on the domestic market. Family businesses diversify their productive activities and their sources of income. There are no trends, regarding strategies and performance, related to the separation between ownership and control. When independent committees exist in the board of directors, firms diversify on a mean-narrow-spectrum sense.\"],\"language\":\"eng\",\"subjects\":[\"M21 - Business Economics\",\"G34 - Mergers ; Acquisitions ; Restructuring ; Corporate Governance\",\"L20 - General\"],\"creators\":[\"Ruiz-Porras, Antonio\",\"Steinwascher, William\"],\"publicationdate\":\"2007-07-03\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/3819/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/3819/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/3819/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/3819/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:3819\"},\"trust\":0.87184954}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"3819"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ruiz-Porras, Antonio","Steinwascher, William"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:3819"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["M21 - Business Economics","G34 - Mergers ; Acquisitions ; Restructuring ; Corporate Governance","L20 - General"]},"trust":{"type":"FLOAT","value":0.87184954},"target_publication_title":{"type":"STRING","value":"Gobierno corporativo, diversificación estratégica y desempeño empresarial en México"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2007-07-03"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:3819\",\"titles\":[\"Gobierno corporativo, diversificación estratégica y desempeño empresarial en México\"],\"abstracts\":[\"We study the empirical relationships among corporate governance, strategic diversification and financial performance in Mexico. The study uses data from 99 non-financial firms listed in the BMV (Mexican Stock Market) during 2004. The main relationships found are: Firms which property is concentrated use to focus on the domestic market. Family businesses diversify their productive activities and their sources of income. There are no trends, regarding strategies and performance, related to the separation between ownership and control. When independent committees exist in the board of directors, firms diversify on a mean-narrow-spectrum sense.\"],\"language\":\"eng\",\"subjects\":[\"M21 - Business Economics\",\"G34 - Mergers ; Acquisitions ; Restructuring ; Corporate Governance\",\"L20 - General\"],\"creators\":[\"Ruiz-Porras, Antonio\",\"Steinwascher, William\"],\"publicationdate\":\"2007-07-03\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/3819/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/2008V2A5Ruiz-Steinwascher.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/2008V2A5Ruiz-Steinwascher.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/2008V2A5Ruiz-Steinwascher.pdf\",\"id\":\"oai:RePEc:ega:rafega:200805\"},\"trust\":0.5279416}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:3819"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ruiz-Porras, Antonio","Steinwascher, William"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ega:rafega:200805"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["M21 - Business Economics","G34 - Mergers ; Acquisitions ; Restructuring ; Corporate Governance","L20 - General"]},"trust":{"type":"FLOAT","value":0.5279416},"target_publication_title":{"type":"STRING","value":"Gobierno corporativo, diversificación estratégica y desempeño empresarial en México"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-07-03"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:3819\",\"titles\":[\"Gobierno corporativo, diversificación estratégica y desempeño empresarial en México\"],\"abstracts\":[\"We study the empirical relationships among corporate governance, strategic diversification and financial performance in Mexico. The study uses data from 99 non-financial firms listed in the BMV (Mexican Stock Market) during 2004. The main relationships found are: Firms which property is concentrated use to focus on the domestic market. Family businesses diversify their productive activities and their sources of income. There are no trends, regarding strategies and performance, related to the separation between ownership and control. When independent committees exist in the board of directors, firms diversify on a mean-narrow-spectrum sense.\"],\"language\":\"eng\",\"subjects\":[\"M21 - Business Economics\",\"G34 - Mergers ; Acquisitions ; Restructuring ; Corporate Governance\",\"L20 - General\"],\"creators\":[\"Ruiz-Porras, Antonio\",\"Steinwascher, William\"],\"publicationdate\":\"2007-07-03\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/3819/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/3819/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/3819/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/3819/\",\"id\":\"3819\"},\"trust\":0.596953}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:3819"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ruiz-Porras, Antonio","Steinwascher, William"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["3819"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["M21 - Business Economics","G34 - Mergers ; Acquisitions ; Restructuring ; Corporate Governance","L20 - General"]},"trust":{"type":"FLOAT","value":0.596953},"target_publication_title":{"type":"STRING","value":"Gobierno corporativo, diversificación estratégica y desempeño empresarial en México"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2007-07-03"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:gesis.izsoz.de:10927\",\"titles\":[\"Entgrenzung als allgemeinerer Trend? : mobile Pflege und Arbeit in der Medien- und Kulturindustrie im Vergleich\"],\"abstracts\":[\"\\\"In der deutschsprachigen Arbeits- und Industriesoziologie wird derzeit eine intensive Debatte über die \\u0027Entgrenzung\\u0027 von Erwerbsarbeit geführt. Hiermit ist gemeint, dass sich die industriegesellschaftlich etablierten Grenzen von Erwerbsarbeit verflüssigen oder auflösen. Bislang gibt es kaum empirische Arbeiten, in denen die prognostizierten Veränderungen in konkreten Tätigkeitsfeldern vergleichend untersucht werden. Das vorliegende Arbeitspapier kontrastiert Befunde aus einer Studie über mobile Pflegedienste mit Ergebnissen einer Untersuchung über Freelancer in der Medien- und Kulturindustrie. Dabei wird der Frage nachgegangen, ob die These einer generellen Entgrenzung von Arbeit tatsächlich haltbar ist. Lassen sich in bestimmten Bereichen möglicherweise Gegentendenzen beobachten? Passen sich die Beschäftigten lediglich den veränderten Anforderungen an oder entwickeln sie eigene, aktive Strategien zur Begrenzung von Erwerbsarbeit und zur Neugestaltung des Verhältnisses von Erwerbsarbeit und Privatleben? Wie verteilen sich Chancen und Risiken für eine aktive Grenzziehung zwischen unterschiedlichen Beschäftigtengruppen? Und schließlich: Welcher Erkenntnisgewinn lässt sich aus solchen vergleichenden empirischen Befunden für die Entgrenzungsdebatte erzielen?\\\" (Autorenreferat)\",\"\\\"In the German sociology of work and industrial relations there is an ongoing discussion on the de-limitation of work. In this debate, it is assumed that the de-standardisation and growing flexibilisation of work may result in a dissolution of the boundaries between work and private live, whereas a separation of both spheres was characteristic for an ideal-type standard working contract during the fordist period. Up to now, there has not been much empirical research which takes a closer look to the postulated changes. To get a broader perspective on the changes of work in different occupational fields, the paper compares results from a study on mobile care services with the findings of a research project on freelancers in the New Media and the cultural industries. The authors ask whether the assumed de-limitation of work really is a general trend. Are there possibly countervailing tendencies in some fields? Do workers just cope with the changes of work, or do they develop own, active strategies to re-define the boundaries of work and to find a new work-life balance? How are opportunities and risks spread among different groups of workers? What can be learned from such a comparative perspective for the debate on a de-limitation of work?\\\" (author\\u0027s abstract)\"],\"language\":\"und\",\"subjects\":[\"Social sciences, sociology, anthropology\",\"Economics\",\"Sozialwissenschaften, Soziologie\",\"Wirtschaft\",\"Sociology of Work, Industrial Sociology, Industrial Relations\",\"Occupational Research, Occupational Sociology\",\"Industrie- und Betriebssoziologie, Arbeitssoziologie, industrielle Beziehungen\",\"Berufsforschung, Berufssoziologie\",\"ambulante Versorgung\",\"Entgrenzung\",\"Erwerbsarbeit\",\"häusliche Pflege\",\"Krankenpflege\",\"Kulturberuf\",\"Medienberuf\",\"Pflegeberuf\",\"Privatsphäre\",\"outpatient care\",\"delimitation\",\"gainful work\",\"home care\",\"nursing\",\"cultural career\",\"media job\",\"nursing occupation\",\"privacy\",\"descriptive study\",\"deskriptive Studie\"],\"creators\":[\"Henninger, Annette\",\"Papouschek, Ulrike\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"Bremen\",\"embargoenddate\":\"\",\"contributor\":[\"Universität Bremen, Zentrum für Sozialpolitik\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Social Science Open Access Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ssoar.info/ssoar/handle/document/10927\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/27122\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/27122\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/27122\",\"id\":\"oai:econstor.eu:10419/27122\"},\"trust\":0.6992907}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Social Science Open Access Repository"},"target_publication_id":{"type":"STRING","value":"oai:gesis.izsoz.de:10927"},"target_publication_author_list":{"type":"LIST_STRING","value":["Henninger, Annette","Papouschek, Ulrike"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/27122"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Social sciences, sociology, anthropology","Economics","Sozialwissenschaften, Soziologie","Wirtschaft","Sociology of Work, Industrial Sociology, Industrial Relations","Occupational Research, Occupational Sociology","Industrie- und Betriebssoziologie, Arbeitssoziologie, industrielle Beziehungen","Berufsforschung, Berufssoziologie","ambulante Versorgung","Entgrenzung","Erwerbsarbeit","häusliche Pflege","Krankenpflege","Kulturberuf","Medienberuf","Pflegeberuf","Privatsphäre","outpatient care","delimitation","gainful work","home care","nursing","cultural career","media job","nursing occupation","privacy","descriptive study","deskriptive Studie"]},"trust":{"type":"FLOAT","value":0.6992907},"target_publication_title":{"type":"STRING","value":"Entgrenzung als allgemeinerer Trend? : mobile Pflege und Arbeit in der Medien- und Kulturindustrie im Vergleich"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7810ccd41bf26faaa2c4e1f20db70a71"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:gesis.izsoz.de:10927\",\"titles\":[\"Entgrenzung als allgemeinerer Trend? : mobile Pflege und Arbeit in der Medien- und Kulturindustrie im Vergleich\"],\"abstracts\":[\"\\\"In der deutschsprachigen Arbeits- und Industriesoziologie wird derzeit eine intensive Debatte über die \\u0027Entgrenzung\\u0027 von Erwerbsarbeit geführt. Hiermit ist gemeint, dass sich die industriegesellschaftlich etablierten Grenzen von Erwerbsarbeit verflüssigen oder auflösen. Bislang gibt es kaum empirische Arbeiten, in denen die prognostizierten Veränderungen in konkreten Tätigkeitsfeldern vergleichend untersucht werden. Das vorliegende Arbeitspapier kontrastiert Befunde aus einer Studie über mobile Pflegedienste mit Ergebnissen einer Untersuchung über Freelancer in der Medien- und Kulturindustrie. Dabei wird der Frage nachgegangen, ob die These einer generellen Entgrenzung von Arbeit tatsächlich haltbar ist. Lassen sich in bestimmten Bereichen möglicherweise Gegentendenzen beobachten? Passen sich die Beschäftigten lediglich den veränderten Anforderungen an oder entwickeln sie eigene, aktive Strategien zur Begrenzung von Erwerbsarbeit und zur Neugestaltung des Verhältnisses von Erwerbsarbeit und Privatleben? Wie verteilen sich Chancen und Risiken für eine aktive Grenzziehung zwischen unterschiedlichen Beschäftigtengruppen? Und schließlich: Welcher Erkenntnisgewinn lässt sich aus solchen vergleichenden empirischen Befunden für die Entgrenzungsdebatte erzielen?\\\" (Autorenreferat)\",\"\\\"In the German sociology of work and industrial relations there is an ongoing discussion on the de-limitation of work. In this debate, it is assumed that the de-standardisation and growing flexibilisation of work may result in a dissolution of the boundaries between work and private live, whereas a separation of both spheres was characteristic for an ideal-type standard working contract during the fordist period. Up to now, there has not been much empirical research which takes a closer look to the postulated changes. To get a broader perspective on the changes of work in different occupational fields, the paper compares results from a study on mobile care services with the findings of a research project on freelancers in the New Media and the cultural industries. The authors ask whether the assumed de-limitation of work really is a general trend. Are there possibly countervailing tendencies in some fields? Do workers just cope with the changes of work, or do they develop own, active strategies to re-define the boundaries of work and to find a new work-life balance? How are opportunities and risks spread among different groups of workers? What can be learned from such a comparative perspective for the debate on a de-limitation of work?\\\" (author\\u0027s abstract)\"],\"language\":\"und\",\"subjects\":[\"Social sciences, sociology, anthropology\",\"Economics\",\"Sozialwissenschaften, Soziologie\",\"Wirtschaft\",\"Sociology of Work, Industrial Sociology, Industrial Relations\",\"Occupational Research, Occupational Sociology\",\"Industrie- und Betriebssoziologie, Arbeitssoziologie, industrielle Beziehungen\",\"Berufsforschung, Berufssoziologie\",\"ambulante Versorgung\",\"Entgrenzung\",\"Erwerbsarbeit\",\"häusliche Pflege\",\"Krankenpflege\",\"Kulturberuf\",\"Medienberuf\",\"Pflegeberuf\",\"Privatsphäre\",\"outpatient care\",\"delimitation\",\"gainful work\",\"home care\",\"nursing\",\"cultural career\",\"media job\",\"nursing occupation\",\"privacy\",\"descriptive study\",\"deskriptive Studie\"],\"creators\":[\"Henninger, Annette\",\"Papouschek, Ulrike\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"Bremen\",\"embargoenddate\":\"\",\"contributor\":[\"Universität Bremen, Zentrum für Sozialpolitik\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Social Science Open Access Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ssoar.info/ssoar/handle/document/10927\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Research\"},{\"url\":\"http://econstor.eu/bitstream/10419/27122/1/512531188.PDF\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/27122/1/512531188.PDF\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econstor.eu/bitstream/10419/27122/1/512531188.PDF\",\"id\":\"oai:RePEc:zbw:zeswps:052005\"},\"trust\":0.35092884}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Social Science Open Access Repository"},"target_publication_id":{"type":"STRING","value":"oai:gesis.izsoz.de:10927"},"target_publication_author_list":{"type":"LIST_STRING","value":["Henninger, Annette","Papouschek, Ulrike"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:zbw:zeswps:052005"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Social sciences, sociology, anthropology","Economics","Sozialwissenschaften, Soziologie","Wirtschaft","Sociology of Work, Industrial Sociology, Industrial Relations","Occupational Research, Occupational Sociology","Industrie- und Betriebssoziologie, Arbeitssoziologie, industrielle Beziehungen","Berufsforschung, Berufssoziologie","ambulante Versorgung","Entgrenzung","Erwerbsarbeit","häusliche Pflege","Krankenpflege","Kulturberuf","Medienberuf","Pflegeberuf","Privatsphäre","outpatient care","delimitation","gainful work","home care","nursing","cultural career","media job","nursing occupation","privacy","descriptive study","deskriptive Studie"]},"trust":{"type":"FLOAT","value":0.35092884},"target_publication_title":{"type":"STRING","value":"Entgrenzung als allgemeinerer Trend? : mobile Pflege und Arbeit in der Medien- und Kulturindustrie im Vergleich"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7810ccd41bf26faaa2c4e1f20db70a71"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/27122\",\"titles\":[\"Entgrenzung als allgemeinerer Trend? Mobile Pflege und Arbeit in der Medien- und Kulturindustrie im Vergleich\"],\"abstracts\":[\"In der deutschsprachigen Arbeits- und Industriesoziologie wird derzeit eine intensive Debatte über die Entgrenzung von Erwerbsarbeit geführt. Hiermit ist gemeint, dass sich die industriegesellschaftlich etablierten Grenzen von Erwerbsarbeit verflüssigen oder auflösen. Bislang gibt es kaum empirische Arbeiten, in denen die prognostizierten Veränderungen in konkreten Tätigkeitsfeldern vergleichend untersucht werden. Das vorliegende Arbeitspapier kontrastiert Befunde aus einer Studie über mobile Pflegedienste mit Ergebnissen einer Untersuchung über Freelancer in der Medien- und Kulturindustrie. Dabei wird der Frage nachgegangen, ob die These einer generellen Entgrenzung von Arbeit tatsächlich haltbar ist. Lassen sich in bestimmten Bereichen möglicherweise Gegentendenzen beobachten? Passen sich die Beschäftigten lediglich den veränderten Anforderungen an oder entwickeln sie eigene, aktive Strategien zur Begrenzung von Erwerbsarbeit und zur Neugestaltung des Verhältnisses von Erwerbsarbeit und Privatleben? Wie verteilen sich Chancen und Risiken für eine aktive Grenzziehung zwischen unterschiedlichen Beschäftigtengruppen? Und schließlich: Welcher Erkenntnisgewinn lässt sich aus solchen vergleichenden empirischen Befunden für die Entgrenzungsdebatte erzielen?\",\"In the German sociology of work and industrial relations there is an ongoing discussion on the de-limitation of work. In this debate, it is assumed that the de-standardisation and growing flexibilisation of work may result in a dissolution of the boundaries between work and private live, whereas a separation of both spheres was characteristic for an ideal-type standard working contract during the fordist period. Up to now, there has not been much empirical research which takes a closer look to the postulated changes. To get a broader perspective on the changes of work in different occupational fields, the paper compares results from a study on mobile care services with the findings of a research project on freelancers in the New Media and the cultural industries. The authors ask whether the assumed de-limitation of work really is a general trend. Are there possibly countervailing tendencies in some fields? Do workers just cope with the changes of work, or do they develop own, active strategies to re-define the boundaries of work and to find a new work-life balance? How are opportunities and risks spread among different groups of workers? What can be learned from such a comparative perspective for the debate on a de-limitation of work?\"],\"language\":\"deu/ger\",\"subjects\":[\"ddc:320\"],\"creators\":[\"Henninger, Annette\",\"Papouschek, Ulrike\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"Zentrum für Sozialpolitik, Univ. Bremen\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/27122\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.ssoar.info/ssoar/handle/document/10927\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ssoar.info/ssoar/handle/document/10927\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Social Science Open Access Repository\",\"url\":\"http://www.ssoar.info/ssoar/handle/document/10927\",\"id\":\"oai:gesis.izsoz.de:10927\"},\"trust\":0.8685807}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/27122"},"target_publication_author_list":{"type":"LIST_STRING","value":["Henninger, Annette","Papouschek, Ulrike"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:gesis.izsoz.de:10927"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7810ccd41bf26faaa2c4e1f20db70a71"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:320"]},"trust":{"type":"FLOAT","value":0.8685807},"target_publication_title":{"type":"STRING","value":"Entgrenzung als allgemeinerer Trend? Mobile Pflege und Arbeit in der Medien- und Kulturindustrie im Vergleich"},"provenance_datasource_name":{"type":"STRING","value":"Social Science Open Access Repository"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/27122\",\"titles\":[\"Entgrenzung als allgemeinerer Trend? Mobile Pflege und Arbeit in der Medien- und Kulturindustrie im Vergleich\"],\"abstracts\":[\"In der deutschsprachigen Arbeits- und Industriesoziologie wird derzeit eine intensive Debatte über die Entgrenzung von Erwerbsarbeit geführt. Hiermit ist gemeint, dass sich die industriegesellschaftlich etablierten Grenzen von Erwerbsarbeit verflüssigen oder auflösen. Bislang gibt es kaum empirische Arbeiten, in denen die prognostizierten Veränderungen in konkreten Tätigkeitsfeldern vergleichend untersucht werden. Das vorliegende Arbeitspapier kontrastiert Befunde aus einer Studie über mobile Pflegedienste mit Ergebnissen einer Untersuchung über Freelancer in der Medien- und Kulturindustrie. Dabei wird der Frage nachgegangen, ob die These einer generellen Entgrenzung von Arbeit tatsächlich haltbar ist. Lassen sich in bestimmten Bereichen möglicherweise Gegentendenzen beobachten? Passen sich die Beschäftigten lediglich den veränderten Anforderungen an oder entwickeln sie eigene, aktive Strategien zur Begrenzung von Erwerbsarbeit und zur Neugestaltung des Verhältnisses von Erwerbsarbeit und Privatleben? Wie verteilen sich Chancen und Risiken für eine aktive Grenzziehung zwischen unterschiedlichen Beschäftigtengruppen? Und schließlich: Welcher Erkenntnisgewinn lässt sich aus solchen vergleichenden empirischen Befunden für die Entgrenzungsdebatte erzielen?\",\"In the German sociology of work and industrial relations there is an ongoing discussion on the de-limitation of work. In this debate, it is assumed that the de-standardisation and growing flexibilisation of work may result in a dissolution of the boundaries between work and private live, whereas a separation of both spheres was characteristic for an ideal-type standard working contract during the fordist period. Up to now, there has not been much empirical research which takes a closer look to the postulated changes. To get a broader perspective on the changes of work in different occupational fields, the paper compares results from a study on mobile care services with the findings of a research project on freelancers in the New Media and the cultural industries. The authors ask whether the assumed de-limitation of work really is a general trend. Are there possibly countervailing tendencies in some fields? Do workers just cope with the changes of work, or do they develop own, active strategies to re-define the boundaries of work and to find a new work-life balance? How are opportunities and risks spread among different groups of workers? What can be learned from such a comparative perspective for the debate on a de-limitation of work?\"],\"language\":\"deu/ger\",\"subjects\":[\"ddc:320\"],\"creators\":[\"Henninger, Annette\",\"Papouschek, Ulrike\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"Zentrum für Sozialpolitik, Univ. Bremen\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/27122\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://econstor.eu/bitstream/10419/27122/1/512531188.PDF\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/27122/1/512531188.PDF\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econstor.eu/bitstream/10419/27122/1/512531188.PDF\",\"id\":\"oai:RePEc:zbw:zeswps:052005\"},\"trust\":0.73293227}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/27122"},"target_publication_author_list":{"type":"LIST_STRING","value":["Henninger, Annette","Papouschek, Ulrike"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:zbw:zeswps:052005"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:320"]},"trust":{"type":"FLOAT","value":0.73293227},"target_publication_title":{"type":"STRING","value":"Entgrenzung als allgemeinerer Trend? Mobile Pflege und Arbeit in der Medien- und Kulturindustrie im Vergleich"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:zbw:zeswps:052005\",\"titles\":[\"Entgrenzung als allgemeinerer Trend? Mobile Pflege und Arbeit in der Medien- und Kulturindustrie im Vergleich\"],\"abstracts\":[\"In der deutschsprachigen Arbeits- und Industriesoziologie wird derzeit eine intensive Debatte über die Entgrenzung von Erwerbsarbeit geführt. Hiermit ist gemeint, dass sich die industriegesellschaftlich etablierten Grenzen von Erwerbsarbeit verflüssigen oder auflösen. Bislang gibt es kaum empirische Arbeiten, in denen die prognostizierten Veränderungen in konkreten Tätigkeitsfeldern vergleichend untersucht werden. Das vorliegende Arbeitspapier kontrastiert Befunde aus einer Studie über mobile Pflegedienste mit Ergebnissen einer Untersuchung über Freelancer in der Medien- und Kulturindustrie. Dabei wird der Frage nachgegangen, ob die These einer generellen Entgrenzung von Arbeit tatsächlich haltbar ist. Lassen sich in bestimmten Bereichen möglicherweise Gegentendenzen beobachten? Passen sich die Beschäftigten lediglich den veränderten Anforderungen an oder entwickeln sie eigene, aktive Strategien zur Begrenzung von Erwerbsarbeit und zur Neugestaltung des Verhältnisses von Erwerbsarbeit und Privatleben? Wie verteilen sich Chancen und Risiken für eine aktive Grenzziehung zwischen unterschiedlichen Beschäftigtengruppen? Und schließlich: Welcher Erkenntnisgewinn lässt sich aus solchen vergleichenden empirischen Befunden für die Entgrenzungsdebatte erzielen?\",\"In the German sociology of work and industrial relations there is an ongoing discussion on the de-limitation of work. In this debate, it is assumed that the de-standardisation and growing flexibilisation of work may result in a dissolution of the boundaries between work and private live, whereas a separation of both spheres was characteristic for an ideal-type standard working contract during the fordist period. Up to now, there has not been much empirical research which takes a closer look to the postulated changes. To get a broader perspective on the changes of work in different occupational fields, the paper compares results from a study on mobile care services with the findings of a research project on freelancers in the New Media and the cultural industries. The authors ask whether the assumed de-limitation of work really is a general trend. Are there possibly countervailing tendencies in some fields? Do workers just cope with the changes of work, or do they develop own, active strategies to re-define the boundaries of work and to find a new work-life balance? How are opportunities and risks spread among different groups of workers? What can be learned from such a comparative perspective for the debate on a de-limitation of work?\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Henninger, Annette\",\"Papouschek, Ulrike\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/27122/1/512531188.PDF\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.ssoar.info/ssoar/handle/document/10927\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ssoar.info/ssoar/handle/document/10927\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Social Science Open Access Repository\",\"url\":\"http://www.ssoar.info/ssoar/handle/document/10927\",\"id\":\"oai:gesis.izsoz.de:10927\"},\"trust\":0.44770408}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:zbw:zeswps:052005"},"target_publication_author_list":{"type":"LIST_STRING","value":["Henninger, Annette","Papouschek, Ulrike"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:gesis.izsoz.de:10927"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7810ccd41bf26faaa2c4e1f20db70a71"},"trust":{"type":"FLOAT","value":0.44770408},"target_publication_title":{"type":"STRING","value":"Entgrenzung als allgemeinerer Trend? Mobile Pflege und Arbeit in der Medien- und Kulturindustrie im Vergleich"},"provenance_datasource_name":{"type":"STRING","value":"Social Science Open Access Repository"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:zbw:zeswps:052005\",\"titles\":[\"Entgrenzung als allgemeinerer Trend? Mobile Pflege und Arbeit in der Medien- und Kulturindustrie im Vergleich\"],\"abstracts\":[\"In der deutschsprachigen Arbeits- und Industriesoziologie wird derzeit eine intensive Debatte über die Entgrenzung von Erwerbsarbeit geführt. Hiermit ist gemeint, dass sich die industriegesellschaftlich etablierten Grenzen von Erwerbsarbeit verflüssigen oder auflösen. Bislang gibt es kaum empirische Arbeiten, in denen die prognostizierten Veränderungen in konkreten Tätigkeitsfeldern vergleichend untersucht werden. Das vorliegende Arbeitspapier kontrastiert Befunde aus einer Studie über mobile Pflegedienste mit Ergebnissen einer Untersuchung über Freelancer in der Medien- und Kulturindustrie. Dabei wird der Frage nachgegangen, ob die These einer generellen Entgrenzung von Arbeit tatsächlich haltbar ist. Lassen sich in bestimmten Bereichen möglicherweise Gegentendenzen beobachten? Passen sich die Beschäftigten lediglich den veränderten Anforderungen an oder entwickeln sie eigene, aktive Strategien zur Begrenzung von Erwerbsarbeit und zur Neugestaltung des Verhältnisses von Erwerbsarbeit und Privatleben? Wie verteilen sich Chancen und Risiken für eine aktive Grenzziehung zwischen unterschiedlichen Beschäftigtengruppen? Und schließlich: Welcher Erkenntnisgewinn lässt sich aus solchen vergleichenden empirischen Befunden für die Entgrenzungsdebatte erzielen?\",\"In the German sociology of work and industrial relations there is an ongoing discussion on the de-limitation of work. In this debate, it is assumed that the de-standardisation and growing flexibilisation of work may result in a dissolution of the boundaries between work and private live, whereas a separation of both spheres was characteristic for an ideal-type standard working contract during the fordist period. Up to now, there has not been much empirical research which takes a closer look to the postulated changes. To get a broader perspective on the changes of work in different occupational fields, the paper compares results from a study on mobile care services with the findings of a research project on freelancers in the New Media and the cultural industries. The authors ask whether the assumed de-limitation of work really is a general trend. Are there possibly countervailing tendencies in some fields? Do workers just cope with the changes of work, or do they develop own, active strategies to re-define the boundaries of work and to find a new work-life balance? How are opportunities and risks spread among different groups of workers? What can be learned from such a comparative perspective for the debate on a de-limitation of work?\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Henninger, Annette\",\"Papouschek, Ulrike\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/27122/1/512531188.PDF\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/27122\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/27122\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/27122\",\"id\":\"oai:econstor.eu:10419/27122\"},\"trust\":0.4600976}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:zbw:zeswps:052005"},"target_publication_author_list":{"type":"LIST_STRING","value":["Henninger, Annette","Papouschek, Ulrike"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/27122"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"trust":{"type":"FLOAT","value":0.4600976},"target_publication_title":{"type":"STRING","value":"Entgrenzung als allgemeinerer Trend? Mobile Pflege und Arbeit in der Medien- und Kulturindustrie im Vergleich"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.ubn.ru.nl:2066/26542\",\"titles\":[\"Waarnemingen in Westerheem VII\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Bogaers, Julianus Egidius Alphonsus Theresia\"],\"publicationdate\":\"1988-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Radboud Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2066/26542\",\"license\":\"OPEN\",\"hostedby\":\"Radboud Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://repository.ubn.ru.nl/handle/2066/26542\",\"license\":\"OPEN\",\"hostedby\":\"Radboud Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.ubn.ru.nl/handle/2066/26542\",\"license\":\"OPEN\",\"hostedby\":\"Radboud Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.ubn.ru.nl/handle/2066/26542\",\"id\":\"ru:oai:repository.ubn.ru.nl:2066/26542\"},\"trust\":0.5351074}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Radboud Repository"},"target_publication_id":{"type":"STRING","value":"oai:repository.ubn.ru.nl:2066/26542"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bogaers, Julianus Egidius Alphonsus Theresia"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["ru:oai:repository.ubn.ru.nl:2066/26542"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.5351074},"target_publication_title":{"type":"STRING","value":"Waarnemingen in Westerheem VII"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1988-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7bccfde7714a1ebadf06c5f4cea752c1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.ub.uit.no:10037/717\",\"titles\":[\"Smitteoppsporing og andre tiltak for å få ned prevalensen av Klamydia\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"VDP::Medisinske fag: 700::Klinisk medisinske fag: 750::Dermatologi og venerologi: 753\",\"VDP::Medisinske fag: 700::Helsefag: 800::Helsetjeneste- og helseadministrasjonsforskning: 806\"],\"creators\":[\"Bjerkås, Rita\",\"Hausberg, Ingvild\"],\"publicationdate\":\"2004-09-15\",\"publisher\":\"University of Tromsø\",\"embargoenddate\":\"\",\"contributor\":[\"Sundsfjord, Arnfinn\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munin - Open Research Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10037/717\",\"license\":\"OPEN\",\"hostedby\":\"Munin - Open Research Archive\",\"instancetype\":\"Master thesis\"},{\"url\":\"http://hdl.handle.net/10037/717\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10037/717\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Norwegian Open Research Archives\",\"url\":\"http://hdl.handle.net/10037/717\",\"id\":\"\"},\"trust\":0.8102426}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munin - Open Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:www.ub.uit.no:10037/717"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bjerkås, Rita","Hausberg, Ingvild"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["VDP::Medisinske fag: 700::Klinisk medisinske fag: 750::Dermatologi og venerologi: 753","VDP::Medisinske fag: 700::Helsefag: 800::Helsetjeneste- og helseadministrasjonsforskning: 806"]},"trust":{"type":"FLOAT","value":0.8102426},"target_publication_title":{"type":"STRING","value":"Smitteoppsporing og andre tiltak for å få ned prevalensen av Klamydia"},"provenance_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_dateofacceptance":{"type":"DATE","value":"2004-09-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::f47d0ad31c4c49061b9e505593e3db98"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"\",\"titles\":[\"Smitteoppsporing og andre tiltak for å få ned prevalensen av Klamydia\"],\"abstracts\":[],\"language\":\"nor\",\"subjects\":[\"Medical disciplines:Health sciences:Health service and health administration research:\",\"Medisinske fag:Helsefag:Helsetjeneste- og helseadministrasjonsforskning:\",\"Medical disciplines:Clinical medical disciplines:Dermatology and venereology:\",\"Medisinske fag:Klinisk medisinske fag:Dermatologi og venerologi:\"],\"creators\":[\"Bjerkås, Rita\",\"Hausberg, Ingvild\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"University of Tromsø\",\"embargoenddate\":\"\",\"contributor\":[\"Sundsfjord, Arnfinn\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Norwegian Open Research Archives\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10037/717\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hdl.handle.net/10037/717\",\"license\":\"OPEN\",\"hostedby\":\"Munin - Open Research Archive\",\"instancetype\":\"Master thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10037/717\",\"license\":\"OPEN\",\"hostedby\":\"Munin - Open Research Archive\",\"instancetype\":\"Master thesis\"}]},\"provenance\":{\"repositoryName\":\"Munin - Open Research Archive\",\"url\":\"http://hdl.handle.net/10037/717\",\"id\":\"oai:www.ub.uit.no:10037/717\"},\"trust\":0.38454115}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_publication_id":{"type":"STRING","value":""},"target_publication_author_list":{"type":"LIST_STRING","value":["Bjerkås, Rita","Hausberg, Ingvild"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.ub.uit.no:10037/717"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::f47d0ad31c4c49061b9e505593e3db98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Medical disciplines:Health sciences:Health service and health administration research:","Medisinske fag:Helsefag:Helsetjeneste- og helseadministrasjonsforskning:","Medical disciplines:Clinical medical disciplines:Dermatology and venereology:","Medisinske fag:Klinisk medisinske fag:Dermatologi og venerologi:"]},"trust":{"type":"FLOAT","value":0.38454115},"target_publication_title":{"type":"STRING","value":"Smitteoppsporing og andre tiltak for å få ned prevalensen av Klamydia"},"provenance_datasource_name":{"type":"STRING","value":"Munin - Open Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2590793\",\"titles\":[\"An Island of Stability: Art Images and Natural Scenes – but Not Natural Faces – Show Consistent Esthetic Response in Alzheimer’s-Related Dementia\"],\"abstracts\":[\"Alzheimer’s disease (AD) causes severe impairments in cognitive function but there is evidence that aspects of esthetic perception are somewhat spared, at least in early stages of the disease. People with early Alzheimer’s-related dementia have been found to show similar degrees of stability over time in esthetic judgment of paintings compared to controls, despite poor explicit memory for the images. Here we expand on this line of inquiry to investigate the types of perceptual judgments involved, and to test whether people in later stages of the disease also show evidence of preserved esthetic judgment. Our results confirm that, compared to healthy controls, there is similar esthetic stability in early stage AD in the absence of explicit memory, and we report here that people with later stages of the disease also show similar stability compared to controls. However, while we find that stability for portrait paintings, landscape paintings, and landscape photographs is not different compared to control group performance, stability for face photographs – which were matched for identity with the portrait paintings – was significantly impaired in the AD group. We suggest that partially spared face-processing systems interfere with esthetic processing of natural faces in ways that are not found for artistic images and landscape photographs. Thus, our work provides a novel form of evidence regarding face-processing in healthy and diseased aging. Our work also gives insights into general theories of esthetics, since people with AD are not encumbered by many of the semantic and emotional factors that otherwise color esthetic judgment. We conclude that, for people with AD, basic esthetic judgment of artistic images represents an “island of stability” in a condition that in most other respects causes profound cognitive disruption. As such, esthetic response could be a promising route to future therapies.\"],\"language\":\"eng\",\"subjects\":[\"Psychology\",\"Original Research\",\"Alzheimer’s disease\",\"dementia\",\"face perception\",\"esthetics\",\"natural scenes\",\"esthetic stability\",\"art perception\",\"memory\"],\"creators\":[\"Graham, Daniel J.\",\"Stockinger, Simone\",\"Leder, Helmut\"],\"publicationdate\":\"2013-03-01\",\"publisher\":\"Frontiers Media S.A.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Frontiers in Psychology\",\"issn\":\"\",\"eissn\":\"1664-1078\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3389/fpsyg.2013.00107\",\"type\":\"doi\"},{\"value\":\"PMC3590566\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3590566\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.3389/fpsyg.2013.00107\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Psychology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.3389/fpsyg.2013.00107\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Psychology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Frontiers\",\"url\":\"http://dx.doi.org/10.3389/fpsyg.2013.00107\",\"id\":\"10.3389/fpsyg.2013.00107\"},\"trust\":0.8306303}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2590793"},"target_publication_author_list":{"type":"LIST_STRING","value":["Graham, Daniel J.","Stockinger, Simone","Leder, Helmut"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.3389/fpsyg.2013.00107"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::3db634fc5446f389d0b826ea400a5da6"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Psychology","Original Research","Alzheimer’s disease","dementia","face perception","esthetics","natural scenes","esthetic stability","art perception","memory"]},"trust":{"type":"FLOAT","value":0.8306303},"target_publication_title":{"type":"STRING","value":"An Island of Stability: Art Images and Natural Scenes – but Not Natural Faces – Show Consistent Esthetic Response in Alzheimer’s-Related Dementia"},"provenance_datasource_name":{"type":"STRING","value":"Frontiers"},"target_dateofacceptance":{"type":"DATE","value":"2013-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:bibliotecadigital.ipb.pt:10198/4172\",\"titles\":[\"TINA: um projecto para netos e avós\"],\"abstracts\":[\"Tecnologias de Informação para Netos e Avós, comummente designado TINA, é um projecto que tem como principal objectivo promover a coesão familiar entre netos e avós através das Tecnologias de Informação e Comunicação, nomeadamente a Internet. Neste artigo apresenta-se uma experiência piloto que envolveu quatro grupos de netos e avós do distrito de Bragança no ano de 2010, os quais adquiriram competências básicas em TIC e participaram em workshops de utilização de ferramentas Web de comunicação/interacção entre avós e netos. O projecto culminou com a realização de um concurso baseado em Webquests antes do dia dos avós.\"],\"language\":\"por\",\"subjects\":[\"Aprendizagem ao longo da vida\",\"Aprendizagem intergeracional\",\"Internet\",\"Tecnologias de Informação e Comunicação\"],\"creators\":[\"Gonçalves, Vitor\",\"Patrício, Maria Raquel\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"Universidade de Lisboa, Instituto de Educação\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital do IPB\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10198/4172\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital do IPB\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10198/7437\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital do IPB\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10198/7437\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital do IPB\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital do IPB\",\"url\":\"http://hdl.handle.net/10198/7437\",\"id\":\"oai:bibliotecadigital.ipb.pt:10198/7437\"},\"trust\":0.15337056}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital do IPB"},"target_publication_id":{"type":"STRING","value":"oai:bibliotecadigital.ipb.pt:10198/4172"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gonçalves, Vitor","Patrício, Maria Raquel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:bibliotecadigital.ipb.pt:10198/7437"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::3bf55bbad370a8fcad1d09b005e278c2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Aprendizagem ao longo da vida","Aprendizagem intergeracional","Internet","Tecnologias de Informação e Comunicação"]},"trust":{"type":"FLOAT","value":0.15337056},"target_publication_title":{"type":"STRING","value":"TINA: um projecto para netos e avós"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital do IPB"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::3bf55bbad370a8fcad1d09b005e278c2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:bibliotecadigital.ipb.pt:10198/7437\",\"titles\":[\"TINA: um projecto para netos e avós\"],\"abstracts\":[\"Tecnologias de Informação para Netos e Avós, comummente designado TINA, é um projecto que tem como principal objectivo promover a coesão familiar entre netos e avós através das Tecnologias de Informação e Comunicação, nomeadamente a Internet. Neste artigo apresenta-se uma experiência piloto que envolveu quatro grupos de netos e avós do distrito de Bragança no ano de 2010, os quais adquiriram competências básicas em TIC e participaram em workshops de utilização de ferramentas Web de comunicação/interacção entre avós e netos. O projecto culminou com a realização de um concurso baseado em Webquests antes do dia dos avós.\"],\"language\":\"por\",\"subjects\":[\"TIC\",\"Formação intergeracional\",\"Envelhecimento activo\",\"Aprendizagem ao longo da vida\"],\"creators\":[\"Gonçalves, Vitor\",\"Patrício, Maria Raquel\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"Universidade de Lisboa, Instituto de Educação\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital do IPB\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10198/7437\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital do IPB\",\"instancetype\":\"Conference object\"},{\"url\":\"http://hdl.handle.net/10198/4172\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital do IPB\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10198/4172\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital do IPB\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital do IPB\",\"url\":\"http://hdl.handle.net/10198/4172\",\"id\":\"oai:bibliotecadigital.ipb.pt:10198/4172\"},\"trust\":0.9738288}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital do IPB"},"target_publication_id":{"type":"STRING","value":"oai:bibliotecadigital.ipb.pt:10198/7437"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gonçalves, Vitor","Patrício, Maria Raquel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:bibliotecadigital.ipb.pt:10198/4172"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::3bf55bbad370a8fcad1d09b005e278c2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["TIC","Formação intergeracional","Envelhecimento activo","Aprendizagem ao longo da vida"]},"trust":{"type":"FLOAT","value":0.9738288},"target_publication_title":{"type":"STRING","value":"TINA: um projecto para netos e avós"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital do IPB"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::3bf55bbad370a8fcad1d09b005e278c2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:7e83c5c4-ce80-41b3-af9d-32d434e7e940\",\"titles\":[\"Relating brain damage to brain plasticity in patients with multiple sclerosis.\"],\"abstracts\":[\"BACKGROUND: Failure of adaptive plasticity with increasing pathology is suggested to contribute to progression of disability in multiple sclerosis (MS). However, functional impairments can be reduced with practice, suggesting that brain plasticity is preserved even in patients with substantial damage. OBJECTIVE: . Here, functional magnetic resonance imaging (fMRI) was used to probe systems-level mechanisms of brain plasticity associated with improvements in visuomotor performance in MS patients and related to measures of microstructural damage. METHODS: 23 MS patients and 12 healthy controls underwent brain fMRI during the first practice session of a visuomotor task (short-term practice) and after 2 weeks of daily practice with the same task (longer-term practice). Participants also underwent a structural brain MRI scan. RESULTS: Patients performed more poorly than controls at baseline. Nonetheless, with practice, patients showed performance improvements similar to controls and independent of the extent of MRI measures of brain pathology. Different relationships between performance improvements and activations were found between groups: greater short-term improvements were associated with lower activation in the sensorimotor, posterior cingulate, and parahippocampal cortices for patients, whereas greater long-term improvements correlated with smaller activation reductions in the visual cortex of controls. CONCLUSIONS: Brain plasticity for visuomotor practice is preserved in MS patients despite a high burden of cerebral pathology. Cognitive systems different from those acting in controls contribute to this plasticity in patients. These findings challenge the notion that increasing pathology is accompanied by an outright failure of adaptive plasticity, supporting a neuroscientific rationale for recovery-oriented strategies even in chronically disabled patients.\"],\"language\":\"eng\",\"subjects\":[\"Humans\",\"Brain\",\"Multiple Sclerosis\",\"Oxygen\",\"Magnetic Resonance Imaging\",\"Brain Mapping\",\"Psychomotor Performance\",\"Photic Stimulation\",\"Neuronal Plasticity\",\"Neuropsychological Tests\",\"Image Processing, Computer-Assisted\",\"Adult\",\"Statistics as Topic\",\"Functional Laterality\",\"Middle Aged\",\"Motor Skills\",\"Practice (Psychology)\",\"Anisotropy\",\"Disability Evaluation\",\"Female\",\"Male\"],\"creators\":[\"Tomassini, V.\",\"Johansen-Berg, H.\",\"Jbabdi, S.\",\"Wise, Rg\",\"Pozzilli, C.\",\"Palace, J.\",\"Matthews, Pm\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1177/1545968311433208\",\"type\":\"doi\"},{\"value\":\"PMC3674542\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:7e83c5c4-ce80-41b3-af9d-32d434e7e940\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3674542\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3674542\",\"id\":\"oai:europepmc.org:2672711\"},\"trust\":0.4654736}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:7e83c5c4-ce80-41b3-af9d-32d434e7e940"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tomassini, V.","Johansen-Berg, H.","Jbabdi, S.","Wise, Rg","Pozzilli, C.","Palace, J.","Matthews, Pm"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2672711"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Humans","Brain","Multiple Sclerosis","Oxygen","Magnetic Resonance Imaging","Brain Mapping","Psychomotor Performance","Photic Stimulation","Neuronal Plasticity","Neuropsychological Tests","Image Processing, Computer-Assisted","Adult","Statistics as Topic","Functional Laterality","Middle Aged","Motor Skills","Practice (Psychology)","Anisotropy","Disability Evaluation","Female","Male"]},"trust":{"type":"FLOAT","value":0.4654736},"target_publication_title":{"type":"STRING","value":"Relating brain damage to brain plasticity in patients with multiple sclerosis."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2672711\",\"titles\":[\"Relating Brain Damage to Brain Plasticity in Patients With Multiple Sclerosis\"],\"abstracts\":[\"\"],\"language\":\"eng\",\"subjects\":[\"Article\"],\"creators\":[\"Tomassini, Valentina\",\"Johansen-Berg, Heidi\",\"Jbabdi, Saad\",\"Wise, Richard G.\",\"Pozzilli, Carlo\",\"Palace, Jacqueline\",\"Matthews, Paul M.\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC3674542\",\"type\":\"pmc\"},{\"value\":\"10.1177/1545968311433208\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3674542\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1177/1545968311433208\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:7e83c5c4-ce80-41b3-af9d-32d434e7e940\",\"id\":\"oai:ora.ox.ac.uk:uuid:7e83c5c4-ce80-41b3-af9d-32d434e7e940\"},\"trust\":0.59550047}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2672711"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tomassini, Valentina","Johansen-Berg, Heidi","Jbabdi, Saad","Wise, Richard G.","Pozzilli, Carlo","Palace, Jacqueline","Matthews, Paul M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:7e83c5c4-ce80-41b3-af9d-32d434e7e940"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article"]},"trust":{"type":"FLOAT","value":0.59550047},"target_publication_title":{"type":"STRING","value":"Relating Brain Damage to Brain Plasticity in Patients With Multiple Sclerosis"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2672711\",\"titles\":[\"Relating Brain Damage to Brain Plasticity in Patients With Multiple Sclerosis\"],\"abstracts\":[\"\",\"BACKGROUND: Failure of adaptive plasticity with increasing pathology is suggested to contribute to progression of disability in multiple sclerosis (MS). However, functional impairments can be reduced with practice, suggesting that brain plasticity is preserved even in patients with substantial damage. OBJECTIVE: . Here, functional magnetic resonance imaging (fMRI) was used to probe systems-level mechanisms of brain plasticity associated with improvements in visuomotor performance in MS patients and related to measures of microstructural damage. METHODS: 23 MS patients and 12 healthy controls underwent brain fMRI during the first practice session of a visuomotor task (short-term practice) and after 2 weeks of daily practice with the same task (longer-term practice). Participants also underwent a structural brain MRI scan. RESULTS: Patients performed more poorly than controls at baseline. Nonetheless, with practice, patients showed performance improvements similar to controls and independent of the extent of MRI measures of brain pathology. Different relationships between performance improvements and activations were found between groups: greater short-term improvements were associated with lower activation in the sensorimotor, posterior cingulate, and parahippocampal cortices for patients, whereas greater long-term improvements correlated with smaller activation reductions in the visual cortex of controls. CONCLUSIONS: Brain plasticity for visuomotor practice is preserved in MS patients despite a high burden of cerebral pathology. Cognitive systems different from those acting in controls contribute to this plasticity in patients. These findings challenge the notion that increasing pathology is accompanied by an outright failure of adaptive plasticity, supporting a neuroscientific rationale for recovery-oriented strategies even in chronically disabled patients.\"],\"language\":\"eng\",\"subjects\":[\"Article\"],\"creators\":[\"Tomassini, Valentina\",\"Johansen-Berg, Heidi\",\"Jbabdi, Saad\",\"Wise, Richard G.\",\"Pozzilli, Carlo\",\"Palace, Jacqueline\",\"Matthews, Paul M.\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC3674542\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3674542\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"BACKGROUND: Failure of adaptive plasticity with increasing pathology is suggested to contribute to progression of disability in multiple sclerosis (MS). However, functional impairments can be reduced with practice, suggesting that brain plasticity is preserved even in patients with substantial damage. OBJECTIVE: . Here, functional magnetic resonance imaging (fMRI) was used to probe systems-level mechanisms of brain plasticity associated with improvements in visuomotor performance in MS patients and related to measures of microstructural damage. METHODS: 23 MS patients and 12 healthy controls underwent brain fMRI during the first practice session of a visuomotor task (short-term practice) and after 2 weeks of daily practice with the same task (longer-term practice). Participants also underwent a structural brain MRI scan. RESULTS: Patients performed more poorly than controls at baseline. Nonetheless, with practice, patients showed performance improvements similar to controls and independent of the extent of MRI measures of brain pathology. Different relationships between performance improvements and activations were found between groups: greater short-term improvements were associated with lower activation in the sensorimotor, posterior cingulate, and parahippocampal cortices for patients, whereas greater long-term improvements correlated with smaller activation reductions in the visual cortex of controls. CONCLUSIONS: Brain plasticity for visuomotor practice is preserved in MS patients despite a high burden of cerebral pathology. Cognitive systems different from those acting in controls contribute to this plasticity in patients. These findings challenge the notion that increasing pathology is accompanied by an outright failure of adaptive plasticity, supporting a neuroscientific rationale for recovery-oriented strategies even in chronically disabled patients.\"]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:7e83c5c4-ce80-41b3-af9d-32d434e7e940\",\"id\":\"oai:ora.ox.ac.uk:uuid:7e83c5c4-ce80-41b3-af9d-32d434e7e940\"},\"trust\":0.8577641}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2672711"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tomassini, Valentina","Johansen-Berg, Heidi","Jbabdi, Saad","Wise, Richard G.","Pozzilli, Carlo","Palace, Jacqueline","Matthews, Paul M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:7e83c5c4-ce80-41b3-af9d-32d434e7e940"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article"]},"trust":{"type":"FLOAT","value":0.8577641},"target_publication_title":{"type":"STRING","value":"Relating Brain Damage to Brain Plasticity in Patients With Multiple Sclerosis"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:naturalis:317557\",\"titles\":[\"Sea turtles nesting in Surinam\"],\"abstracts\":[\"PREFACE\\nThe first manuscript for this book originated in 1970 in the form of a revised translation of \\u0027Zeeschildpadden in Suriname,, a mimeographed report written primarily for internal use. This English version was of the same hybrid nature as the Dutch booklet, which was meant to be a comprehensive general guide for visitors to the nesting beaches, as well as a publication of the results of local research. The present English version, which has grown to three times the size of the original, maintains this hybrid nature.\\nConsequently this book contains sections on general taxonomy and on the biology of sea turtles, subjects which have been treated elsewhere in a superior way by more competent authors. This general information, which is included to make the book readable for the general naturalist interested in our sea turtles, alternates with comprehensive local data — for the attention of turtle specialists abroad — which are far too detailed to captivate the attention of the general reader. In spite of this disadvantage I decided to have the manuscript published in this form, one reason being the fear that otherwise it would never be published.\\nThe other reason which prevented the presentation of it in a more pure form lies in the ontogeny of the manuscript. The correction of the translation was not finished before the end of the 1971 turtle season, when so much information became available that the text had to undergo a thorough revision. This was not completed before the main force of the next season\\u0027s turtles was making its landfall on our coast, again adding substantially to our knowledge. Shifting of the beaches caused the maps and descriptions of the beaches to become obsolete. This repetitious story, which reflects itself\"],\"language\":\"und\",\"subjects\":[\"42.82\"],\"creators\":[\"Schulz, J. P.\"],\"publicationdate\":\"1975-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Naturalis Publications\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.repository.naturalis.nl/record/317557\",\"license\":\"OPEN\",\"hostedby\":\"Naturalis Publications\",\"instancetype\":\"Article\"},{\"url\":\"http://www.repository.naturalis.nl/record/317557\",\"license\":\"OPEN\",\"hostedby\":\"\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.repository.naturalis.nl/record/317557\",\"license\":\"OPEN\",\"hostedby\":\"\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://www.repository.naturalis.nl/record/317557\",\"id\":\"naturalis:oai:naturalis.nl:317557\"},\"trust\":0.88753927}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Naturalis Publications"},"target_publication_id":{"type":"STRING","value":"oai:naturalis:317557"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schulz, J. P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["naturalis:oai:naturalis.nl:317557"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["42.82"]},"trust":{"type":"FLOAT","value":0.88753927},"target_publication_title":{"type":"STRING","value":"Sea turtles nesting in Surinam"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1975-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5040a8a5baf3e0e67386c2e3a9b903"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.tue.nl:439767\",\"titles\":[\"McKean-Vlasov limit for interacting random processes in random media\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Dai Pra, P.\",\"Hollander, Wthf Den\"],\"publicationdate\":\"1995-01-01\",\"publisher\":\"University of Nijmegen\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repository TU/e\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.tue.nl/439767\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"External research report\"},{\"url\":\"http://repository.tue.nl/439767\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.tue.nl/439767\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.tue.nl/439767\",\"id\":\"tue:oai:library.tue.nl:439767\"},\"trust\":0.55570376}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repository TU/e"},"target_publication_id":{"type":"STRING","value":"oai:library.tue.nl:439767"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dai Pra, P.","Hollander, Wthf Den"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tue:oai:library.tue.nl:439767"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.55570376},"target_publication_title":{"type":"STRING","value":"McKean-Vlasov limit for interacting random processes in random media"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1995-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::99c5e07b4d5de9d18c350cdf64c5aa3d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:0907.3410\",\"titles\":[\"Occupational Health Problem Network : the Exposome\"],\"abstracts\":[\" We present a thinking on the concept of relational networks applied to the\\nfrench national occupational disease surveillance and prevention network\\n(R\\\\\\u0027eseau National de Vigilance et de Pr\\\\\\u0027evention des Pathologies\\nProfessionnelles, RNV3P). This approach consists in searching common exposures\\nto occupational health problems.\\n\"],\"language\":\"eng\",\"subjects\":[\"Statistics - Methodology\"],\"creators\":[\"Faisandier, Laurie\",\"Gaudemaris, Régis\",\"Bicout, Dominique J.\"],\"publicationdate\":\"2009-07-20\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/0907.3410\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00405638\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00405638\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00405638\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00405638\"},\"trust\":0.7475445}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:0907.3410"},"target_publication_author_list":{"type":"LIST_STRING","value":["Faisandier, Laurie","Gaudemaris, Régis","Bicout, Dominique J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00405638"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Statistics - Methodology"]},"trust":{"type":"FLOAT","value":0.7475445},"target_publication_title":{"type":"STRING","value":"Occupational Health Problem Network : the Exposome"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2009-07-20"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:0907.3410\",\"titles\":[\"Occupational Health Problem Network : the Exposome\"],\"abstracts\":[\" We present a thinking on the concept of relational networks applied to the\\nfrench national occupational disease surveillance and prevention network\\n(R\\\\\\u0027eseau National de Vigilance et de Pr\\\\\\u0027evention des Pathologies\\nProfessionnelles, RNV3P). This approach consists in searching common exposures\\nto occupational health problems.\\n\"],\"language\":\"eng\",\"subjects\":[\"Statistics - Methodology\"],\"creators\":[\"Faisandier, Laurie\",\"Gaudemaris, Régis\",\"Bicout, Dominique J.\"],\"publicationdate\":\"2009-07-20\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/0907.3410\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00405638\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00405638\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00405638\",\"id\":\"oai:HAL:hal-00405638v1\"},\"trust\":0.8714426}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:0907.3410"},"target_publication_author_list":{"type":"LIST_STRING","value":["Faisandier, Laurie","Gaudemaris, Régis","Bicout, Dominique J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00405638v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Statistics - Methodology"]},"trust":{"type":"FLOAT","value":0.8714426},"target_publication_title":{"type":"STRING","value":"Occupational Health Problem Network : the Exposome"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2009-07-20"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00405638\",\"titles\":[\"Occupational Health Problem Network : the Exposome\"],\"abstracts\":[\"We present a thinking on the concept of relational networks applied to the french national occupational disease surveillance and prevention network (Réseau National de Vigilance et de Prévention des Pathologies Professionnelles, RNV3P). This approach consists in searching common exposures to occupational health problems.\"],\"language\":\"eng\",\"subjects\":[\"[STAT:ME] Statistics/Methodology\",\"[STAT:ME] Statistiques/Méthodologie\",\"occupational disease\",\"network\",\"exposome\"],\"creators\":[\"Faisandier, Laurie\",\"Gaudemaris, Régis\",\"Bicout, Dominique J.\"],\"publicationdate\":\"2008-05-20\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00405638\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"},{\"url\":\"http://arxiv.org/abs/0907.3410\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/0907.3410\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0907.3410\",\"id\":\"oai:arXiv.org:0907.3410\"},\"trust\":0.95390886}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00405638"},"target_publication_author_list":{"type":"LIST_STRING","value":["Faisandier, Laurie","Gaudemaris, Régis","Bicout, Dominique J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0907.3410"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[STAT:ME] Statistics/Methodology","[STAT:ME] Statistiques/Méthodologie","occupational disease","network","exposome"]},"trust":{"type":"FLOAT","value":0.95390886},"target_publication_title":{"type":"STRING","value":"Occupational Health Problem Network : the Exposome"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2008-05-20"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00405638\",\"titles\":[\"Occupational Health Problem Network : the Exposome\"],\"abstracts\":[\"We present a thinking on the concept of relational networks applied to the french national occupational disease surveillance and prevention network (Réseau National de Vigilance et de Prévention des Pathologies Professionnelles, RNV3P). This approach consists in searching common exposures to occupational health problems.\"],\"language\":\"eng\",\"subjects\":[\"[STAT:ME] Statistics/Methodology\",\"[STAT:ME] Statistiques/Méthodologie\",\"occupational disease\",\"network\",\"exposome\"],\"creators\":[\"Faisandier, Laurie\",\"Gaudemaris, Régis\",\"Bicout, Dominique J.\"],\"publicationdate\":\"2008-05-20\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00405638\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00405638\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00405638\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00405638\",\"id\":\"oai:HAL:hal-00405638v1\"},\"trust\":0.32991946}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00405638"},"target_publication_author_list":{"type":"LIST_STRING","value":["Faisandier, Laurie","Gaudemaris, Régis","Bicout, Dominique J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00405638v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[STAT:ME] Statistics/Methodology","[STAT:ME] Statistiques/Méthodologie","occupational disease","network","exposome"]},"trust":{"type":"FLOAT","value":0.32991946},"target_publication_title":{"type":"STRING","value":"Occupational Health Problem Network : the Exposome"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-05-20"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00405638v1\",\"titles\":[\"Occupational Health Problem Network : the Exposome\"],\"abstracts\":[\"We present a thinking on the concept of relational networks applied to the french national occupational disease surveillance and prevention network (Réseau National de Vigilance et de Prévention des Pathologies Professionnelles, RNV3P). This approach consists in searching common exposures to occupational health problems.\"],\"language\":\"eng\",\"subjects\":[\"occupational disease\",\"network\",\"exposome\",\"[STAT.ME] Statistics/Methodology\"],\"creators\":[\"Faisandier, Laurie\",\"Gaudemaris, Régis\",\"Bicout, Dominique J.\"],\"publicationdate\":\"2008-05-20\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Techniques de l\\u0027Ingénierie Médicale et de la Complexité - Informatique, Mathématiques et Applications, Grenoble (TIMC-IMAG) ; Université Joseph Fourier - Grenoble I - CNRS\",\"CHU Grenoble ; CHU Grenoble - Université Joseph Fourier - Grenoble I\",\"Environnement et Prévision de la Santé des Populations (EPSP) ; Ecole Nationale Vétérinaire de Lyon\",\"Financement AFSSET\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00405638\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/0907.3410\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/0907.3410\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0907.3410\",\"id\":\"oai:arXiv.org:0907.3410\"},\"trust\":0.119534254}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00405638v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Faisandier, Laurie","Gaudemaris, Régis","Bicout, Dominique J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0907.3410"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["occupational disease","network","exposome","[STAT.ME] Statistics/Methodology"]},"trust":{"type":"FLOAT","value":0.119534254},"target_publication_title":{"type":"STRING","value":"Occupational Health Problem Network : the Exposome"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2008-05-20"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00405638v1\",\"titles\":[\"Occupational Health Problem Network : the Exposome\"],\"abstracts\":[\"We present a thinking on the concept of relational networks applied to the french national occupational disease surveillance and prevention network (Réseau National de Vigilance et de Prévention des Pathologies Professionnelles, RNV3P). This approach consists in searching common exposures to occupational health problems.\"],\"language\":\"eng\",\"subjects\":[\"occupational disease\",\"network\",\"exposome\",\"[STAT.ME] Statistics/Methodology\"],\"creators\":[\"Faisandier, Laurie\",\"Gaudemaris, Régis\",\"Bicout, Dominique J.\"],\"publicationdate\":\"2008-05-20\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Techniques de l\\u0027Ingénierie Médicale et de la Complexité - Informatique, Mathématiques et Applications, Grenoble (TIMC-IMAG) ; Université Joseph Fourier - Grenoble I - CNRS\",\"CHU Grenoble ; CHU Grenoble - Université Joseph Fourier - Grenoble I\",\"Environnement et Prévision de la Santé des Populations (EPSP) ; Ecole Nationale Vétérinaire de Lyon\",\"Financement AFSSET\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00405638\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00405638\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00405638\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00405638\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00405638\"},\"trust\":0.56593806}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00405638v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Faisandier, Laurie","Gaudemaris, Régis","Bicout, Dominique J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00405638"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["occupational disease","network","exposome","[STAT.ME] Statistics/Methodology"]},"trust":{"type":"FLOAT","value":0.56593806},"target_publication_title":{"type":"STRING","value":"Occupational Health Problem Network : the Exposome"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-05-20"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cpr:ceprdp:9589\",\"titles\":[\"Time Varying Risk Aversion\"],\"abstracts\":[\"We use a repeated survey of an Italian bank’s clients to test whether investors’ risk aversion increases following the 2008 financial crisis. We find that both a qualitative and a quantitative measure of risk aversion increases substantially after the crisis. After considering standard explanations, we investigate whether this increase might be an emotional response (fear) triggered by a scary experience. To show the plausibility of this conjecture, we conduct a lab experiment. We find that subjects who watched a horror movie have a certainty equivalent that is 27% lower than the ones who did not, supporting the fear-based explanation. Finally, we test the fear-based model with actual trading behavior and find consistent evidence.\"],\"language\":\"und\",\"subjects\":[\"Fear; Financial Crisis; Risk Aversion\"],\"creators\":[\"Guiso, Luigi\",\"Sapienza, Paola\",\"Zingales, Luigi\"],\"publicationdate\":\"2013-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9589\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.eief.it/files/2013/09/wp-22-time-varying-risk-aversion.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.eief.it/files/2013/09/wp-22-time-varying-risk-aversion.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.eief.it/files/2013/09/wp-22-time-varying-risk-aversion.pdf\",\"id\":\"oai:RePEc:eie:wpaper:1322\"},\"trust\":0.33716136}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cpr:ceprdp:9589"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guiso, Luigi","Sapienza, Paola","Zingales, Luigi"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:eie:wpaper:1322"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Fear; Financial Crisis; Risk Aversion"]},"trust":{"type":"FLOAT","value":0.33716136},"target_publication_title":{"type":"STRING","value":"Time Varying Risk Aversion"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cpr:ceprdp:9589\",\"titles\":[\"Time Varying Risk Aversion\"],\"abstracts\":[\"We use a repeated survey of an Italian bank’s clients to test whether investors’ risk aversion increases following the 2008 financial crisis. We find that both a qualitative and a quantitative measure of risk aversion increases substantially after the crisis. After considering standard explanations, we investigate whether this increase might be an emotional response (fear) triggered by a scary experience. To show the plausibility of this conjecture, we conduct a lab experiment. We find that subjects who watched a horror movie have a certainty equivalent that is 27% lower than the ones who did not, supporting the fear-based explanation. Finally, we test the fear-based model with actual trading behavior and find consistent evidence.\"],\"language\":\"und\",\"subjects\":[\"Fear; Financial Crisis; Risk Aversion\"],\"creators\":[\"Guiso, Luigi\",\"Sapienza, Paola\",\"Zingales, Luigi\"],\"publicationdate\":\"2013-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9589\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.nber.org/papers/w19284.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.nber.org/papers/w19284.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.nber.org/papers/w19284.pdf\",\"id\":\"oai:RePEc:nbr:nberwo:19284\"},\"trust\":0.8811252}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cpr:ceprdp:9589"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guiso, Luigi","Sapienza, Paola","Zingales, Luigi"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:nbr:nberwo:19284"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Fear; Financial Crisis; Risk Aversion"]},"trust":{"type":"FLOAT","value":0.8811252},"target_publication_title":{"type":"STRING","value":"Time Varying Risk Aversion"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:eie:wpaper:1322\",\"titles\":[\"Time Varying Risk Aversion\"],\"abstracts\":[\"We use a repeated survey of a large sample of clients of an Italian bank to measure possible changes in investors’ risk aversion following the 2008 financial crisis. We find that both a qualitative and a quantitative measure of risk aversion increase substantially after the crisis. These changes are correlated with changes in portfolio choices, but do not seem to be correlated with “standard” factors that affect risk aversion, such as wealth, consumption habit, and background risk. This opens the possibility that psychological factors might be driving it. To test whether a scary experience (as the financial crisis) can trigger large increases in risk aversion, we conduct a lab experiment. We find that indeed students who watched a scary video have a certainty equivalent that is 27% lower than the ones who did not. Following a sharp drop in stock prices,a fear model predicts that individuals should sell stocks, while the habit model has the opposite implications; people should actively buy stocks to bring the risky assets to the new optimal level. We show that after the drop in stock prices in 2008 individuals rebalanced their portfolio in a way consistent to a fear model.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Luigi Guiso\",\"Paola Sapienza\",\"Luigi Zingales\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.eief.it/files/2013/09/wp-22-time-varying-risk-aversion.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9589\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9589\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9589\",\"id\":\"oai:RePEc:cpr:ceprdp:9589\"},\"trust\":0.9074348}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:eie:wpaper:1322"},"target_publication_author_list":{"type":"LIST_STRING","value":["Luigi Guiso","Paola Sapienza","Luigi Zingales"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cpr:ceprdp:9589"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.9074348},"target_publication_title":{"type":"STRING","value":"Time Varying Risk Aversion"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:eie:wpaper:1322\",\"titles\":[\"Time Varying Risk Aversion\"],\"abstracts\":[\"We use a repeated survey of a large sample of clients of an Italian bank to measure possible changes in investors’ risk aversion following the 2008 financial crisis. We find that both a qualitative and a quantitative measure of risk aversion increase substantially after the crisis. These changes are correlated with changes in portfolio choices, but do not seem to be correlated with “standard” factors that affect risk aversion, such as wealth, consumption habit, and background risk. This opens the possibility that psychological factors might be driving it. To test whether a scary experience (as the financial crisis) can trigger large increases in risk aversion, we conduct a lab experiment. We find that indeed students who watched a scary video have a certainty equivalent that is 27% lower than the ones who did not. Following a sharp drop in stock prices,a fear model predicts that individuals should sell stocks, while the habit model has the opposite implications; people should actively buy stocks to bring the risky assets to the new optimal level. We show that after the drop in stock prices in 2008 individuals rebalanced their portfolio in a way consistent to a fear model.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Luigi Guiso\",\"Paola Sapienza\",\"Luigi Zingales\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.eief.it/files/2013/09/wp-22-time-varying-risk-aversion.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.nber.org/papers/w19284.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.nber.org/papers/w19284.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.nber.org/papers/w19284.pdf\",\"id\":\"oai:RePEc:nbr:nberwo:19284\"},\"trust\":0.41379017}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:eie:wpaper:1322"},"target_publication_author_list":{"type":"LIST_STRING","value":["Luigi Guiso","Paola Sapienza","Luigi Zingales"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:nbr:nberwo:19284"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.41379017},"target_publication_title":{"type":"STRING","value":"Time Varying Risk Aversion"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberwo:19284\",\"titles\":[\"Time Varying Risk Aversion\"],\"abstracts\":[\"We use a repeated survey of an Italian bank\\u0027s clients to test whether investors\\u0027 risk aversion increases following the 2008 financial crisis. We find that both a qualitative and a quantitative measure of risk aversion increases substantially after the crisis. After considering standard explanations, we investigate whether this increase might be an emotional response (fear) triggered by a scary experience. To show the plausibility of this conjecture, we conduct a lab experiment. We find that subjects who watched a horror movie have a certainty equivalent that is 27% lower than the ones who did not, supporting the fear-based explanation. Finally, we test the fear-based model with actual trading behavior and find consistent evidence.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Luigi Guiso\",\"Paola Sapienza\",\"Luigi Zingales\"],\"publicationdate\":\"2013-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/papers/w19284.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9589\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9589\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9589\",\"id\":\"oai:RePEc:cpr:ceprdp:9589\"},\"trust\":0.32235992}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberwo:19284"},"target_publication_author_list":{"type":"LIST_STRING","value":["Luigi Guiso","Paola Sapienza","Luigi Zingales"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cpr:ceprdp:9589"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.32235992},"target_publication_title":{"type":"STRING","value":"Time Varying Risk Aversion"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberwo:19284\",\"titles\":[\"Time Varying Risk Aversion\"],\"abstracts\":[\"We use a repeated survey of an Italian bank\\u0027s clients to test whether investors\\u0027 risk aversion increases following the 2008 financial crisis. We find that both a qualitative and a quantitative measure of risk aversion increases substantially after the crisis. After considering standard explanations, we investigate whether this increase might be an emotional response (fear) triggered by a scary experience. To show the plausibility of this conjecture, we conduct a lab experiment. We find that subjects who watched a horror movie have a certainty equivalent that is 27% lower than the ones who did not, supporting the fear-based explanation. Finally, we test the fear-based model with actual trading behavior and find consistent evidence.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Luigi Guiso\",\"Paola Sapienza\",\"Luigi Zingales\"],\"publicationdate\":\"2013-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/papers/w19284.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.eief.it/files/2013/09/wp-22-time-varying-risk-aversion.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.eief.it/files/2013/09/wp-22-time-varying-risk-aversion.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.eief.it/files/2013/09/wp-22-time-varying-risk-aversion.pdf\",\"id\":\"oai:RePEc:eie:wpaper:1322\"},\"trust\":0.51249325}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberwo:19284"},"target_publication_author_list":{"type":"LIST_STRING","value":["Luigi Guiso","Paola Sapienza","Luigi Zingales"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:eie:wpaper:1322"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.51249325},"target_publication_title":{"type":"STRING","value":"Time Varying Risk Aversion"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00529977v2\",\"titles\":[\"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers\"],\"abstracts\":[\"International audience\",\"We present experimental results on a model system for studying wave propagation in a complex medium exhibiting low frequency resonances. These experiments enable us to investigate a fundamental question that is relevant for many materials, such as metamaterials, where low-frequency scattering resonances strongly influence the effective medium properties. This question concerns the effect of correlations in the positions of the scatterers on the coupling between their resonances, and hence on wave transport through the medium. To examine this question experimentally, we measure the effective medium wave number of acoustic waves in a sample made of bubbles embedded in an elastic matrix over a frequency range that includes the resonance frequency of the bubbles. The effective medium is highly dispersive, showing peaks in the attenuation and the phase velocity as functions of the frequency, which cannot be accurately described using the Independent Scattering Approximation (ISA). This discrepancy may be explained by the effects of the positional correlations of the scatterers, which we show to be dependent on the size of the scatterers. We propose a self-consistent approach for taking this \\u0027\\u0027polydisperse correlation\\u0027\\u0027 into account and show that our model better describes the experimental results than the ISA.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.PHYS.PHYS-CLASS-PH] Physics/Physics/Classical Physics\"],\"creators\":[\"Leroy, V.\",\"L Strybulevych, A.\",\"H Page, J.\",\"G Scanlon, M.\"],\"publicationdate\":\"2011-04-22\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Matière et Systèmes Complexes (MSC) ; Université Paris VII - Paris Diderot - CNRS\",\"Department of Physics and Astronomy ; University of Manitoba\",\"Department of Food Science ; University of Manitoba\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00529977\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00529977\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00529977\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00529977\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00529977\"},\"trust\":0.67935145}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00529977v2"},"target_publication_author_list":{"type":"LIST_STRING","value":["Leroy, V.","L Strybulevych, A.","H Page, J.","G Scanlon, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00529977"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.PHYS.PHYS-CLASS-PH] Physics/Physics/Classical Physics"]},"trust":{"type":"FLOAT","value":0.67935145},"target_publication_title":{"type":"STRING","value":"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-04-22"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00529977v2\",\"titles\":[\"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers\"],\"abstracts\":[\"International audience\",\"We present experimental results on a model system for studying wave propagation in a complex medium exhibiting low frequency resonances. These experiments enable us to investigate a fundamental question that is relevant for many materials, such as metamaterials, where low-frequency scattering resonances strongly influence the effective medium properties. This question concerns the effect of correlations in the positions of the scatterers on the coupling between their resonances, and hence on wave transport through the medium. To examine this question experimentally, we measure the effective medium wave number of acoustic waves in a sample made of bubbles embedded in an elastic matrix over a frequency range that includes the resonance frequency of the bubbles. The effective medium is highly dispersive, showing peaks in the attenuation and the phase velocity as functions of the frequency, which cannot be accurately described using the Independent Scattering Approximation (ISA). This discrepancy may be explained by the effects of the positional correlations of the scatterers, which we show to be dependent on the size of the scatterers. We propose a self-consistent approach for taking this \\u0027\\u0027polydisperse correlation\\u0027\\u0027 into account and show that our model better describes the experimental results than the ISA.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.PHYS.PHYS-CLASS-PH] Physics/Physics/Classical Physics\"],\"creators\":[\"Leroy, V.\",\"L Strybulevych, A.\",\"H Page, J.\",\"G Scanlon, M.\"],\"publicationdate\":\"2011-04-22\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Matière et Systèmes Complexes (MSC) ; Université Paris VII - Paris Diderot - CNRS\",\"Department of Physics and Astronomy ; University of Manitoba\",\"Department of Food Science ; University of Manitoba\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1103/PhysRevE.83.046605\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00529977\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1103/PhysRevE.83.046605\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1010.6243\",\"id\":\"oai:arXiv.org:1010.6243\"},\"trust\":0.341623}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00529977v2"},"target_publication_author_list":{"type":"LIST_STRING","value":["Leroy, V.","L Strybulevych, A.","H Page, J.","G Scanlon, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1010.6243"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.PHYS.PHYS-CLASS-PH] Physics/Physics/Classical Physics"]},"trust":{"type":"FLOAT","value":0.341623},"target_publication_title":{"type":"STRING","value":"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-04-22"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00529977v2\",\"titles\":[\"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers\"],\"abstracts\":[\"International audience\",\"We present experimental results on a model system for studying wave propagation in a complex medium exhibiting low frequency resonances. These experiments enable us to investigate a fundamental question that is relevant for many materials, such as metamaterials, where low-frequency scattering resonances strongly influence the effective medium properties. This question concerns the effect of correlations in the positions of the scatterers on the coupling between their resonances, and hence on wave transport through the medium. To examine this question experimentally, we measure the effective medium wave number of acoustic waves in a sample made of bubbles embedded in an elastic matrix over a frequency range that includes the resonance frequency of the bubbles. The effective medium is highly dispersive, showing peaks in the attenuation and the phase velocity as functions of the frequency, which cannot be accurately described using the Independent Scattering Approximation (ISA). This discrepancy may be explained by the effects of the positional correlations of the scatterers, which we show to be dependent on the size of the scatterers. We propose a self-consistent approach for taking this \\u0027\\u0027polydisperse correlation\\u0027\\u0027 into account and show that our model better describes the experimental results than the ISA.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.PHYS.PHYS-CLASS-PH] Physics/Physics/Classical Physics\"],\"creators\":[\"Leroy, V.\",\"L Strybulevych, A.\",\"H Page, J.\",\"G Scanlon, M.\"],\"publicationdate\":\"2011-04-22\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Matière et Systèmes Complexes (MSC) ; Université Paris VII - Paris Diderot - CNRS\",\"Department of Physics and Astronomy ; University of Manitoba\",\"Department of Food Science ; University of Manitoba\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1103/PhysRevE.83.046605\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00529977\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1103/PhysRevE.83.046605\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1010.6243\",\"id\":\"oai:arXiv.org:1010.6243\"},\"trust\":0.341623}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00529977v2"},"target_publication_author_list":{"type":"LIST_STRING","value":["Leroy, V.","L Strybulevych, A.","H Page, J.","G Scanlon, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1010.6243"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.PHYS.PHYS-CLASS-PH] Physics/Physics/Classical Physics"]},"trust":{"type":"FLOAT","value":0.341623},"target_publication_title":{"type":"STRING","value":"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-04-22"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00529977v2\",\"titles\":[\"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers\"],\"abstracts\":[\"International audience\",\"We present experimental results on a model system for studying wave propagation in a complex medium exhibiting low frequency resonances. These experiments enable us to investigate a fundamental question that is relevant for many materials, such as metamaterials, where low-frequency scattering resonances strongly influence the effective medium properties. This question concerns the effect of correlations in the positions of the scatterers on the coupling between their resonances, and hence on wave transport through the medium. To examine this question experimentally, we measure the effective medium wave number of acoustic waves in a sample made of bubbles embedded in an elastic matrix over a frequency range that includes the resonance frequency of the bubbles. The effective medium is highly dispersive, showing peaks in the attenuation and the phase velocity as functions of the frequency, which cannot be accurately described using the Independent Scattering Approximation (ISA). This discrepancy may be explained by the effects of the positional correlations of the scatterers, which we show to be dependent on the size of the scatterers. We propose a self-consistent approach for taking this \\u0027\\u0027polydisperse correlation\\u0027\\u0027 into account and show that our model better describes the experimental results than the ISA.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.PHYS.PHYS-CLASS-PH] Physics/Physics/Classical Physics\"],\"creators\":[\"Leroy, V.\",\"L Strybulevych, A.\",\"H Page, J.\",\"G Scanlon, M.\"],\"publicationdate\":\"2011-04-22\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Matière et Systèmes Complexes (MSC) ; Université Paris VII - Paris Diderot - CNRS\",\"Department of Physics and Astronomy ; University of Manitoba\",\"Department of Food Science ; University of Manitoba\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00529977\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/1010.6243\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1010.6243\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1010.6243\",\"id\":\"oai:arXiv.org:1010.6243\"},\"trust\":0.19018632}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00529977v2"},"target_publication_author_list":{"type":"LIST_STRING","value":["Leroy, V.","L Strybulevych, A.","H Page, J.","G Scanlon, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1010.6243"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.PHYS.PHYS-CLASS-PH] Physics/Physics/Classical Physics"]},"trust":{"type":"FLOAT","value":0.19018632},"target_publication_title":{"type":"STRING","value":"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-04-22"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00529977\",\"titles\":[\"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers\"],\"abstracts\":[\"We present experimental results on a model system for studying wave propagation in a complex medium exhibiting low frequency resonances. These experiments enable us to investigate a fundamental question that is relevant for many materials, such as metamaterials, where low-frequency scattering resonances strongly influence the effective medium properties. This question concerns the effect of correlations in the positions of the scatterers on the coupling between their resonances, and hence on wave transport through the medium. To examine this question experimentally, we measure the effective medium wave number of acoustic waves in a sample made of bubbles embedded in an elastic matrix over a frequency range that includes the resonance frequency of the bubbles. The effective medium is highly dispersive, showing peaks in the attenuation and the phase velocity as functions of the frequency, which cannot be accurately described using the Independent Scattering Approximation (ISA). This discrepancy may be explained by the effects of the positional correlations of the scatterers, which we show to be dependent on the size of the scatterers. We propose a self-consistent approach for taking this \\u0027\\u0027polydisperse correlation\\u0027\\u0027 into account and show that our model better describes the experimental results than the ISA.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:PHYS:PHYS_CLASS-PH] Physics/Physics/Classical Physics\",\"[PHYS:PHYS:PHYS_CLASS-PH] Physique/Physique/Physique Classique\"],\"creators\":[\"Leroy, V.\",\"L Strybulevych, A.\",\"H Page, J.\",\"G Scanlon, M.\"],\"publicationdate\":\"2011-04-22\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00529977\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00529977\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00529977\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00529977\",\"id\":\"oai:HAL:hal-00529977v2\"},\"trust\":0.70595986}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00529977"},"target_publication_author_list":{"type":"LIST_STRING","value":["Leroy, V.","L Strybulevych, A.","H Page, J.","G Scanlon, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00529977v2"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:PHYS:PHYS_CLASS-PH] Physics/Physics/Classical Physics","[PHYS:PHYS:PHYS_CLASS-PH] Physique/Physique/Physique Classique"]},"trust":{"type":"FLOAT","value":0.70595986},"target_publication_title":{"type":"STRING","value":"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-04-22"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00529977\",\"titles\":[\"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers\"],\"abstracts\":[\"We present experimental results on a model system for studying wave propagation in a complex medium exhibiting low frequency resonances. These experiments enable us to investigate a fundamental question that is relevant for many materials, such as metamaterials, where low-frequency scattering resonances strongly influence the effective medium properties. This question concerns the effect of correlations in the positions of the scatterers on the coupling between their resonances, and hence on wave transport through the medium. To examine this question experimentally, we measure the effective medium wave number of acoustic waves in a sample made of bubbles embedded in an elastic matrix over a frequency range that includes the resonance frequency of the bubbles. The effective medium is highly dispersive, showing peaks in the attenuation and the phase velocity as functions of the frequency, which cannot be accurately described using the Independent Scattering Approximation (ISA). This discrepancy may be explained by the effects of the positional correlations of the scatterers, which we show to be dependent on the size of the scatterers. We propose a self-consistent approach for taking this \\u0027\\u0027polydisperse correlation\\u0027\\u0027 into account and show that our model better describes the experimental results than the ISA.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:PHYS:PHYS_CLASS-PH] Physics/Physics/Classical Physics\",\"[PHYS:PHYS:PHYS_CLASS-PH] Physique/Physique/Physique Classique\"],\"creators\":[\"Leroy, V.\",\"L Strybulevych, A.\",\"H Page, J.\",\"G Scanlon, M.\"],\"publicationdate\":\"2011-04-22\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1103/PhysRevE.83.046605\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00529977\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1103/PhysRevE.83.046605\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1010.6243\",\"id\":\"oai:arXiv.org:1010.6243\"},\"trust\":0.062076926}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00529977"},"target_publication_author_list":{"type":"LIST_STRING","value":["Leroy, V.","L Strybulevych, A.","H Page, J.","G Scanlon, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1010.6243"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:PHYS:PHYS_CLASS-PH] Physics/Physics/Classical Physics","[PHYS:PHYS:PHYS_CLASS-PH] Physique/Physique/Physique Classique"]},"trust":{"type":"FLOAT","value":0.062076926},"target_publication_title":{"type":"STRING","value":"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-04-22"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00529977\",\"titles\":[\"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers\"],\"abstracts\":[\"We present experimental results on a model system for studying wave propagation in a complex medium exhibiting low frequency resonances. These experiments enable us to investigate a fundamental question that is relevant for many materials, such as metamaterials, where low-frequency scattering resonances strongly influence the effective medium properties. This question concerns the effect of correlations in the positions of the scatterers on the coupling between their resonances, and hence on wave transport through the medium. To examine this question experimentally, we measure the effective medium wave number of acoustic waves in a sample made of bubbles embedded in an elastic matrix over a frequency range that includes the resonance frequency of the bubbles. The effective medium is highly dispersive, showing peaks in the attenuation and the phase velocity as functions of the frequency, which cannot be accurately described using the Independent Scattering Approximation (ISA). This discrepancy may be explained by the effects of the positional correlations of the scatterers, which we show to be dependent on the size of the scatterers. We propose a self-consistent approach for taking this \\u0027\\u0027polydisperse correlation\\u0027\\u0027 into account and show that our model better describes the experimental results than the ISA.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:PHYS:PHYS_CLASS-PH] Physics/Physics/Classical Physics\",\"[PHYS:PHYS:PHYS_CLASS-PH] Physique/Physique/Physique Classique\"],\"creators\":[\"Leroy, V.\",\"L Strybulevych, A.\",\"H Page, J.\",\"G Scanlon, M.\"],\"publicationdate\":\"2011-04-22\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1103/PhysRevE.83.046605\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00529977\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1103/PhysRevE.83.046605\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1010.6243\",\"id\":\"oai:arXiv.org:1010.6243\"},\"trust\":0.062076926}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00529977"},"target_publication_author_list":{"type":"LIST_STRING","value":["Leroy, V.","L Strybulevych, A.","H Page, J.","G Scanlon, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1010.6243"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:PHYS:PHYS_CLASS-PH] Physics/Physics/Classical Physics","[PHYS:PHYS:PHYS_CLASS-PH] Physique/Physique/Physique Classique"]},"trust":{"type":"FLOAT","value":0.062076926},"target_publication_title":{"type":"STRING","value":"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-04-22"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00529977\",\"titles\":[\"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers\"],\"abstracts\":[\"We present experimental results on a model system for studying wave propagation in a complex medium exhibiting low frequency resonances. These experiments enable us to investigate a fundamental question that is relevant for many materials, such as metamaterials, where low-frequency scattering resonances strongly influence the effective medium properties. This question concerns the effect of correlations in the positions of the scatterers on the coupling between their resonances, and hence on wave transport through the medium. To examine this question experimentally, we measure the effective medium wave number of acoustic waves in a sample made of bubbles embedded in an elastic matrix over a frequency range that includes the resonance frequency of the bubbles. The effective medium is highly dispersive, showing peaks in the attenuation and the phase velocity as functions of the frequency, which cannot be accurately described using the Independent Scattering Approximation (ISA). This discrepancy may be explained by the effects of the positional correlations of the scatterers, which we show to be dependent on the size of the scatterers. We propose a self-consistent approach for taking this \\u0027\\u0027polydisperse correlation\\u0027\\u0027 into account and show that our model better describes the experimental results than the ISA.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:PHYS:PHYS_CLASS-PH] Physics/Physics/Classical Physics\",\"[PHYS:PHYS:PHYS_CLASS-PH] Physique/Physique/Physique Classique\"],\"creators\":[\"Leroy, V.\",\"L Strybulevych, A.\",\"H Page, J.\",\"G Scanlon, M.\"],\"publicationdate\":\"2011-04-22\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00529977\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/1010.6243\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1010.6243\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1010.6243\",\"id\":\"oai:arXiv.org:1010.6243\"},\"trust\":0.3687932}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00529977"},"target_publication_author_list":{"type":"LIST_STRING","value":["Leroy, V.","L Strybulevych, A.","H Page, J.","G Scanlon, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1010.6243"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:PHYS:PHYS_CLASS-PH] Physics/Physics/Classical Physics","[PHYS:PHYS:PHYS_CLASS-PH] Physique/Physique/Physique Classique"]},"trust":{"type":"FLOAT","value":0.3687932},"target_publication_title":{"type":"STRING","value":"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-04-22"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1010.6243\",\"titles\":[\"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers\"],\"abstracts\":[\" We present experimental results on a model system for studying wave\\npropagation in a complex medium exhibiting low frequency resonances. These\\nexperiments enable us to investigate a fundamental question that is relevant\\nfor many materials, such as metamaterials, where low-frequency scattering\\nresonances strongly influence the effective medium properties. This question\\nconcerns the effect of correlations in the positions of the scatterers on the\\ncoupling between their resonances, and hence on wave transport through the\\nmedium. To examine this question experimentally, we measure the effective\\nmedium wave number of acoustic waves in a sample made of bubbles embedded in an\\nelastic matrix over a frequency range that includes the resonance frequency of\\nthe bubbles. The effective medium is highly dispersive, showing peaks in the\\nattenuation and the phase velocity as functions of the frequency, which cannot\\nbe accurately described using the Independent Scattering Approximation (ISA).\\nThis discrepancy may be explained by the effects of the positional correlations\\nof the scatterers, which we show to be dependent on the size of the scatterers.\\nWe propose a self-consistent approach for taking this \\\"polydisperse\\ncorrelation\\\" into account and show that our model better describes the\\nexperimental results than the ISA.\\n\"],\"language\":\"eng\",\"subjects\":[\"Physics - Classical Physics\",\"Condensed Matter - Other Condensed Matter\"],\"creators\":[\"Leroy, V.\",\"Strybulevych, A. L.\",\"Page, J. H.\",\"Scanlon, M. G.\"],\"publicationdate\":\"2010-10-29\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1103/PhysRevE.83.046605\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1010.6243\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00529977\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00529977\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00529977\",\"id\":\"oai:HAL:hal-00529977v2\"},\"trust\":0.48649043}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1010.6243"},"target_publication_author_list":{"type":"LIST_STRING","value":["Leroy, V.","Strybulevych, A. L.","Page, J. H.","Scanlon, M. G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00529977v2"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics - Classical Physics","Condensed Matter - Other Condensed Matter"]},"trust":{"type":"FLOAT","value":0.48649043},"target_publication_title":{"type":"STRING","value":"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-10-29"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1010.6243\",\"titles\":[\"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers\"],\"abstracts\":[\" We present experimental results on a model system for studying wave\\npropagation in a complex medium exhibiting low frequency resonances. These\\nexperiments enable us to investigate a fundamental question that is relevant\\nfor many materials, such as metamaterials, where low-frequency scattering\\nresonances strongly influence the effective medium properties. This question\\nconcerns the effect of correlations in the positions of the scatterers on the\\ncoupling between their resonances, and hence on wave transport through the\\nmedium. To examine this question experimentally, we measure the effective\\nmedium wave number of acoustic waves in a sample made of bubbles embedded in an\\nelastic matrix over a frequency range that includes the resonance frequency of\\nthe bubbles. The effective medium is highly dispersive, showing peaks in the\\nattenuation and the phase velocity as functions of the frequency, which cannot\\nbe accurately described using the Independent Scattering Approximation (ISA).\\nThis discrepancy may be explained by the effects of the positional correlations\\nof the scatterers, which we show to be dependent on the size of the scatterers.\\nWe propose a self-consistent approach for taking this \\\"polydisperse\\ncorrelation\\\" into account and show that our model better describes the\\nexperimental results than the ISA.\\n\"],\"language\":\"eng\",\"subjects\":[\"Physics - Classical Physics\",\"Condensed Matter - Other Condensed Matter\"],\"creators\":[\"Leroy, V.\",\"Strybulevych, A. L.\",\"Page, J. H.\",\"Scanlon, M. G.\"],\"publicationdate\":\"2010-10-29\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1103/PhysRevE.83.046605\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1010.6243\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00529977\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00529977\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00529977\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00529977\"},\"trust\":0.86335796}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1010.6243"},"target_publication_author_list":{"type":"LIST_STRING","value":["Leroy, V.","Strybulevych, A. L.","Page, J. H.","Scanlon, M. G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00529977"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics - Classical Physics","Condensed Matter - Other Condensed Matter"]},"trust":{"type":"FLOAT","value":0.86335796},"target_publication_title":{"type":"STRING","value":"Influence of positional correlations on the propagation of waves in a complex medium with polydisperse resonant scatterers"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-10-29"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3018377\",\"titles\":[\"Allergic Contact Dermatitis (Type IV Hypersensitivity) and Type I Hypersensitivity Following Aromatherapy with Ayurvedic Oils (Dhanwantharam Thailam, Eladi Coconut Oil) Presenting as Generalized Erythema and Pruritus with Flexural Eczema\"],\"abstracts\":[\"Herbal and Ayurvedic medications, believed to be “mild” and “natural” are usually sought as the first line of treatment before resorting to “stronger” allopathic medication. There are very few reports of adverse reactions to either topical and/or systemic Ayurvedic medications. Massage aromatherapy with ayurvedic oils plays an important role in alleviation of pain, but may cause allergic contact dermatitis. This is the second case report of allergic contact dermatitis to ayurvedic oil.\"],\"language\":\"eng\",\"subjects\":[\"Case Report\",\"Allergic contact dermatitis\",\"aromatherapy\",\"contact urticaria\",\"Dhanwantharam thailam\",\"Eladi coconut oil\"],\"creators\":[\"Lakshmi, Chembolli\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"Medknow Publications \\u0026 Media Pvt Ltd\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Indian Journal of Dermatology\",\"issn\":\"0019-5154\",\"eissn\":\"1998-3611\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4103/0019-5154.131402\",\"type\":\"doi\"},{\"value\":\"PMC4037951\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4037951\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.e-ijd.org/article.asp?issn\\u003d0019-5154;year\\u003d2014;volume\\u003d59;issue\\u003d3;spage\\u003d283;epage\\u003d286;aulast\\u003dLakshmi\",\"license\":\"OPEN\",\"hostedby\":\"Indian Journal of Dermatology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.e-ijd.org/article.asp?issn\\u003d0019-5154;year\\u003d2014;volume\\u003d59;issue\\u003d3;spage\\u003d283;epage\\u003d286;aulast\\u003dLakshmi\",\"license\":\"OPEN\",\"hostedby\":\"Indian Journal of Dermatology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.e-ijd.org/article.asp?issn\\u003d0019-5154;year\\u003d2014;volume\\u003d59;issue\\u003d3;spage\\u003d283;epage\\u003d286;aulast\\u003dLakshmi\",\"id\":\"oai:doaj.org/article:ac56c72b368648f99a944e24cf3ce830\"},\"trust\":0.7991171}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3018377"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lakshmi, Chembolli"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:ac56c72b368648f99a944e24cf3ce830"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Case Report","Allergic contact dermatitis","aromatherapy","contact urticaria","Dhanwantharam thailam","Eladi coconut oil"]},"trust":{"type":"FLOAT","value":0.7991171},"target_publication_title":{"type":"STRING","value":"Allergic Contact Dermatitis (Type IV Hypersensitivity) and Type I Hypersensitivity Following Aromatherapy with Ayurvedic Oils (Dhanwantharam Thailam, Eladi Coconut Oil) Presenting as Generalized Erythema and Pruritus with Flexural Eczema"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3018377\",\"titles\":[\"Allergic Contact Dermatitis (Type IV Hypersensitivity) and Type I Hypersensitivity Following Aromatherapy with Ayurvedic Oils (Dhanwantharam Thailam, Eladi Coconut Oil) Presenting as Generalized Erythema and Pruritus with Flexural Eczema\"],\"abstracts\":[\"Herbal and Ayurvedic medications, believed to be “mild” and “natural” are usually sought as the first line of treatment before resorting to “stronger” allopathic medication. There are very few reports of adverse reactions to either topical and/or systemic Ayurvedic medications. Massage aromatherapy with ayurvedic oils plays an important role in alleviation of pain, but may cause allergic contact dermatitis. This is the second case report of allergic contact dermatitis to ayurvedic oil.\"],\"language\":\"eng\",\"subjects\":[\"Case Report\",\"Allergic contact dermatitis\",\"aromatherapy\",\"contact urticaria\",\"Dhanwantharam thailam\",\"Eladi coconut oil\"],\"creators\":[\"Lakshmi, Chembolli\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"Medknow Publications \\u0026 Media Pvt Ltd\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Indian Journal of Dermatology\",\"issn\":\"0019-5154\",\"eissn\":\"1998-3611\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4103/0019-5154.131402\",\"type\":\"doi\"},{\"value\":\"PMC4037951\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4037951\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.e-ijd.org/article.asp?issn\\u003d0019-5154;year\\u003d2014;volume\\u003d59;issue\\u003d3;spage\\u003d283;epage\\u003d286;aulast\\u003dLakshmi\",\"license\":\"OPEN\",\"hostedby\":\"Indian Journal of Dermatology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.e-ijd.org/article.asp?issn\\u003d0019-5154;year\\u003d2014;volume\\u003d59;issue\\u003d3;spage\\u003d283;epage\\u003d286;aulast\\u003dLakshmi\",\"license\":\"OPEN\",\"hostedby\":\"Indian Journal of Dermatology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.e-ijd.org/article.asp?issn\\u003d0019-5154;year\\u003d2014;volume\\u003d59;issue\\u003d3;spage\\u003d283;epage\\u003d286;aulast\\u003dLakshmi\",\"id\":\"oai:doaj.org/article:6e6d0fbf5b364a878d87bfb64694efdb\"},\"trust\":0.7003966}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3018377"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lakshmi, Chembolli"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:6e6d0fbf5b364a878d87bfb64694efdb"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Case Report","Allergic contact dermatitis","aromatherapy","contact urticaria","Dhanwantharam thailam","Eladi coconut oil"]},"trust":{"type":"FLOAT","value":0.7003966},"target_publication_title":{"type":"STRING","value":"Allergic Contact Dermatitis (Type IV Hypersensitivity) and Type I Hypersensitivity Following Aromatherapy with Ayurvedic Oils (Dhanwantharam Thailam, Eladi Coconut Oil) Presenting as Generalized Erythema and Pruritus with Flexural Eczema"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repositori.uji.es:10234/37641\",\"titles\":[\"Genre awareness in professional and academic language: the importance of “packing” knowledge appropriately in professional settings and academia\"],\"abstracts\":[\"The aim of this article is to provide insights on the importance of genre awareness in the study, correct\\r\\nunderstanding and accurate use of Professional and Academic Language (PAL), with special emphasis being placed on the language of industrial ceramics and that used in academia. First of all, the concept of PAL as the big “container” of specialised languages is put forward and linked with the notion of genre as a communicative event characterised by its recurrent, dynamic, recognisable, expectable and conventionalised nature and by the communicative purpose it aims to achieve. Such a description attempts to show how the correct understanding and use of PAL goes beyond merely terminological considerations and in fact needs genre so that it can be “packed” appropriately for the audience. Thus, the importance of genre in PAL is analysed from two main points of view: firstly, by focusing on its more professional aspects (dealing with the relevance of generic balance in corpus compilation and of genre awareness in general in discourse communities) and, secondly, by focusing on the importance of observing generic conventions (even “constraints”) in academia. Additionally, digital genres are also analysed as an increasingly significant way of packaging information, all this leading to the conclusion that genre awareness necessarily implies accomplishing the expectations and conventionalised use of language (both general or professional and academic) established by discourse communities\"],\"language\":\"eng\",\"subjects\":[\"Genre\",\"Professional and Academic Language (PAL)\",\"Specialised language\",\"Corpus\",\"Discourse community\",\"Cybergenre and industrial ceramics\"],\"creators\":[\"Edo Marzá, Nuria\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Debrecen University Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repositori Institucional de la Universitat Jaume I\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10234/37641\",\"license\":\"OPEN\",\"hostedby\":\"Repositori Institucional de la Universitat Jaume I\",\"instancetype\":\"Article\"},{\"url\":\"http://argumentum.unideb.hu/2011-anyagok/NuriaE.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Argumentum\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://argumentum.unideb.hu/2011-anyagok/NuriaE.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Argumentum\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://argumentum.unideb.hu/2011-anyagok/NuriaE.pdf\",\"id\":\"oai:doaj.org/article:b243765e30744a8abf0434fb12060698\"},\"trust\":0.69572145}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repositori Institucional de la Universitat Jaume I"},"target_publication_id":{"type":"STRING","value":"oai:repositori.uji.es:10234/37641"},"target_publication_author_list":{"type":"LIST_STRING","value":["Edo Marzá, Nuria"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:b243765e30744a8abf0434fb12060698"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Genre","Professional and Academic Language (PAL)","Specialised language","Corpus","Discourse community","Cybergenre and industrial ceramics"]},"trust":{"type":"FLOAT","value":0.69572145},"target_publication_title":{"type":"STRING","value":"Genre awareness in professional and academic language: the importance of “packing” knowledge appropriately in professional settings and academia"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::cfa5301358b9fcbe7aa45b1ceea088c6"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:halshs-00825807\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"We match migration data from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. Gravity-type estimations derived from a utility maximization approach cannot reject the null hypothesis that the frequency of drought acts as a push factor on inter-state migration in India. The effect is significant for both male and female migration rates. Drought duration and magnitude as well as flood events are never statistically significant.\"],\"language\":\"und\",\"subjects\":[\"Climate change; India; internal migration; PPML, SPI\"],\"creators\":[\"Ingrid Dallmann\",\"Katrin Millock\"],\"publicationdate\":\"2013-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/82/58/07/PDF/13045.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.esocialsciences.org/Download/repecDownload.aspx?fname\\u003dA201396124912_20.pdf\\u0026fcategory\\u003dArticles\\u0026AId\\u003d5480\\u0026fref\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.esocialsciences.org/Download/repecDownload.aspx?fname\\u003dA201396124912_20.pdf\\u0026fcategory\\u003dArticles\\u0026AId\\u003d5480\\u0026fref\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.esocialsciences.org/Download/repecDownload.aspx?fname\\u003dA201396124912_20.pdf\\u0026fcategory\\u003dArticles\\u0026AId\\u003d5480\\u0026fref\\u003drepec\",\"id\":\"oai:RePEc:ess:wpaper:id:5480\"},\"trust\":0.41684324}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:halshs-00825807"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ingrid Dallmann","Katrin Millock"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ess:wpaper:id:5480"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Climate change; India; internal migration; PPML, SPI"]},"trust":{"type":"FLOAT","value":0.41684324},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:halshs-00825807\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"We match migration data from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. Gravity-type estimations derived from a utility maximization approach cannot reject the null hypothesis that the frequency of drought acts as a push factor on inter-state migration in India. The effect is significant for both male and female migration rates. Drought duration and magnitude as well as flood events are never statistically significant.\"],\"language\":\"und\",\"subjects\":[\"Climate change; India; internal migration; PPML, SPI\"],\"creators\":[\"Ingrid Dallmann\",\"Katrin Millock\"],\"publicationdate\":\"2013-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/82/58/07/PDF/13045.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807\",\"id\":\"oai:HAL:halshs-00825807v1\"},\"trust\":0.5865748}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:halshs-00825807"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ingrid Dallmann","Katrin Millock"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00825807v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Climate change; India; internal migration; PPML, SPI"]},"trust":{"type":"FLOAT","value":0.5865748},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:halshs-00825807\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"We match migration data from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. Gravity-type estimations derived from a utility maximization approach cannot reject the null hypothesis that the frequency of drought acts as a push factor on inter-state migration in India. The effect is significant for both male and female migration rates. Drought duration and magnitude as well as flood events are never statistically significant.\"],\"language\":\"und\",\"subjects\":[\"Climate change; India; internal migration; PPML, SPI\"],\"creators\":[\"Ingrid Dallmann\",\"Katrin Millock\"],\"publicationdate\":\"2013-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/82/58/07/PDF/13045.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00825807\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00825807\"},\"trust\":0.4439935}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:halshs-00825807"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ingrid Dallmann","Katrin Millock"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00825807"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Climate change; India; internal migration; PPML, SPI"]},"trust":{"type":"FLOAT","value":0.4439935},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:halshs-00825807\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"We match migration data from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. Gravity-type estimations derived from a utility maximization approach cannot reject the null hypothesis that the frequency of drought acts as a push factor on inter-state migration in India. The effect is significant for both male and female migration rates. Drought duration and magnitude as well as flood events are never statistically significant.\"],\"language\":\"und\",\"subjects\":[\"Climate change; India; internal migration; PPML, SPI\"],\"creators\":[\"Ingrid Dallmann\",\"Katrin Millock\"],\"publicationdate\":\"2013-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/82/58/07/PDF/13045.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807/document\",\"id\":\"oai:RePEc:hal:cesptp:halshs-00825807\"},\"trust\":0.6281092}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:halshs-00825807"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ingrid Dallmann","Katrin Millock"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:cesptp:halshs-00825807"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Climate change; India; internal migration; PPML, SPI"]},"trust":{"type":"FLOAT","value":0.6281092},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ess:wpaper:id:5480\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"Migration data is matched from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. [CES Working Papers].\"],\"language\":\"und\",\"subjects\":[\"migration, data, Indian census, climate data, climate variability, push factor, standardized precipitation index, Internal Migration, Inter-State Migration, Indian, flood events, female, environment, economy, drought, economic drivers, costs, weather, households, urbanization, farmlands, soil erosion, income, cross-section data, net vegetation, gravity-type models, India, economy\"],\"creators\":[\"Ingrid Dallmann\",\"Katrin Millock\"],\"publicationdate\":\"2013-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.esocialsciences.org/Download/repecDownload.aspx?fname\\u003dA201396124912_20.pdf\\u0026fcategory\\u003dArticles\\u0026AId\\u003d5480\\u0026fref\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/82/58/07/PDF/13045.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/82/58/07/PDF/13045.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/82/58/07/PDF/13045.pdf\",\"id\":\"oai:RePEc:hal:journl:halshs-00825807\"},\"trust\":0.54510194}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ess:wpaper:id:5480"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ingrid Dallmann","Katrin Millock"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:journl:halshs-00825807"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["migration, data, Indian census, climate data, climate variability, push factor, standardized precipitation index, Internal Migration, Inter-State Migration, Indian, flood events, female, environment, economy, drought, economic drivers, costs, weather, households, urbanization, farmlands, soil erosion, income, cross-section data, net vegetation, gravity-type models, India, economy"]},"trust":{"type":"FLOAT","value":0.54510194},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ess:wpaper:id:5480\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"Migration data is matched from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. [CES Working Papers].\"],\"language\":\"und\",\"subjects\":[\"migration, data, Indian census, climate data, climate variability, push factor, standardized precipitation index, Internal Migration, Inter-State Migration, Indian, flood events, female, environment, economy, drought, economic drivers, costs, weather, households, urbanization, farmlands, soil erosion, income, cross-section data, net vegetation, gravity-type models, India, economy\"],\"creators\":[\"Ingrid Dallmann\",\"Katrin Millock\"],\"publicationdate\":\"2013-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.esocialsciences.org/Download/repecDownload.aspx?fname\\u003dA201396124912_20.pdf\\u0026fcategory\\u003dArticles\\u0026AId\\u003d5480\\u0026fref\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807\",\"id\":\"oai:HAL:halshs-00825807v1\"},\"trust\":0.6544105}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ess:wpaper:id:5480"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ingrid Dallmann","Katrin Millock"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00825807v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["migration, data, Indian census, climate data, climate variability, push factor, standardized precipitation index, Internal Migration, Inter-State Migration, Indian, flood events, female, environment, economy, drought, economic drivers, costs, weather, households, urbanization, farmlands, soil erosion, income, cross-section data, net vegetation, gravity-type models, India, economy"]},"trust":{"type":"FLOAT","value":0.6544105},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ess:wpaper:id:5480\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"Migration data is matched from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. [CES Working Papers].\"],\"language\":\"und\",\"subjects\":[\"migration, data, Indian census, climate data, climate variability, push factor, standardized precipitation index, Internal Migration, Inter-State Migration, Indian, flood events, female, environment, economy, drought, economic drivers, costs, weather, households, urbanization, farmlands, soil erosion, income, cross-section data, net vegetation, gravity-type models, India, economy\"],\"creators\":[\"Ingrid Dallmann\",\"Katrin Millock\"],\"publicationdate\":\"2013-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.esocialsciences.org/Download/repecDownload.aspx?fname\\u003dA201396124912_20.pdf\\u0026fcategory\\u003dArticles\\u0026AId\\u003d5480\\u0026fref\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00825807\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00825807\"},\"trust\":0.5458008}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ess:wpaper:id:5480"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ingrid Dallmann","Katrin Millock"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00825807"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["migration, data, Indian census, climate data, climate variability, push factor, standardized precipitation index, Internal Migration, Inter-State Migration, Indian, flood events, female, environment, economy, drought, economic drivers, costs, weather, households, urbanization, farmlands, soil erosion, income, cross-section data, net vegetation, gravity-type models, India, economy"]},"trust":{"type":"FLOAT","value":0.5458008},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ess:wpaper:id:5480\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"Migration data is matched from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. [CES Working Papers].\"],\"language\":\"und\",\"subjects\":[\"migration, data, Indian census, climate data, climate variability, push factor, standardized precipitation index, Internal Migration, Inter-State Migration, Indian, flood events, female, environment, economy, drought, economic drivers, costs, weather, households, urbanization, farmlands, soil erosion, income, cross-section data, net vegetation, gravity-type models, India, economy\"],\"creators\":[\"Ingrid Dallmann\",\"Katrin Millock\"],\"publicationdate\":\"2013-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.esocialsciences.org/Download/repecDownload.aspx?fname\\u003dA201396124912_20.pdf\\u0026fcategory\\u003dArticles\\u0026AId\\u003d5480\\u0026fref\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807/document\",\"id\":\"oai:RePEc:hal:cesptp:halshs-00825807\"},\"trust\":0.24169582}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ess:wpaper:id:5480"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ingrid Dallmann","Katrin Millock"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:cesptp:halshs-00825807"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["migration, data, Indian census, climate data, climate variability, push factor, standardized precipitation index, Internal Migration, Inter-State Migration, Indian, flood events, female, environment, economy, drought, economic drivers, costs, weather, households, urbanization, farmlands, soil erosion, income, cross-section data, net vegetation, gravity-type models, India, economy"]},"trust":{"type":"FLOAT","value":0.24169582},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00825807v1\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"URL des Documents de travail : http://centredeconomiesorbonne.univ-paris1.fr/bandeau-haut/documents-de-travail/\",\"Documents de travail du Centre d\\u0027Economie de la Sorbonne 2013.45 - ISSN : 1955-611X\",\"We match migration data from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. Gravity-type estimations derived from a utility maximization approach cannot reject the null hypothesis that the frequency of drought acts as a push factor on inter-state migration in India. The effect is significant for both male and female migration rates. Drought duration and magnitude as well as flood events are never statistically significant.\",\"Nous testons l\\u0027hypothése d\\u0027un impact positif de la variabilité climatique sur la migration interne. Pour ceci, nous apparions des données de migration du recensement de l\\u0027Inde avec des données climatiques. La contribution principale de l\\u0027analyse est d\\u0027introduire des indicateurs pertinents de variabilité climatique, basés sur l\\u0027indice de précipitation standardisé. Les estimations économétriques, dérivées d\\u0027une approche de maximisation de l\\u0027utilité, ne peuvent pas rejeter l\\u0027hypothèse nulle de la fréquence des événements de sécheresse ayant une influence positive sur la migration inter-états en Inde. L\\u0027effet reste significatif pour les taux de migration des hommes comme des femmes. La durée et l\\u0027intensité des évènements de sécheresse, ainsi que les inondations, ne sont jamais significatives.\"],\"language\":\"eng\",\"subjects\":[\"SPI\",\"PPML\",\"Changement climatique\",\"Inde\",\"migration interne\",\"Climate change\",\"India\",\"internal migration\",\"PPML\",\"SPI\",\"JEL : [O:O1:O15\",\"JEL : Q:Q5:Q54]\",\"[SHS.ECO] Humanities and Social Sciences/Economies and finances\",\"[SHS.ENVIR] Humanities and Social Sciences/Environmental studies\"],\"creators\":[\"Dallmann, Ingrid\",\"Millock, Katrin\"],\"publicationdate\":\"2013-05-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Analyse des Dynamiques Industrielles et Sociales (ADIS) ; Université Paris-Sud\",\"Axe Macroéconomie \\u003cbr / \\u003e Axe Environnement ; Centre d\\u0027économie de la Sorbonne (CES) ; Université Paris I - Panthéon-Sorbonne - CNRS - Université Paris I - Panthéon-Sorbonne - CNRS - Ecole d\\u0027Économie de Paris - Paris School of Economics (EEP-PSE) ; Ecole d\\u0027Économie de Paris - Ecole d\\u0027Économie de Paris\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/82/58/07/PDF/13045.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/82/58/07/PDF/13045.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/82/58/07/PDF/13045.pdf\",\"id\":\"oai:RePEc:hal:journl:halshs-00825807\"},\"trust\":0.27326357}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00825807v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dallmann, Ingrid","Millock, Katrin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:journl:halshs-00825807"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["SPI","PPML","Changement climatique","Inde","migration interne","Climate change","India","internal migration","PPML","SPI","JEL : [O:O1:O15","JEL : Q:Q5:Q54]","[SHS.ECO] Humanities and Social Sciences/Economies and finances","[SHS.ENVIR] Humanities and Social Sciences/Environmental studies"]},"trust":{"type":"FLOAT","value":0.27326357},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00825807v1\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"URL des Documents de travail : http://centredeconomiesorbonne.univ-paris1.fr/bandeau-haut/documents-de-travail/\",\"Documents de travail du Centre d\\u0027Economie de la Sorbonne 2013.45 - ISSN : 1955-611X\",\"We match migration data from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. Gravity-type estimations derived from a utility maximization approach cannot reject the null hypothesis that the frequency of drought acts as a push factor on inter-state migration in India. The effect is significant for both male and female migration rates. Drought duration and magnitude as well as flood events are never statistically significant.\",\"Nous testons l\\u0027hypothése d\\u0027un impact positif de la variabilité climatique sur la migration interne. Pour ceci, nous apparions des données de migration du recensement de l\\u0027Inde avec des données climatiques. La contribution principale de l\\u0027analyse est d\\u0027introduire des indicateurs pertinents de variabilité climatique, basés sur l\\u0027indice de précipitation standardisé. Les estimations économétriques, dérivées d\\u0027une approche de maximisation de l\\u0027utilité, ne peuvent pas rejeter l\\u0027hypothèse nulle de la fréquence des événements de sécheresse ayant une influence positive sur la migration inter-états en Inde. L\\u0027effet reste significatif pour les taux de migration des hommes comme des femmes. La durée et l\\u0027intensité des évènements de sécheresse, ainsi que les inondations, ne sont jamais significatives.\"],\"language\":\"eng\",\"subjects\":[\"SPI\",\"PPML\",\"Changement climatique\",\"Inde\",\"migration interne\",\"Climate change\",\"India\",\"internal migration\",\"PPML\",\"SPI\",\"JEL : [O:O1:O15\",\"JEL : Q:Q5:Q54]\",\"[SHS.ECO] Humanities and Social Sciences/Economies and finances\",\"[SHS.ENVIR] Humanities and Social Sciences/Environmental studies\"],\"creators\":[\"Dallmann, Ingrid\",\"Millock, Katrin\"],\"publicationdate\":\"2013-05-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Analyse des Dynamiques Industrielles et Sociales (ADIS) ; Université Paris-Sud\",\"Axe Macroéconomie \\u003cbr / \\u003e Axe Environnement ; Centre d\\u0027économie de la Sorbonne (CES) ; Université Paris I - Panthéon-Sorbonne - CNRS - Université Paris I - Panthéon-Sorbonne - CNRS - Ecole d\\u0027Économie de Paris - Paris School of Economics (EEP-PSE) ; Ecole d\\u0027Économie de Paris - Ecole d\\u0027Économie de Paris\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.esocialsciences.org/Download/repecDownload.aspx?fname\\u003dA201396124912_20.pdf\\u0026fcategory\\u003dArticles\\u0026AId\\u003d5480\\u0026fref\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.esocialsciences.org/Download/repecDownload.aspx?fname\\u003dA201396124912_20.pdf\\u0026fcategory\\u003dArticles\\u0026AId\\u003d5480\\u0026fref\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.esocialsciences.org/Download/repecDownload.aspx?fname\\u003dA201396124912_20.pdf\\u0026fcategory\\u003dArticles\\u0026AId\\u003d5480\\u0026fref\\u003drepec\",\"id\":\"oai:RePEc:ess:wpaper:id:5480\"},\"trust\":0.7499236}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00825807v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dallmann, Ingrid","Millock, Katrin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ess:wpaper:id:5480"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["SPI","PPML","Changement climatique","Inde","migration interne","Climate change","India","internal migration","PPML","SPI","JEL : [O:O1:O15","JEL : Q:Q5:Q54]","[SHS.ECO] Humanities and Social Sciences/Economies and finances","[SHS.ENVIR] Humanities and Social Sciences/Environmental studies"]},"trust":{"type":"FLOAT","value":0.7499236},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00825807v1\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"URL des Documents de travail : http://centredeconomiesorbonne.univ-paris1.fr/bandeau-haut/documents-de-travail/\",\"Documents de travail du Centre d\\u0027Economie de la Sorbonne 2013.45 - ISSN : 1955-611X\",\"We match migration data from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. Gravity-type estimations derived from a utility maximization approach cannot reject the null hypothesis that the frequency of drought acts as a push factor on inter-state migration in India. The effect is significant for both male and female migration rates. Drought duration and magnitude as well as flood events are never statistically significant.\",\"Nous testons l\\u0027hypothése d\\u0027un impact positif de la variabilité climatique sur la migration interne. Pour ceci, nous apparions des données de migration du recensement de l\\u0027Inde avec des données climatiques. La contribution principale de l\\u0027analyse est d\\u0027introduire des indicateurs pertinents de variabilité climatique, basés sur l\\u0027indice de précipitation standardisé. Les estimations économétriques, dérivées d\\u0027une approche de maximisation de l\\u0027utilité, ne peuvent pas rejeter l\\u0027hypothèse nulle de la fréquence des événements de sécheresse ayant une influence positive sur la migration inter-états en Inde. L\\u0027effet reste significatif pour les taux de migration des hommes comme des femmes. La durée et l\\u0027intensité des évènements de sécheresse, ainsi que les inondations, ne sont jamais significatives.\"],\"language\":\"eng\",\"subjects\":[\"SPI\",\"PPML\",\"Changement climatique\",\"Inde\",\"migration interne\",\"Climate change\",\"India\",\"internal migration\",\"PPML\",\"SPI\",\"JEL : [O:O1:O15\",\"JEL : Q:Q5:Q54]\",\"[SHS.ECO] Humanities and Social Sciences/Economies and finances\",\"[SHS.ENVIR] Humanities and Social Sciences/Environmental studies\"],\"creators\":[\"Dallmann, Ingrid\",\"Millock, Katrin\"],\"publicationdate\":\"2013-05-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Analyse des Dynamiques Industrielles et Sociales (ADIS) ; Université Paris-Sud\",\"Axe Macroéconomie \\u003cbr / \\u003e Axe Environnement ; Centre d\\u0027économie de la Sorbonne (CES) ; Université Paris I - Panthéon-Sorbonne - CNRS - Université Paris I - Panthéon-Sorbonne - CNRS - Ecole d\\u0027Économie de Paris - Paris School of Economics (EEP-PSE) ; Ecole d\\u0027Économie de Paris - Ecole d\\u0027Économie de Paris\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00825807\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00825807\"},\"trust\":0.7030453}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00825807v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dallmann, Ingrid","Millock, Katrin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00825807"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["SPI","PPML","Changement climatique","Inde","migration interne","Climate change","India","internal migration","PPML","SPI","JEL : [O:O1:O15","JEL : Q:Q5:Q54]","[SHS.ECO] Humanities and Social Sciences/Economies and finances","[SHS.ENVIR] Humanities and Social Sciences/Environmental studies"]},"trust":{"type":"FLOAT","value":0.7030453},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00825807v1\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"URL des Documents de travail : http://centredeconomiesorbonne.univ-paris1.fr/bandeau-haut/documents-de-travail/\",\"Documents de travail du Centre d\\u0027Economie de la Sorbonne 2013.45 - ISSN : 1955-611X\",\"We match migration data from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. Gravity-type estimations derived from a utility maximization approach cannot reject the null hypothesis that the frequency of drought acts as a push factor on inter-state migration in India. The effect is significant for both male and female migration rates. Drought duration and magnitude as well as flood events are never statistically significant.\",\"Nous testons l\\u0027hypothése d\\u0027un impact positif de la variabilité climatique sur la migration interne. Pour ceci, nous apparions des données de migration du recensement de l\\u0027Inde avec des données climatiques. La contribution principale de l\\u0027analyse est d\\u0027introduire des indicateurs pertinents de variabilité climatique, basés sur l\\u0027indice de précipitation standardisé. Les estimations économétriques, dérivées d\\u0027une approche de maximisation de l\\u0027utilité, ne peuvent pas rejeter l\\u0027hypothèse nulle de la fréquence des événements de sécheresse ayant une influence positive sur la migration inter-états en Inde. L\\u0027effet reste significatif pour les taux de migration des hommes comme des femmes. La durée et l\\u0027intensité des évènements de sécheresse, ainsi que les inondations, ne sont jamais significatives.\"],\"language\":\"eng\",\"subjects\":[\"SPI\",\"PPML\",\"Changement climatique\",\"Inde\",\"migration interne\",\"Climate change\",\"India\",\"internal migration\",\"PPML\",\"SPI\",\"JEL : [O:O1:O15\",\"JEL : Q:Q5:Q54]\",\"[SHS.ECO] Humanities and Social Sciences/Economies and finances\",\"[SHS.ENVIR] Humanities and Social Sciences/Environmental studies\"],\"creators\":[\"Dallmann, Ingrid\",\"Millock, Katrin\"],\"publicationdate\":\"2013-05-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Analyse des Dynamiques Industrielles et Sociales (ADIS) ; Université Paris-Sud\",\"Axe Macroéconomie \\u003cbr / \\u003e Axe Environnement ; Centre d\\u0027économie de la Sorbonne (CES) ; Université Paris I - Panthéon-Sorbonne - CNRS - Université Paris I - Panthéon-Sorbonne - CNRS - Ecole d\\u0027Économie de Paris - Paris School of Economics (EEP-PSE) ; Ecole d\\u0027Économie de Paris - Ecole d\\u0027Économie de Paris\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807/document\",\"id\":\"oai:RePEc:hal:cesptp:halshs-00825807\"},\"trust\":0.34681445}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00825807v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dallmann, Ingrid","Millock, Katrin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:cesptp:halshs-00825807"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["SPI","PPML","Changement climatique","Inde","migration interne","Climate change","India","internal migration","PPML","SPI","JEL : [O:O1:O15","JEL : Q:Q5:Q54]","[SHS.ECO] Humanities and Social Sciences/Economies and finances","[SHS.ENVIR] Humanities and Social Sciences/Environmental studies"]},"trust":{"type":"FLOAT","value":0.34681445},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00825807\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"We match migration data from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. Gravity-type estimations derived from a utility maximization approach cannot reject the null hypothesis that the frequency of drought acts as a push factor on inter-state migration in India. The effect is significant for both male and female migration rates. Drought duration and magnitude as well as flood events are never statistically significant.\"],\"language\":\"eng\",\"subjects\":[\"[SHS:ECO] Humanities and Social Sciences/Economy and finances\",\"[SHS:ECO] Sciences de l\\u0027Homme et Société/Economie et finances\",\"[SHS:ENVIR] Humanities and Social Sciences/Environmental studies\",\"[SHS:ENVIR] Sciences de l\\u0027Homme et Société/Etudes de l\\u0027environnement\",\"Climate change\",\"India\",\"internal migration\",\"PPML\",\"SPI\"],\"creators\":[\"Dallmann, Ingrid\",\"Millock, Katrin\"],\"publicationdate\":\"2013-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"},{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/82/58/07/PDF/13045.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/82/58/07/PDF/13045.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/82/58/07/PDF/13045.pdf\",\"id\":\"oai:RePEc:hal:journl:halshs-00825807\"},\"trust\":0.80178994}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00825807"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dallmann, Ingrid","Millock, Katrin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:journl:halshs-00825807"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:ECO] Humanities and Social Sciences/Economy and finances","[SHS:ECO] Sciences de l\u0027Homme et Société/Economie et finances","[SHS:ENVIR] Humanities and Social Sciences/Environmental studies","[SHS:ENVIR] Sciences de l\u0027Homme et Société/Etudes de l\u0027environnement","Climate change","India","internal migration","PPML","SPI"]},"trust":{"type":"FLOAT","value":0.80178994},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00825807\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"We match migration data from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. Gravity-type estimations derived from a utility maximization approach cannot reject the null hypothesis that the frequency of drought acts as a push factor on inter-state migration in India. The effect is significant for both male and female migration rates. Drought duration and magnitude as well as flood events are never statistically significant.\"],\"language\":\"eng\",\"subjects\":[\"[SHS:ECO] Humanities and Social Sciences/Economy and finances\",\"[SHS:ECO] Sciences de l\\u0027Homme et Société/Economie et finances\",\"[SHS:ENVIR] Humanities and Social Sciences/Environmental studies\",\"[SHS:ENVIR] Sciences de l\\u0027Homme et Société/Etudes de l\\u0027environnement\",\"Climate change\",\"India\",\"internal migration\",\"PPML\",\"SPI\"],\"creators\":[\"Dallmann, Ingrid\",\"Millock, Katrin\"],\"publicationdate\":\"2013-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"},{\"url\":\"http://www.esocialsciences.org/Download/repecDownload.aspx?fname\\u003dA201396124912_20.pdf\\u0026fcategory\\u003dArticles\\u0026AId\\u003d5480\\u0026fref\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.esocialsciences.org/Download/repecDownload.aspx?fname\\u003dA201396124912_20.pdf\\u0026fcategory\\u003dArticles\\u0026AId\\u003d5480\\u0026fref\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.esocialsciences.org/Download/repecDownload.aspx?fname\\u003dA201396124912_20.pdf\\u0026fcategory\\u003dArticles\\u0026AId\\u003d5480\\u0026fref\\u003drepec\",\"id\":\"oai:RePEc:ess:wpaper:id:5480\"},\"trust\":0.08694589}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00825807"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dallmann, Ingrid","Millock, Katrin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ess:wpaper:id:5480"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:ECO] Humanities and Social Sciences/Economy and finances","[SHS:ECO] Sciences de l\u0027Homme et Société/Economie et finances","[SHS:ENVIR] Humanities and Social Sciences/Environmental studies","[SHS:ENVIR] Sciences de l\u0027Homme et Société/Etudes de l\u0027environnement","Climate change","India","internal migration","PPML","SPI"]},"trust":{"type":"FLOAT","value":0.08694589},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00825807\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"We match migration data from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. Gravity-type estimations derived from a utility maximization approach cannot reject the null hypothesis that the frequency of drought acts as a push factor on inter-state migration in India. The effect is significant for both male and female migration rates. Drought duration and magnitude as well as flood events are never statistically significant.\"],\"language\":\"eng\",\"subjects\":[\"[SHS:ECO] Humanities and Social Sciences/Economy and finances\",\"[SHS:ECO] Sciences de l\\u0027Homme et Société/Economie et finances\",\"[SHS:ENVIR] Humanities and Social Sciences/Environmental studies\",\"[SHS:ENVIR] Sciences de l\\u0027Homme et Société/Etudes de l\\u0027environnement\",\"Climate change\",\"India\",\"internal migration\",\"PPML\",\"SPI\"],\"creators\":[\"Dallmann, Ingrid\",\"Millock, Katrin\"],\"publicationdate\":\"2013-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807\",\"id\":\"oai:HAL:halshs-00825807v1\"},\"trust\":0.44950134}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00825807"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dallmann, Ingrid","Millock, Katrin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00825807v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:ECO] Humanities and Social Sciences/Economy and finances","[SHS:ECO] Sciences de l\u0027Homme et Société/Economie et finances","[SHS:ENVIR] Humanities and Social Sciences/Environmental studies","[SHS:ENVIR] Sciences de l\u0027Homme et Société/Etudes de l\u0027environnement","Climate change","India","internal migration","PPML","SPI"]},"trust":{"type":"FLOAT","value":0.44950134},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00825807\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"We match migration data from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. Gravity-type estimations derived from a utility maximization approach cannot reject the null hypothesis that the frequency of drought acts as a push factor on inter-state migration in India. The effect is significant for both male and female migration rates. Drought duration and magnitude as well as flood events are never statistically significant.\"],\"language\":\"eng\",\"subjects\":[\"[SHS:ECO] Humanities and Social Sciences/Economy and finances\",\"[SHS:ECO] Sciences de l\\u0027Homme et Société/Economie et finances\",\"[SHS:ENVIR] Humanities and Social Sciences/Environmental studies\",\"[SHS:ENVIR] Sciences de l\\u0027Homme et Société/Etudes de l\\u0027environnement\",\"Climate change\",\"India\",\"internal migration\",\"PPML\",\"SPI\"],\"creators\":[\"Dallmann, Ingrid\",\"Millock, Katrin\"],\"publicationdate\":\"2013-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807/document\",\"id\":\"oai:RePEc:hal:cesptp:halshs-00825807\"},\"trust\":0.09221637}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00825807"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dallmann, Ingrid","Millock, Katrin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:cesptp:halshs-00825807"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:ECO] Humanities and Social Sciences/Economy and finances","[SHS:ECO] Sciences de l\u0027Homme et Société/Economie et finances","[SHS:ENVIR] Humanities and Social Sciences/Environmental studies","[SHS:ENVIR] Sciences de l\u0027Homme et Société/Etudes de l\u0027environnement","Climate change","India","internal migration","PPML","SPI"]},"trust":{"type":"FLOAT","value":0.09221637},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:cesptp:halshs-00825807\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"We match migration data from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. Gravity-type estimations derived from a utility maximization approach cannot reject the null hypothesis that the frequency of drought acts as a push factor on inter-state migration in India. The effect is significant for both male and female migration rates. Drought duration and magnitude as well as flood events are never statistically significant.\",\"Nous testons l\\u0027hypothése d\\u0027un impact positif de la variabilité climatique sur la migration interne. Pour ceci, nous apparions des données de migration du recensement de l\\u0027Inde avec des données climatiques. La contribution principale de l\\u0027analyse est d\\u0027introduire des indicateurs pertinents de variabilité climatique, basés sur l\\u0027indice de précipitation standardisé. Les estimations économétriques, dérivées d\\u0027une approche de maximisation de l\\u0027utilité, ne peuvent pas rejeter l\\u0027hypothèse nulle de la fréquence des événements de sécheresse ayant une influence positive sur la migration inter-états en Inde. L\\u0027effet reste significatif pour les taux de migration des hommes comme des femmes. La durée et l\\u0027intensité des évènements de sécheresse, ainsi que les inondations, ne sont jamais significatives.\"],\"language\":\"und\",\"subjects\":[\"Changement climatique,Inde,migration interne,Climate change,India,internal migration,PPML,SPI\"],\"creators\":[\"Ingrid Dallmann\",\"Katrin Millock\"],\"publicationdate\":\"2013-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/82/58/07/PDF/13045.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/82/58/07/PDF/13045.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://halshs.archives-ouvertes.fr/docs/00/82/58/07/PDF/13045.pdf\",\"id\":\"oai:RePEc:hal:journl:halshs-00825807\"},\"trust\":0.12683386}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:cesptp:halshs-00825807"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ingrid Dallmann","Katrin Millock"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:journl:halshs-00825807"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Changement climatique,Inde,migration interne,Climate change,India,internal migration,PPML,SPI"]},"trust":{"type":"FLOAT","value":0.12683386},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:cesptp:halshs-00825807\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"We match migration data from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. Gravity-type estimations derived from a utility maximization approach cannot reject the null hypothesis that the frequency of drought acts as a push factor on inter-state migration in India. The effect is significant for both male and female migration rates. Drought duration and magnitude as well as flood events are never statistically significant.\",\"Nous testons l\\u0027hypothése d\\u0027un impact positif de la variabilité climatique sur la migration interne. Pour ceci, nous apparions des données de migration du recensement de l\\u0027Inde avec des données climatiques. La contribution principale de l\\u0027analyse est d\\u0027introduire des indicateurs pertinents de variabilité climatique, basés sur l\\u0027indice de précipitation standardisé. Les estimations économétriques, dérivées d\\u0027une approche de maximisation de l\\u0027utilité, ne peuvent pas rejeter l\\u0027hypothèse nulle de la fréquence des événements de sécheresse ayant une influence positive sur la migration inter-états en Inde. L\\u0027effet reste significatif pour les taux de migration des hommes comme des femmes. La durée et l\\u0027intensité des évènements de sécheresse, ainsi que les inondations, ne sont jamais significatives.\"],\"language\":\"und\",\"subjects\":[\"Changement climatique,Inde,migration interne,Climate change,India,internal migration,PPML,SPI\"],\"creators\":[\"Ingrid Dallmann\",\"Katrin Millock\"],\"publicationdate\":\"2013-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.esocialsciences.org/Download/repecDownload.aspx?fname\\u003dA201396124912_20.pdf\\u0026fcategory\\u003dArticles\\u0026AId\\u003d5480\\u0026fref\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.esocialsciences.org/Download/repecDownload.aspx?fname\\u003dA201396124912_20.pdf\\u0026fcategory\\u003dArticles\\u0026AId\\u003d5480\\u0026fref\\u003drepec\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.esocialsciences.org/Download/repecDownload.aspx?fname\\u003dA201396124912_20.pdf\\u0026fcategory\\u003dArticles\\u0026AId\\u003d5480\\u0026fref\\u003drepec\",\"id\":\"oai:RePEc:ess:wpaper:id:5480\"},\"trust\":0.7598554}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:cesptp:halshs-00825807"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ingrid Dallmann","Katrin Millock"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ess:wpaper:id:5480"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Changement climatique,Inde,migration interne,Climate change,India,internal migration,PPML,SPI"]},"trust":{"type":"FLOAT","value":0.7598554},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:cesptp:halshs-00825807\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"We match migration data from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. Gravity-type estimations derived from a utility maximization approach cannot reject the null hypothesis that the frequency of drought acts as a push factor on inter-state migration in India. The effect is significant for both male and female migration rates. Drought duration and magnitude as well as flood events are never statistically significant.\",\"Nous testons l\\u0027hypothése d\\u0027un impact positif de la variabilité climatique sur la migration interne. Pour ceci, nous apparions des données de migration du recensement de l\\u0027Inde avec des données climatiques. La contribution principale de l\\u0027analyse est d\\u0027introduire des indicateurs pertinents de variabilité climatique, basés sur l\\u0027indice de précipitation standardisé. Les estimations économétriques, dérivées d\\u0027une approche de maximisation de l\\u0027utilité, ne peuvent pas rejeter l\\u0027hypothèse nulle de la fréquence des événements de sécheresse ayant une influence positive sur la migration inter-états en Inde. L\\u0027effet reste significatif pour les taux de migration des hommes comme des femmes. La durée et l\\u0027intensité des évènements de sécheresse, ainsi que les inondations, ne sont jamais significatives.\"],\"language\":\"und\",\"subjects\":[\"Changement climatique,Inde,migration interne,Climate change,India,internal migration,PPML,SPI\"],\"creators\":[\"Ingrid Dallmann\",\"Katrin Millock\"],\"publicationdate\":\"2013-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807\",\"id\":\"oai:HAL:halshs-00825807v1\"},\"trust\":0.7608654}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:cesptp:halshs-00825807"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ingrid Dallmann","Katrin Millock"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00825807v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Changement climatique,Inde,migration interne,Climate change,India,internal migration,PPML,SPI"]},"trust":{"type":"FLOAT","value":0.7608654},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:cesptp:halshs-00825807\",\"titles\":[\"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration\"],\"abstracts\":[\"We match migration data from the Indian census with climate data to test the hypothesis of climate variability as a push factor for internal migration. The main contribution of the analysis is to introduce relevant meteorological indicators of climate variability, based on the standardized precipitation index. Gravity-type estimations derived from a utility maximization approach cannot reject the null hypothesis that the frequency of drought acts as a push factor on inter-state migration in India. The effect is significant for both male and female migration rates. Drought duration and magnitude as well as flood events are never statistically significant.\",\"Nous testons l\\u0027hypothése d\\u0027un impact positif de la variabilité climatique sur la migration interne. Pour ceci, nous apparions des données de migration du recensement de l\\u0027Inde avec des données climatiques. La contribution principale de l\\u0027analyse est d\\u0027introduire des indicateurs pertinents de variabilité climatique, basés sur l\\u0027indice de précipitation standardisé. Les estimations économétriques, dérivées d\\u0027une approche de maximisation de l\\u0027utilité, ne peuvent pas rejeter l\\u0027hypothèse nulle de la fréquence des événements de sécheresse ayant une influence positive sur la migration inter-états en Inde. L\\u0027effet reste significatif pour les taux de migration des hommes comme des femmes. La durée et l\\u0027intensité des évènements de sécheresse, ainsi que les inondations, ne sont jamais significatives.\"],\"language\":\"und\",\"subjects\":[\"Changement climatique,Inde,migration interne,Climate change,India,internal migration,PPML,SPI\"],\"creators\":[\"Ingrid Dallmann\",\"Katrin Millock\"],\"publicationdate\":\"2013-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00825807/document\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00825807\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00825807\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00825807\"},\"trust\":0.7102921}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:cesptp:halshs-00825807"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ingrid Dallmann","Katrin Millock"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00825807"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Changement climatique,Inde,migration interne,Climate change,India,internal migration,PPML,SPI"]},"trust":{"type":"FLOAT","value":0.7102921},"target_publication_title":{"type":"STRING","value":"Climate Variability and Internal Migration: A Test on Indian Inter-State Migration"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:pure.atira.dk:publications/bc2fbd5f-64f8-4410-9850-6191bcd39d62\",\"titles\":[\"Control algorithms along relative equilibria of underactuated Lagrangian systems on Lie groups\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"We present novel algorithms to control underactuated mechanical systems. For a class of invariant systems on Lie groups, we design iterative small-amplitude control forces to accelerate along, decelerate along, and stabilize relative equilibria. The technical approach is based upon a perturbation analysis and the design of inversion primitives and composition methods. We illustrate the algorithms on an underactuated planar rigid body and on a satellite with two thrusters.\"],\"creators\":[\"Nordkvist, Nikolaj\",\"Bullo, Francesco\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"IEEE\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Online Research Database In Technology\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/control-algorithms-along-relative-equilibria-of-underactuated-lagrangian-systems-on-lie-groups(bc2fbd5f-64f8-4410-9850-6191bcd39d62).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"},{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d210109\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d210109\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d210109\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"id\":\"oai:oai.forksningsdatabasen.dk:203250\"},\"trust\":0.23707432}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_publication_id":{"type":"STRING","value":"oai:pure.atira.dk:publications/bc2fbd5f-64f8-4410-9850-6191bcd39d62"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nordkvist, Nikolaj","Bullo, Francesco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:203250"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"target_publication_subject_list":{"type":"LIST_STRING","value":["We present novel algorithms to control underactuated mechanical systems. For a class of invariant systems on Lie groups, we design iterative small-amplitude control forces to accelerate along, decelerate along, and stabilize relative equilibria. The technical approach is based upon a perturbation analysis and the design of inversion primitives and composition methods. We illustrate the algorithms on an underactuated planar rigid body and on a satellite with two thrusters."]},"trust":{"type":"FLOAT","value":0.23707432},"target_publication_title":{"type":"STRING","value":"Control algorithms along relative equilibria of underactuated Lagrangian systems on Lie groups"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:pure.atira.dk:publications/bc2fbd5f-64f8-4410-9850-6191bcd39d62\",\"titles\":[\"Control algorithms along relative equilibria of underactuated Lagrangian systems on Lie groups\"],\"abstracts\":[\"We present novel algorithms to control underactuated mechanical systems. For a class of invariant systems on Lie groups, we design iterative small-amplitude control forces to accelerate along, decelerate along, and stabilize relative equilibria. The technical approach is based upon a perturbation analysis and the design of inversion primitives and composition methods. We illustrate the algorithms on an underactuated planar rigid body and on a satellite with two thrusters.\",\"Copyright: 2007 IEEE. Personal use of this material is permitted. However, permission to reprint/republish this material for advertising or promotional purposes or for creating new collective works for resale or redistribution to servers or lists, or to reuse any copyrighted component of this work in other works must be obtained from the IEEE\"],\"language\":\"eng\",\"subjects\":[\"We present novel algorithms to control underactuated mechanical systems. For a class of invariant systems on Lie groups, we design iterative small-amplitude control forces to accelerate along, decelerate along, and stabilize relative equilibria. The technical approach is based upon a perturbation analysis and the design of inversion primitives and composition methods. We illustrate the algorithms on an underactuated planar rigid body and on a satellite with two thrusters.\"],\"creators\":[\"Nordkvist, Nikolaj\",\"Bullo, Francesco\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"IEEE\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Online Research Database In Technology\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/control-algorithms-along-relative-equilibria-of-underactuated-lagrangian-systems-on-lie-groups(bc2fbd5f-64f8-4410-9850-6191bcd39d62).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"We present novel algorithms to control underactuated mechanical systems. For a class of invariant systems on Lie groups, we design iterative small-amplitude control forces to accelerate along, decelerate along, and stabilize relative equilibria. The technical approach is based upon a perturbation analysis and the design of inversion primitives and composition methods. We illustrate the algorithms on an underactuated planar rigid body and on a satellite with two thrusters.\",\"Copyright: 2007 IEEE. Personal use of this material is permitted. However, permission to reprint/republish this material for advertising or promotional purposes or for creating new collective works for resale or redistribution to servers or lists, or to reuse any copyrighted component of this work in other works must be obtained from the IEEE\"]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d210109\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"id\":\"oai:oai.forksningsdatabasen.dk:203250\"},\"trust\":0.20285797}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_publication_id":{"type":"STRING","value":"oai:pure.atira.dk:publications/bc2fbd5f-64f8-4410-9850-6191bcd39d62"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nordkvist, Nikolaj","Bullo, Francesco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:203250"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"target_publication_subject_list":{"type":"LIST_STRING","value":["We present novel algorithms to control underactuated mechanical systems. For a class of invariant systems on Lie groups, we design iterative small-amplitude control forces to accelerate along, decelerate along, and stabilize relative equilibria. The technical approach is based upon a perturbation analysis and the design of inversion primitives and composition methods. We illustrate the algorithms on an underactuated planar rigid body and on a satellite with two thrusters."]},"trust":{"type":"FLOAT","value":0.20285797},"target_publication_title":{"type":"STRING","value":"Control algorithms along relative equilibria of underactuated Lagrangian systems on Lie groups"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:203250\",\"titles\":[\"Control algorithms along relative equilibria of underactuated Lagrangian systems on Lie groups\"],\"abstracts\":[\"We present novel algorithms to control underactuated mechanical systems. For a class of invariant systems on Lie groups, we design iterative small-amplitude control forces to accelerate along, decelerate along, and stabilize relative equilibria. The technical approach is based upon a perturbation analysis and the design of inversion primitives and composition methods. We illustrate the algorithms on an underactuated planar rigid body and on a satellite with two thrusters.\",\"Copyright: 2007 IEEE. Personal use of this material is permitted. However, permission to reprint/republish this material for advertising or promotional purposes or for creating new collective works for resale or redistribution to servers or lists, or to reuse any copyrighted component of this work in other works must be obtained from the IEEE\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Nordkvist, Nikolaj\",\"Bullo, Francesco\"],\"publicationdate\":\"2008-02-06\",\"publisher\":\"IEEE conference proceedings\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d210109\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Conference object\"},{\"url\":\"http://orbit.dtu.dk/en/publications/control-algorithms-along-relative-equilibria-of-underactuated-lagrangian-systems-on-lie-groups(bc2fbd5f-64f8-4410-9850-6191bcd39d62).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/control-algorithms-along-relative-equilibria-of-underactuated-lagrangian-systems-on-lie-groups(bc2fbd5f-64f8-4410-9850-6191bcd39d62).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}]},\"provenance\":{\"repositoryName\":\"Online Research Database In Technology\",\"url\":\"http://orbit.dtu.dk/en/publications/control-algorithms-along-relative-equilibria-of-underactuated-lagrangian-systems-on-lie-groups(bc2fbd5f-64f8-4410-9850-6191bcd39d62).html\",\"id\":\"oai:pure.atira.dk:publications/bc2fbd5f-64f8-4410-9850-6191bcd39d62\"},\"trust\":0.87957484}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:203250"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nordkvist, Nikolaj","Bullo, Francesco"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:pure.atira.dk:publications/bc2fbd5f-64f8-4410-9850-6191bcd39d62"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"},"trust":{"type":"FLOAT","value":0.87957484},"target_publication_title":{"type":"STRING","value":"Control algorithms along relative equilibria of underactuated Lagrangian systems on Lie groups"},"provenance_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_dateofacceptance":{"type":"DATE","value":"2008-02-06"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:28355\",\"titles\":[\"Modelling light distributions of homogeneous versus discrete absorbers in light irrdiated turbid media\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Verkruijsse, W.\",\"Lucassen, G. W.\",\"Boer, J. F.\",\"Smithies, D. J.\",\"Nelson, J. S.\",\"Gemert, M. J. C.\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://dare.uva.nl/record/28355\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/11245/1.136161\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/11245/1.136161\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/11245/1.136161\",\"id\":\"uvapub:oai:uva.nl:136161\"},\"trust\":0.605748}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:28355"},"target_publication_author_list":{"type":"LIST_STRING","value":["Verkruijsse, W.","Lucassen, G. W.","Boer, J. F.","Smithies, D. J.","Nelson, J. S.","Gemert, M. J. C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uvapub:oai:uva.nl:136161"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.605748},"target_publication_title":{"type":"STRING","value":"Modelling light distributions of homogeneous versus discrete absorbers in light irrdiated turbid media"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1912503\",\"titles\":[\"Acute inflammation at a mandibular solitary horizontal incompletely impacted molar\"],\"abstracts\":[\"Acute inflammation is frequently seen in the elderly around incompletely impacted molars located apart from molars or premolars. To identify the factors causing acute inflammation in the solitary molars without second molars or without second and first molars, ages of patients and rates of acute inflammation in 75 horizontal incompletely impacted mandibular molars in contact or not in contact with molars in subjects 41 years old or older were studied using orthopantomographs. Acute inflammation was seen in nine third molars out of 48 third molars in contact with second molars (18.8%), whereas acute inflammation was seen in 11 molars out of 19 solitary molars without second molars or without first and second molars (57.9%) (p \\u003c 0.01). The mean age of 48 subjects with third molars in contact with the second molar was 50.42 ± 7.62 years, and the mean age of 19 subjects with isolated molars was 65.16 ± 10.41 years (p \\u003c 0.0001). These indicate that a solitary horizontal incompletely impacted molar leads more frequently to acute inflammation along with aging due to possible bone resorption resulting from teeth loss.\"],\"language\":\"eng\",\"subjects\":[\"Original Research\",\"mandible\",\"third molar\",\"impaction\",\"elderly\",\"acute inflammation\",\"solitary molar\"],\"creators\":[\"Yamaoka, Minoru\",\"Ono, Yusuke\",\"Ishizuka, Masahide\",\"Hasumi-Nakayama, Yoko\",\"Doto, Ryosuke\",\"Yasuda, Kouichi\",\"Uematsu, Takashi\",\"Furusawa, Kiyofumi\"],\"publicationdate\":\"2009-07-01\",\"publisher\":\"Dove Medical Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"International Journal of General Medicine\",\"issn\":\"\",\"eissn\":\"1178-7074\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC2840582\",\"type\":\"pmc\"},{\"value\":\"20360889\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2840582\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.dovepress.com/acute-inflammation-at-a-mandibular-solitary-horizontal-incompletely-im-a3015\",\"license\":\"OPEN\",\"hostedby\":\"International Journal of General Medicine\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.dovepress.com/acute-inflammation-at-a-mandibular-solitary-horizontal-incompletely-im-a3015\",\"license\":\"OPEN\",\"hostedby\":\"International Journal of General Medicine\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.dovepress.com/acute-inflammation-at-a-mandibular-solitary-horizontal-incompletely-im-a3015\",\"id\":\"oai:doaj.org/article:4b0b32cf6d654c67afc1019ed542fea5\"},\"trust\":0.75966805}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1912503"},"target_publication_author_list":{"type":"LIST_STRING","value":["Yamaoka, Minoru","Ono, Yusuke","Ishizuka, Masahide","Hasumi-Nakayama, Yoko","Doto, Ryosuke","Yasuda, Kouichi","Uematsu, Takashi","Furusawa, Kiyofumi"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:4b0b32cf6d654c67afc1019ed542fea5"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Research","mandible","third molar","impaction","elderly","acute inflammation","solitary molar"]},"trust":{"type":"FLOAT","value":0.75966805},"target_publication_title":{"type":"STRING","value":"Acute inflammation at a mandibular solitary horizontal incompletely impacted molar"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1012.5279\",\"titles\":[\"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet $n \\\\to \\\\pi^*$ (CO) transition in acrolein\"],\"abstracts\":[\" We report state-of-the-art quantum Monte Carlo calculations of the singlet $n\\n\\\\to \\\\pi^*$ (CO) vertical excitation energy in the acrolein molecule, extending\\nthe recent study of Bouab\\\\c{c}a {\\\\it et al.} [J. Chem. Phys. {\\\\bf 130}, 114107\\n(2009)]. We investigate the effect of using a Slater basis set instead of a\\nGaussian basis set, and of using state-average versus state-specific\\ncomplete-active-space (CAS) wave functions, with or without reoptimization of\\nthe coefficients of the configuration state functions (CSFs) and of the\\norbitals in variational Monte Carlo (VMC). It is found that, with the Slater\\nbasis set used here, both state-average and state-specific CAS(6,5) wave\\nfunctions give an accurate excitation energy in diffusion Monte Carlo (DMC),\\nwith or without reoptimization of the CSF and orbital coefficients in the\\npresence of the Jastrow factor. In contrast, the CAS(2,2) wave functions\\nrequire reoptimization of the CSF and orbital coefficients to give a good DMC\\nexcitation energy. Our best estimates of the vertical excitation energy are\\nbetween 3.86 and 3.89 eV.\\n\",\"Comment: 6 pages, 1 figure, 2 tables, to appear in Progress in Theoretical\\n Chemistry and Physics\"],\"language\":\"eng\",\"subjects\":[\"Physics - Chemical Physics\",\"Physics - Computational Physics\"],\"creators\":[\"Toulouse, Julien\",\"Caffarel, Michel\",\"Reinhardt, Peter\",\"Hoggan, Philip E.\",\"Umrigar, C. J.\"],\"publicationdate\":\"2010-12-23\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1007/978-94-007-2076-3\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1012.5279\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/978-94-007-2076-3\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.upmc.fr/hal-00550057\",\"id\":\"oai:hal.upmc.fr:hal-00550057\"},\"trust\":0.17421305}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1012.5279"},"target_publication_author_list":{"type":"LIST_STRING","value":["Toulouse, Julien","Caffarel, Michel","Reinhardt, Peter","Hoggan, Philip E.","Umrigar, C. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.upmc.fr:hal-00550057"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics - Chemical Physics","Physics - Computational Physics"]},"trust":{"type":"FLOAT","value":0.17421305},"target_publication_title":{"type":"STRING","value":"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet $n \\to \\pi^*$ (CO) transition in acrolein"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-12-23"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1012.5279\",\"titles\":[\"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet $n \\\\to \\\\pi^*$ (CO) transition in acrolein\"],\"abstracts\":[\" We report state-of-the-art quantum Monte Carlo calculations of the singlet $n\\n\\\\to \\\\pi^*$ (CO) vertical excitation energy in the acrolein molecule, extending\\nthe recent study of Bouab\\\\c{c}a {\\\\it et al.} [J. Chem. Phys. {\\\\bf 130}, 114107\\n(2009)]. We investigate the effect of using a Slater basis set instead of a\\nGaussian basis set, and of using state-average versus state-specific\\ncomplete-active-space (CAS) wave functions, with or without reoptimization of\\nthe coefficients of the configuration state functions (CSFs) and of the\\norbitals in variational Monte Carlo (VMC). It is found that, with the Slater\\nbasis set used here, both state-average and state-specific CAS(6,5) wave\\nfunctions give an accurate excitation energy in diffusion Monte Carlo (DMC),\\nwith or without reoptimization of the CSF and orbital coefficients in the\\npresence of the Jastrow factor. In contrast, the CAS(2,2) wave functions\\nrequire reoptimization of the CSF and orbital coefficients to give a good DMC\\nexcitation energy. Our best estimates of the vertical excitation energy are\\nbetween 3.86 and 3.89 eV.\\n\",\"Comment: 6 pages, 1 figure, 2 tables, to appear in Progress in Theoretical\\n Chemistry and Physics\"],\"language\":\"eng\",\"subjects\":[\"Physics - Chemical Physics\",\"Physics - Computational Physics\"],\"creators\":[\"Toulouse, Julien\",\"Caffarel, Michel\",\"Reinhardt, Peter\",\"Hoggan, Philip E.\",\"Umrigar, C. J.\"],\"publicationdate\":\"2010-12-23\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1007/978-94-007-2076-3\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1012.5279\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/978-94-007-2076-3\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.upmc.fr/hal-00550057\",\"id\":\"oai:hal.upmc.fr:hal-00550057\"},\"trust\":0.17421305}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1012.5279"},"target_publication_author_list":{"type":"LIST_STRING","value":["Toulouse, Julien","Caffarel, Michel","Reinhardt, Peter","Hoggan, Philip E.","Umrigar, C. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.upmc.fr:hal-00550057"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics - Chemical Physics","Physics - Computational Physics"]},"trust":{"type":"FLOAT","value":0.17421305},"target_publication_title":{"type":"STRING","value":"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet $n \\to \\pi^*$ (CO) transition in acrolein"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-12-23"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1012.5279\",\"titles\":[\"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet $n \\\\to \\\\pi^*$ (CO) transition in acrolein\"],\"abstracts\":[\" We report state-of-the-art quantum Monte Carlo calculations of the singlet $n\\n\\\\to \\\\pi^*$ (CO) vertical excitation energy in the acrolein molecule, extending\\nthe recent study of Bouab\\\\c{c}a {\\\\it et al.} [J. Chem. Phys. {\\\\bf 130}, 114107\\n(2009)]. We investigate the effect of using a Slater basis set instead of a\\nGaussian basis set, and of using state-average versus state-specific\\ncomplete-active-space (CAS) wave functions, with or without reoptimization of\\nthe coefficients of the configuration state functions (CSFs) and of the\\norbitals in variational Monte Carlo (VMC). It is found that, with the Slater\\nbasis set used here, both state-average and state-specific CAS(6,5) wave\\nfunctions give an accurate excitation energy in diffusion Monte Carlo (DMC),\\nwith or without reoptimization of the CSF and orbital coefficients in the\\npresence of the Jastrow factor. In contrast, the CAS(2,2) wave functions\\nrequire reoptimization of the CSF and orbital coefficients to give a good DMC\\nexcitation energy. Our best estimates of the vertical excitation energy are\\nbetween 3.86 and 3.89 eV.\\n\",\"Comment: 6 pages, 1 figure, 2 tables, to appear in Progress in Theoretical\\n Chemistry and Physics\"],\"language\":\"eng\",\"subjects\":[\"Physics - Chemical Physics\",\"Physics - Computational Physics\"],\"creators\":[\"Toulouse, Julien\",\"Caffarel, Michel\",\"Reinhardt, Peter\",\"Hoggan, Philip E.\",\"Umrigar, C. J.\"],\"publicationdate\":\"2010-12-23\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/1012.5279\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.upmc.fr/hal-00550057\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.upmc.fr/hal-00550057\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.upmc.fr/hal-00550057\",\"id\":\"oai:hal.upmc.fr:hal-00550057\"},\"trust\":0.93781066}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1012.5279"},"target_publication_author_list":{"type":"LIST_STRING","value":["Toulouse, Julien","Caffarel, Michel","Reinhardt, Peter","Hoggan, Philip E.","Umrigar, C. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.upmc.fr:hal-00550057"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics - Chemical Physics","Physics - Computational Physics"]},"trust":{"type":"FLOAT","value":0.93781066},"target_publication_title":{"type":"STRING","value":"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet $n \\to \\pi^*$ (CO) transition in acrolein"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-12-23"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1012.5279\",\"titles\":[\"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet $n \\\\to \\\\pi^*$ (CO) transition in acrolein\"],\"abstracts\":[\" We report state-of-the-art quantum Monte Carlo calculations of the singlet $n\\n\\\\to \\\\pi^*$ (CO) vertical excitation energy in the acrolein molecule, extending\\nthe recent study of Bouab\\\\c{c}a {\\\\it et al.} [J. Chem. Phys. {\\\\bf 130}, 114107\\n(2009)]. We investigate the effect of using a Slater basis set instead of a\\nGaussian basis set, and of using state-average versus state-specific\\ncomplete-active-space (CAS) wave functions, with or without reoptimization of\\nthe coefficients of the configuration state functions (CSFs) and of the\\norbitals in variational Monte Carlo (VMC). It is found that, with the Slater\\nbasis set used here, both state-average and state-specific CAS(6,5) wave\\nfunctions give an accurate excitation energy in diffusion Monte Carlo (DMC),\\nwith or without reoptimization of the CSF and orbital coefficients in the\\npresence of the Jastrow factor. In contrast, the CAS(2,2) wave functions\\nrequire reoptimization of the CSF and orbital coefficients to give a good DMC\\nexcitation energy. Our best estimates of the vertical excitation energy are\\nbetween 3.86 and 3.89 eV.\\n\",\"Comment: 6 pages, 1 figure, 2 tables, to appear in Progress in Theoretical\\n Chemistry and Physics\"],\"language\":\"eng\",\"subjects\":[\"Physics - Chemical Physics\",\"Physics - Computational Physics\"],\"creators\":[\"Toulouse, Julien\",\"Caffarel, Michel\",\"Reinhardt, Peter\",\"Hoggan, Philip E.\",\"Umrigar, C. J.\"],\"publicationdate\":\"2010-12-23\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1007/978-94-007-2076-3\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1012.5279\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/978-94-007-2076-3\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.upmc.fr/hal-00550057\",\"id\":\"oai:HAL:hal-00550057v1\"},\"trust\":0.511898}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1012.5279"},"target_publication_author_list":{"type":"LIST_STRING","value":["Toulouse, Julien","Caffarel, Michel","Reinhardt, Peter","Hoggan, Philip E.","Umrigar, C. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00550057v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics - Chemical Physics","Physics - Computational Physics"]},"trust":{"type":"FLOAT","value":0.511898},"target_publication_title":{"type":"STRING","value":"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet $n \\to \\pi^*$ (CO) transition in acrolein"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-12-23"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1012.5279\",\"titles\":[\"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet $n \\\\to \\\\pi^*$ (CO) transition in acrolein\"],\"abstracts\":[\" We report state-of-the-art quantum Monte Carlo calculations of the singlet $n\\n\\\\to \\\\pi^*$ (CO) vertical excitation energy in the acrolein molecule, extending\\nthe recent study of Bouab\\\\c{c}a {\\\\it et al.} [J. Chem. Phys. {\\\\bf 130}, 114107\\n(2009)]. We investigate the effect of using a Slater basis set instead of a\\nGaussian basis set, and of using state-average versus state-specific\\ncomplete-active-space (CAS) wave functions, with or without reoptimization of\\nthe coefficients of the configuration state functions (CSFs) and of the\\norbitals in variational Monte Carlo (VMC). It is found that, with the Slater\\nbasis set used here, both state-average and state-specific CAS(6,5) wave\\nfunctions give an accurate excitation energy in diffusion Monte Carlo (DMC),\\nwith or without reoptimization of the CSF and orbital coefficients in the\\npresence of the Jastrow factor. In contrast, the CAS(2,2) wave functions\\nrequire reoptimization of the CSF and orbital coefficients to give a good DMC\\nexcitation energy. Our best estimates of the vertical excitation energy are\\nbetween 3.86 and 3.89 eV.\\n\",\"Comment: 6 pages, 1 figure, 2 tables, to appear in Progress in Theoretical\\n Chemistry and Physics\"],\"language\":\"eng\",\"subjects\":[\"Physics - Chemical Physics\",\"Physics - Computational Physics\"],\"creators\":[\"Toulouse, Julien\",\"Caffarel, Michel\",\"Reinhardt, Peter\",\"Hoggan, Philip E.\",\"Umrigar, C. J.\"],\"publicationdate\":\"2010-12-23\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1007/978-94-007-2076-3\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1012.5279\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/978-94-007-2076-3\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.upmc.fr/hal-00550057\",\"id\":\"oai:HAL:hal-00550057v1\"},\"trust\":0.511898}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1012.5279"},"target_publication_author_list":{"type":"LIST_STRING","value":["Toulouse, Julien","Caffarel, Michel","Reinhardt, Peter","Hoggan, Philip E.","Umrigar, C. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00550057v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics - Chemical Physics","Physics - Computational Physics"]},"trust":{"type":"FLOAT","value":0.511898},"target_publication_title":{"type":"STRING","value":"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet $n \\to \\pi^*$ (CO) transition in acrolein"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-12-23"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1012.5279\",\"titles\":[\"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet $n \\\\to \\\\pi^*$ (CO) transition in acrolein\"],\"abstracts\":[\" We report state-of-the-art quantum Monte Carlo calculations of the singlet $n\\n\\\\to \\\\pi^*$ (CO) vertical excitation energy in the acrolein molecule, extending\\nthe recent study of Bouab\\\\c{c}a {\\\\it et al.} [J. Chem. Phys. {\\\\bf 130}, 114107\\n(2009)]. We investigate the effect of using a Slater basis set instead of a\\nGaussian basis set, and of using state-average versus state-specific\\ncomplete-active-space (CAS) wave functions, with or without reoptimization of\\nthe coefficients of the configuration state functions (CSFs) and of the\\norbitals in variational Monte Carlo (VMC). It is found that, with the Slater\\nbasis set used here, both state-average and state-specific CAS(6,5) wave\\nfunctions give an accurate excitation energy in diffusion Monte Carlo (DMC),\\nwith or without reoptimization of the CSF and orbital coefficients in the\\npresence of the Jastrow factor. In contrast, the CAS(2,2) wave functions\\nrequire reoptimization of the CSF and orbital coefficients to give a good DMC\\nexcitation energy. Our best estimates of the vertical excitation energy are\\nbetween 3.86 and 3.89 eV.\\n\",\"Comment: 6 pages, 1 figure, 2 tables, to appear in Progress in Theoretical\\n Chemistry and Physics\"],\"language\":\"eng\",\"subjects\":[\"Physics - Chemical Physics\",\"Physics - Computational Physics\"],\"creators\":[\"Toulouse, Julien\",\"Caffarel, Michel\",\"Reinhardt, Peter\",\"Hoggan, Philip E.\",\"Umrigar, C. J.\"],\"publicationdate\":\"2010-12-23\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/1012.5279\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.upmc.fr/hal-00550057\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.upmc.fr/hal-00550057\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.upmc.fr/hal-00550057\",\"id\":\"oai:HAL:hal-00550057v1\"},\"trust\":0.29483682}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1012.5279"},"target_publication_author_list":{"type":"LIST_STRING","value":["Toulouse, Julien","Caffarel, Michel","Reinhardt, Peter","Hoggan, Philip E.","Umrigar, C. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00550057v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics - Chemical Physics","Physics - Computational Physics"]},"trust":{"type":"FLOAT","value":0.29483682},"target_publication_title":{"type":"STRING","value":"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet $n \\to \\pi^*$ (CO) transition in acrolein"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-12-23"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.upmc.fr:hal-00550057\",\"titles\":[\"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet n to pi* (CO) transition in acrolein\"],\"abstracts\":[\"We report state-of-the-art quantum Monte Carlo calculations of the singlet $n \\\\to \\\\pi^*$ (CO) vertical excitation energy in the acrolein molecule, extending the recent study of Bouabça {\\\\it et al.} [J. Chem. Phys. {\\\\bf 130}, 114107 (2009)]. We investigate the effect of using a Slater basis set instead of a Gaussian basis set, and of using state-average versus state-specific complete-active-space (CAS) wave functions, with or without reoptimization of the coefficients of the configuration state functions (CSFs) and of the orbitals in variational Monte Carlo (VMC). It is found that, with the Slater basis set used here, both state-average and state-specific CAS(6,5) wave functions give an accurate excitation energy in diffusion Monte Carlo (DMC), with or without reoptimization of the CSF and orbital coefficients in the presence of the Jastrow factor. In contrast, the CAS(2,2) wave functions require reoptimization of the CSF and orbital coefficients to give a good DMC excitation energy. Our best estimates of the vertical excitation energy are between 3.86 and 3.89 eV.\"],\"language\":\"eng\",\"subjects\":[\"[CHIM:THEO] Chemical Sciences/Theoretical and/or physical chemistry\",\"[CHIM:THEO] Chimie/Chimie théorique et/ou physique\",\"[PHYS:PHYS:PHYS_CHEM-PH] Physics/Physics/Chemical Physics\",\"[PHYS:PHYS:PHYS_CHEM-PH] Physique/Physique/Chimie-Physique\",\"[PHYS:PHYS:PHYS_COMP-PH] Physics/Physics/Computational Physics\",\"[PHYS:PHYS:PHYS_COMP-PH] Physique/Physique/Physique Numérique\",\"quantum Monte Carlo\",\"excited states\",\"acrolein\"],\"creators\":[\"Toulouse, Julien\",\"Caffarel, Michel\",\"Reinhardt, Peter\",\"Hoggan, Philip\",\"Umrigar, C. J.\"],\"publicationdate\":\"2011-11-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/978-94-007-2076-3\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.upmc.fr/hal-00550057\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"http://arxiv.org/abs/1012.5279\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1012.5279\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1012.5279\",\"id\":\"oai:arXiv.org:1012.5279\"},\"trust\":0.11806452}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.upmc.fr:hal-00550057"},"target_publication_author_list":{"type":"LIST_STRING","value":["Toulouse, Julien","Caffarel, Michel","Reinhardt, Peter","Hoggan, Philip","Umrigar, C. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1012.5279"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[CHIM:THEO] Chemical Sciences/Theoretical and/or physical chemistry","[CHIM:THEO] Chimie/Chimie théorique et/ou physique","[PHYS:PHYS:PHYS_CHEM-PH] Physics/Physics/Chemical Physics","[PHYS:PHYS:PHYS_CHEM-PH] Physique/Physique/Chimie-Physique","[PHYS:PHYS:PHYS_COMP-PH] Physics/Physics/Computational Physics","[PHYS:PHYS:PHYS_COMP-PH] Physique/Physique/Physique Numérique","quantum Monte Carlo","excited states","acrolein"]},"trust":{"type":"FLOAT","value":0.11806452},"target_publication_title":{"type":"STRING","value":"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet n to pi* (CO) transition in acrolein"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.upmc.fr:hal-00550057\",\"titles\":[\"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet n to pi* (CO) transition in acrolein\"],\"abstracts\":[\"We report state-of-the-art quantum Monte Carlo calculations of the singlet $n \\\\to \\\\pi^*$ (CO) vertical excitation energy in the acrolein molecule, extending the recent study of Bouabça {\\\\it et al.} [J. Chem. Phys. {\\\\bf 130}, 114107 (2009)]. We investigate the effect of using a Slater basis set instead of a Gaussian basis set, and of using state-average versus state-specific complete-active-space (CAS) wave functions, with or without reoptimization of the coefficients of the configuration state functions (CSFs) and of the orbitals in variational Monte Carlo (VMC). It is found that, with the Slater basis set used here, both state-average and state-specific CAS(6,5) wave functions give an accurate excitation energy in diffusion Monte Carlo (DMC), with or without reoptimization of the CSF and orbital coefficients in the presence of the Jastrow factor. In contrast, the CAS(2,2) wave functions require reoptimization of the CSF and orbital coefficients to give a good DMC excitation energy. Our best estimates of the vertical excitation energy are between 3.86 and 3.89 eV.\"],\"language\":\"eng\",\"subjects\":[\"[CHIM:THEO] Chemical Sciences/Theoretical and/or physical chemistry\",\"[CHIM:THEO] Chimie/Chimie théorique et/ou physique\",\"[PHYS:PHYS:PHYS_CHEM-PH] Physics/Physics/Chemical Physics\",\"[PHYS:PHYS:PHYS_CHEM-PH] Physique/Physique/Chimie-Physique\",\"[PHYS:PHYS:PHYS_COMP-PH] Physics/Physics/Computational Physics\",\"[PHYS:PHYS:PHYS_COMP-PH] Physique/Physique/Physique Numérique\",\"quantum Monte Carlo\",\"excited states\",\"acrolein\"],\"creators\":[\"Toulouse, Julien\",\"Caffarel, Michel\",\"Reinhardt, Peter\",\"Hoggan, Philip\",\"Umrigar, C. J.\"],\"publicationdate\":\"2011-11-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/978-94-007-2076-3\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.upmc.fr/hal-00550057\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"http://hal.upmc.fr/hal-00550057\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.upmc.fr/hal-00550057\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.upmc.fr/hal-00550057\",\"id\":\"oai:HAL:hal-00550057v1\"},\"trust\":0.35345978}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.upmc.fr:hal-00550057"},"target_publication_author_list":{"type":"LIST_STRING","value":["Toulouse, Julien","Caffarel, Michel","Reinhardt, Peter","Hoggan, Philip","Umrigar, C. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00550057v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[CHIM:THEO] Chemical Sciences/Theoretical and/or physical chemistry","[CHIM:THEO] Chimie/Chimie théorique et/ou physique","[PHYS:PHYS:PHYS_CHEM-PH] Physics/Physics/Chemical Physics","[PHYS:PHYS:PHYS_CHEM-PH] Physique/Physique/Chimie-Physique","[PHYS:PHYS:PHYS_COMP-PH] Physics/Physics/Computational Physics","[PHYS:PHYS:PHYS_COMP-PH] Physique/Physique/Physique Numérique","quantum Monte Carlo","excited states","acrolein"]},"trust":{"type":"FLOAT","value":0.35345978},"target_publication_title":{"type":"STRING","value":"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet n to pi* (CO) transition in acrolein"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00550057v1\",\"titles\":[\"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet n to pi* (CO) transition in acrolein\"],\"abstracts\":[\"6 pages, 1 figure, 2 tables\",\"We report state-of-the-art quantum Monte Carlo calculations of the singlet $n \\\\to \\\\pi^*$ (CO) vertical excitation energy in the acrolein molecule, extending the recent study of Bouabça {\\\\it et al.} [J. Chem. Phys. {\\\\bf 130}, 114107 (2009)]. We investigate the effect of using a Slater basis set instead of a Gaussian basis set, and of using state-average versus state-specific complete-active-space (CAS) wave functions, with or without reoptimization of the coefficients of the configuration state functions (CSFs) and of the orbitals in variational Monte Carlo (VMC). It is found that, with the Slater basis set used here, both state-average and state-specific CAS(6,5) wave functions give an accurate excitation energy in diffusion Monte Carlo (DMC), with or without reoptimization of the CSF and orbital coefficients in the presence of the Jastrow factor. In contrast, the CAS(2,2) wave functions require reoptimization of the CSF and orbital coefficients to give a good DMC excitation energy. Our best estimates of the vertical excitation energy are between 3.86 and 3.89 eV.\"],\"language\":\"eng\",\"subjects\":[\"acrolein\",\"excited states\",\"quantum Monte Carlo\",\"[CHIM.THEO] Chemical Sciences/Theoretical and/or physical chemistry\",\"[PHYS.PHYS.PHYS-CHEM-PH] Physics/Physics/Chemical Physics\",\"[PHYS.PHYS.PHYS-COMP-PH] Physics/Physics/Computational Physics\"],\"creators\":[\"Toulouse, Julien\",\"Caffarel, Michel\",\"Reinhardt, Peter\",\"Hoggan, Philip\",\"Umrigar, C. J.\"],\"publicationdate\":\"2011-11-15\",\"publisher\":\"Springer\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire de chimie théorique (LCT) ; Université Pierre et Marie Curie (UPMC) - Paris VI - CNRS\",\"Méthodes et outils de la chimie quantique ; Laboratoire de Chimie et Physique Quantiques (LCPQ) ; Université Paul Sabatier (UPS) - Toulouse III - CNRS - Université Paul Sabatier (UPS) - Toulouse III - CNRS\",\"Laboratoire des sciences et matériaux pour l\\u0027électronique et d\\u0027automatique (LASMEA) ; Université Blaise Pascal - Clermont-Ferrand II - CNRS\",\"Laboratory of Atomic and Solid State Physics (LASSP) ; Cornell University\",\"DEISA project STOP-Qalm\",\"P. E. Hoggan, J. Maruani, P. Piecuch, G. Delgado-Barrio and E. J. Brandas\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/978-94-007-2076-3\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.upmc.fr/hal-00550057\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/1012.5279\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1012.5279\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1012.5279\",\"id\":\"oai:arXiv.org:1012.5279\"},\"trust\":0.6030957}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00550057v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Toulouse, Julien","Caffarel, Michel","Reinhardt, Peter","Hoggan, Philip","Umrigar, C. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1012.5279"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["acrolein","excited states","quantum Monte Carlo","[CHIM.THEO] Chemical Sciences/Theoretical and/or physical chemistry","[PHYS.PHYS.PHYS-CHEM-PH] Physics/Physics/Chemical Physics","[PHYS.PHYS.PHYS-COMP-PH] Physics/Physics/Computational Physics"]},"trust":{"type":"FLOAT","value":0.6030957},"target_publication_title":{"type":"STRING","value":"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet n to pi* (CO) transition in acrolein"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00550057v1\",\"titles\":[\"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet n to pi* (CO) transition in acrolein\"],\"abstracts\":[\"6 pages, 1 figure, 2 tables\",\"We report state-of-the-art quantum Monte Carlo calculations of the singlet $n \\\\to \\\\pi^*$ (CO) vertical excitation energy in the acrolein molecule, extending the recent study of Bouabça {\\\\it et al.} [J. Chem. Phys. {\\\\bf 130}, 114107 (2009)]. We investigate the effect of using a Slater basis set instead of a Gaussian basis set, and of using state-average versus state-specific complete-active-space (CAS) wave functions, with or without reoptimization of the coefficients of the configuration state functions (CSFs) and of the orbitals in variational Monte Carlo (VMC). It is found that, with the Slater basis set used here, both state-average and state-specific CAS(6,5) wave functions give an accurate excitation energy in diffusion Monte Carlo (DMC), with or without reoptimization of the CSF and orbital coefficients in the presence of the Jastrow factor. In contrast, the CAS(2,2) wave functions require reoptimization of the CSF and orbital coefficients to give a good DMC excitation energy. Our best estimates of the vertical excitation energy are between 3.86 and 3.89 eV.\"],\"language\":\"eng\",\"subjects\":[\"acrolein\",\"excited states\",\"quantum Monte Carlo\",\"[CHIM.THEO] Chemical Sciences/Theoretical and/or physical chemistry\",\"[PHYS.PHYS.PHYS-CHEM-PH] Physics/Physics/Chemical Physics\",\"[PHYS.PHYS.PHYS-COMP-PH] Physics/Physics/Computational Physics\"],\"creators\":[\"Toulouse, Julien\",\"Caffarel, Michel\",\"Reinhardt, Peter\",\"Hoggan, Philip\",\"Umrigar, C. J.\"],\"publicationdate\":\"2011-11-15\",\"publisher\":\"Springer\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire de chimie théorique (LCT) ; Université Pierre et Marie Curie (UPMC) - Paris VI - CNRS\",\"Méthodes et outils de la chimie quantique ; Laboratoire de Chimie et Physique Quantiques (LCPQ) ; Université Paul Sabatier (UPS) - Toulouse III - CNRS - Université Paul Sabatier (UPS) - Toulouse III - CNRS\",\"Laboratoire des sciences et matériaux pour l\\u0027électronique et d\\u0027automatique (LASMEA) ; Université Blaise Pascal - Clermont-Ferrand II - CNRS\",\"Laboratory of Atomic and Solid State Physics (LASSP) ; Cornell University\",\"DEISA project STOP-Qalm\",\"P. E. Hoggan, J. Maruani, P. Piecuch, G. Delgado-Barrio and E. J. Brandas\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/978-94-007-2076-3\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.upmc.fr/hal-00550057\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.upmc.fr/hal-00550057\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.upmc.fr/hal-00550057\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.upmc.fr/hal-00550057\",\"id\":\"oai:hal.upmc.fr:hal-00550057\"},\"trust\":0.011995912}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00550057v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Toulouse, Julien","Caffarel, Michel","Reinhardt, Peter","Hoggan, Philip","Umrigar, C. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.upmc.fr:hal-00550057"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["acrolein","excited states","quantum Monte Carlo","[CHIM.THEO] Chemical Sciences/Theoretical and/or physical chemistry","[PHYS.PHYS.PHYS-CHEM-PH] Physics/Physics/Chemical Physics","[PHYS.PHYS.PHYS-COMP-PH] Physics/Physics/Computational Physics"]},"trust":{"type":"FLOAT","value":0.011995912},"target_publication_title":{"type":"STRING","value":"Quantum Monte Carlo calculations of electronic excitation energies: the case of the singlet n to pi* (CO) transition in acrolein"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3547372\",\"titles\":[\"Quadruplex Integrated DNA (QuID) Nanosensors for Monitoring Dopamine\"],\"abstracts\":[\"Dopamine is widely innervated throughout the brain and critical for many cognitive and motor functions. Imbalances or loss in dopamine transmission underlie various psychiatric disorders and degenerative diseases. Research involving cellular studies and disease states would benefit from a tool for measuring dopamine transmission. Here we show a Quadruplex Integrated DNA (QuID) nanosensor platform for selective and dynamic detection of dopamine. This nanosensor exploits DNA technology and enzyme recognition systems to optically image dopamine levels. The DNA quadruplex architecture is designed to be compatible in physically constrained environments (110 nm) with high flexibility, homogeneity, and a lower detection limit of 110 µM.\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"dopamine\",\"tyrosinase\",\"enzyme\",\"nanosensor\",\"DNA\",\"dendrimer\"],\"creators\":[\"Morales, Jennifer M.\",\"Skipwith, Christopher G.\",\"Clark, Heather A.\"],\"publicationdate\":\"2015-08-01\",\"publisher\":\"MDPI\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Sensors (Basel, Switzerland)\",\"issn\":\"\",\"eissn\":\"1424-8220\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3390/s150819912\",\"type\":\"doi\"},{\"value\":\"PMC4570402\",\"type\":\"pmc\"},{\"value\":\"26287196\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4570402\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.mdpi.com/1424-8220/15/8/19912\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.mdpi.com/1424-8220/15/8/19912\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.mdpi.com/1424-8220/15/8/19912\",\"id\":\"oai:doaj.org/article:54b2e9ffbaf74be5911d435b84f836b9\"},\"trust\":0.31660652}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3547372"},"target_publication_author_list":{"type":"LIST_STRING","value":["Morales, Jennifer M.","Skipwith, Christopher G.","Clark, Heather A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:54b2e9ffbaf74be5911d435b84f836b9"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","dopamine","tyrosinase","enzyme","nanosensor","DNA","dendrimer"]},"trust":{"type":"FLOAT","value":0.31660652},"target_publication_title":{"type":"STRING","value":"Quadruplex Integrated DNA (QuID) Nanosensors for Monitoring Dopamine"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2015-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/26957\",\"titles\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época\",\"603052\",\"603052\"],\"abstracts\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época. Pradera. 1939.\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"Los Municipios\",\"Edificios\",\"PRADERA\",\"HERNAN BARONA SOSA\"],\"creators\":[\"EIROQUE RAMÍREZ\"],\"publicationdate\":\"1939-01-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"HERNAN BARONA SOSA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/26957\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/39455\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/39455\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/39455\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/39455\"},\"trust\":0.11146337}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/26957"},"target_publication_author_list":{"type":"LIST_STRING","value":["EIROQUE RAMÍREZ"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/39455"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Los Municipios","Edificios","PRADERA","HERNAN BARONA SOSA"]},"trust":{"type":"FLOAT","value":0.11146337},"target_publication_title":{"type":"STRING","value":"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1939-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/26957\",\"titles\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época\",\"603052\",\"603052\"],\"abstracts\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época. Pradera. 1939.\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"Los Municipios\",\"Edificios\",\"PRADERA\",\"HERNAN BARONA SOSA\"],\"creators\":[\"EIROQUE RAMÍREZ\"],\"publicationdate\":\"1939-01-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"HERNAN BARONA SOSA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/26957\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/58567\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/58567\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/58567\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/58567\"},\"trust\":0.40669006}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/26957"},"target_publication_author_list":{"type":"LIST_STRING","value":["EIROQUE RAMÍREZ"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/58567"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Los Municipios","Edificios","PRADERA","HERNAN BARONA SOSA"]},"trust":{"type":"FLOAT","value":0.40669006},"target_publication_title":{"type":"STRING","value":"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1939-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/26957\",\"titles\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época\",\"603052\",\"603052\"],\"abstracts\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época. Pradera. 1939.\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"Los Municipios\",\"Edificios\",\"PRADERA\",\"HERNAN BARONA SOSA\"],\"creators\":[\"EIROQUE RAMÍREZ\"],\"publicationdate\":\"1939-01-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"HERNAN BARONA SOSA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/26957\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/23392\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/23392\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/23392\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/23392\"},\"trust\":0.67666936}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/26957"},"target_publication_author_list":{"type":"LIST_STRING","value":["EIROQUE RAMÍREZ"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/23392"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Los Municipios","Edificios","PRADERA","HERNAN BARONA SOSA"]},"trust":{"type":"FLOAT","value":0.67666936},"target_publication_title":{"type":"STRING","value":"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1939-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/39455\",\"titles\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época\",\"603052\",\"603052\"],\"abstracts\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época. Pradera. 1939.\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"La Gente\",\"El Pueblo\",\"PRADERA\",\"HERNAN BARONA SOSA\"],\"creators\":[\"EIROQUE RAMÍREZ\"],\"publicationdate\":\"1939-01-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"HERNAN BARONA SOSA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/39455\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/26957\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/26957\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/26957\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/26957\"},\"trust\":0.5475743}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/39455"},"target_publication_author_list":{"type":"LIST_STRING","value":["EIROQUE RAMÍREZ"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/26957"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["La Gente","El Pueblo","PRADERA","HERNAN BARONA SOSA"]},"trust":{"type":"FLOAT","value":0.5475743},"target_publication_title":{"type":"STRING","value":"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1939-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/39455\",\"titles\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época\",\"603052\",\"603052\"],\"abstracts\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época. Pradera. 1939.\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"La Gente\",\"El Pueblo\",\"PRADERA\",\"HERNAN BARONA SOSA\"],\"creators\":[\"EIROQUE RAMÍREZ\"],\"publicationdate\":\"1939-01-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"HERNAN BARONA SOSA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/39455\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/58567\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/58567\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/58567\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/58567\"},\"trust\":0.8245662}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/39455"},"target_publication_author_list":{"type":"LIST_STRING","value":["EIROQUE RAMÍREZ"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/58567"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["La Gente","El Pueblo","PRADERA","HERNAN BARONA SOSA"]},"trust":{"type":"FLOAT","value":0.8245662},"target_publication_title":{"type":"STRING","value":"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1939-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/39455\",\"titles\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época\",\"603052\",\"603052\"],\"abstracts\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época. Pradera. 1939.\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"La Gente\",\"El Pueblo\",\"PRADERA\",\"HERNAN BARONA SOSA\"],\"creators\":[\"EIROQUE RAMÍREZ\"],\"publicationdate\":\"1939-01-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"HERNAN BARONA SOSA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/39455\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/23392\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/23392\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/23392\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/23392\"},\"trust\":0.8326182}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/39455"},"target_publication_author_list":{"type":"LIST_STRING","value":["EIROQUE RAMÍREZ"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/23392"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["La Gente","El Pueblo","PRADERA","HERNAN BARONA SOSA"]},"trust":{"type":"FLOAT","value":0.8326182},"target_publication_title":{"type":"STRING","value":"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1939-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/58567\",\"titles\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época\",\"603052\",\"603052\"],\"abstracts\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época. Pradera. 1939.\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"El Transporte\",\"Las Bicicletas y Ca\",\"PRADERA\",\"HERNAN BARONA SOSA\"],\"creators\":[\"EIROQUE RAMÍREZ\"],\"publicationdate\":\"1939-01-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"HERNAN BARONA SOSA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/58567\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/26957\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/26957\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/26957\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/26957\"},\"trust\":0.7304878}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/58567"},"target_publication_author_list":{"type":"LIST_STRING","value":["EIROQUE RAMÍREZ"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/26957"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["El Transporte","Las Bicicletas y Ca","PRADERA","HERNAN BARONA SOSA"]},"trust":{"type":"FLOAT","value":0.7304878},"target_publication_title":{"type":"STRING","value":"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1939-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/58567\",\"titles\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época\",\"603052\",\"603052\"],\"abstracts\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época. Pradera. 1939.\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"El Transporte\",\"Las Bicicletas y Ca\",\"PRADERA\",\"HERNAN BARONA SOSA\"],\"creators\":[\"EIROQUE RAMÍREZ\"],\"publicationdate\":\"1939-01-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"HERNAN BARONA SOSA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/58567\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/39455\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/39455\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/39455\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/39455\"},\"trust\":0.07585168}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/58567"},"target_publication_author_list":{"type":"LIST_STRING","value":["EIROQUE RAMÍREZ"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/39455"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["El Transporte","Las Bicicletas y Ca","PRADERA","HERNAN BARONA SOSA"]},"trust":{"type":"FLOAT","value":0.07585168},"target_publication_title":{"type":"STRING","value":"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1939-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/58567\",\"titles\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época\",\"603052\",\"603052\"],\"abstracts\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época. Pradera. 1939.\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"El Transporte\",\"Las Bicicletas y Ca\",\"PRADERA\",\"HERNAN BARONA SOSA\"],\"creators\":[\"EIROQUE RAMÍREZ\"],\"publicationdate\":\"1939-01-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"HERNAN BARONA SOSA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/58567\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/23392\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/23392\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/23392\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/23392\"},\"trust\":0.06965768}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/58567"},"target_publication_author_list":{"type":"LIST_STRING","value":["EIROQUE RAMÍREZ"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/23392"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["El Transporte","Las Bicicletas y Ca","PRADERA","HERNAN BARONA SOSA"]},"trust":{"type":"FLOAT","value":0.06965768},"target_publication_title":{"type":"STRING","value":"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1939-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/23392\",\"titles\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época\",\"603052\",\"603052\"],\"abstracts\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época. Pradera. 1939.\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"Los Municipios\",\"Ciudad\",\"PRADERA\",\"HERNAN BARONA SOSA\"],\"creators\":[\"EIROQUE RAMÍREZ\"],\"publicationdate\":\"1939-01-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"HERNAN BARONA SOSA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/23392\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/26957\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/26957\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/26957\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/26957\"},\"trust\":0.51610804}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/23392"},"target_publication_author_list":{"type":"LIST_STRING","value":["EIROQUE RAMÍREZ"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/26957"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Los Municipios","Ciudad","PRADERA","HERNAN BARONA SOSA"]},"trust":{"type":"FLOAT","value":0.51610804},"target_publication_title":{"type":"STRING","value":"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1939-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/23392\",\"titles\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época\",\"603052\",\"603052\"],\"abstracts\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época. Pradera. 1939.\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"Los Municipios\",\"Ciudad\",\"PRADERA\",\"HERNAN BARONA SOSA\"],\"creators\":[\"EIROQUE RAMÍREZ\"],\"publicationdate\":\"1939-01-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"HERNAN BARONA SOSA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/23392\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/39455\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/39455\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/39455\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/39455\"},\"trust\":0.10623723}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/23392"},"target_publication_author_list":{"type":"LIST_STRING","value":["EIROQUE RAMÍREZ"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/39455"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Los Municipios","Ciudad","PRADERA","HERNAN BARONA SOSA"]},"trust":{"type":"FLOAT","value":0.10623723},"target_publication_title":{"type":"STRING","value":"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1939-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/23392\",\"titles\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época\",\"603052\",\"603052\"],\"abstracts\":[\"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época. Pradera. 1939.\",\"El Archivo del Patrimonio Fotográfico y Fílmico del Valle del Cauca es responsabilidad de la Biblioteca Departamental del Valle Jorge Garcés Borrero, por convenio de cooperación suscrito con la Secretaria del Cultura Departamental, con el fin de aunar esfuerzos para su conservación, preservación y divulgación del Archivo entre la comunidad Vallecaucana, especialmente entre los estudiantes e investigadores que visitan la Biblioteca, propiciando el su uso y consulta permanente. La universidad Icesi es un colaborador en el proceso de difusión, facilitando la tecnología que permite la consulta de las imágenes.\",\"Valle del Cauca, Gobernación\"],\"language\":\"esl/spa\",\"subjects\":[\"Los Municipios\",\"Ciudad\",\"PRADERA\",\"HERNAN BARONA SOSA\"],\"creators\":[\"EIROQUE RAMÍREZ\"],\"publicationdate\":\"1939-01-01\",\"publisher\":\"Biblioteca Departamental Jorge Garces Borrero\",\"embargoenddate\":\"\",\"contributor\":[\"Biblioteca Departamental Jorge Garces Borrero\",\"HERNAN BARONA SOSA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Digital - Universidad Icesi\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10906/23392\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10906/58567\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10906/58567\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Digital - Universidad Icesi\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Digital - Universidad Icesi\",\"url\":\"http://hdl.handle.net/10906/58567\",\"id\":\"oai:http://www.icesi.edu.co/biblioteca_digital:10906/58567\"},\"trust\":0.5008058}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_publication_id":{"type":"STRING","value":"oai:http://www.icesi.edu.co/biblioteca_digital:10906/23392"},"target_publication_author_list":{"type":"LIST_STRING","value":["EIROQUE RAMÍREZ"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://www.icesi.edu.co/biblioteca_digital:10906/58567"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Los Municipios","Ciudad","PRADERA","HERNAN BARONA SOSA"]},"trust":{"type":"FLOAT","value":0.5008058},"target_publication_title":{"type":"STRING","value":"Plaza central, al fondo la Iglesia parroquial y en primer plano una Berlina vehículo característico de la época"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Digital - Universidad Icesi"},"target_dateofacceptance":{"type":"DATE","value":"1939-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b571ecea16a9824023ee1af16897a582"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1697060\",\"titles\":[\"Cyclopia with shoulder dystocia leading to an obstetric catastrophe: a case report\"],\"abstracts\":[\"Introduction Cyclopia is a rare fetal malformation characterized by a single palpebral fissure and a proboscis associated with severe brain malformations. Approximately 1.05 in 100,000 births including stillbirths are identified as cyclopean. The prevalence is about one in 11,000 to 20,000 in live births and one in 250 during embryogenesis. Case presentation A 30-year-old Indian woman of Asian origin, sixth gravida, was referred to the labor room of our hospital. There were no ultrasound examinations performed during this pregnancy as our patient had not received regular antenatal care. We found out that the head of her baby was already outside the vulva but the remaining parts of the baby were not yet delivered. Further examination was carried out and a diagnosis of shoulder dystocia with intrauterine fetal demise was made. A stillborn baby boy of 3.5 kg was delivered using McRoberts\\u0027 maneuver. The baby was suspected of having features of cyclopia and this was later confirmed by autopsy and anatomic correlation. The mother had a cervical tear which extended into the lower segment of her uterus, thus leading to the rupture of her uterus. There was a massive broad ligament hematoma on the left side of her uterus. A total abdominal hysterectomy was carried out. Conclusion Prenatal diagnosis by ultrasound examination might help in detecting cyclopia and preventing complications associated with this condition. However, in developing countries where women do not receive regular antenatal care and do not undergo prenatal diagnosis, such cases will go undetected. In our case report, the occurrence of shoulder dystocia could be coincidental, as no risk factors were previously noted.\"],\"language\":\"eng\",\"subjects\":[\"Case report\"],\"creators\":[\"Koregol, Mahesh C.\",\"Bellad, Mrutyunjaya B.\",\"Nilgar, Baburao R.\",\"Metgud, Mrityunjay C.\",\"Durdi, Geeta\"],\"publicationdate\":\"2010-05-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Medical Case Reports\",\"issn\":\"\",\"eissn\":\"1752-1947\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1752-1947-4-160\",\"type\":\"doi\"},{\"value\":\"PMC2886082\",\"type\":\"pmc\"},{\"value\":\"20507601\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2886082\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.jmedicalcasereports.com/content/4/1/160\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Medical Case Reports\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.jmedicalcasereports.com/content/4/1/160\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Medical Case Reports\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.jmedicalcasereports.com/content/4/1/160\",\"id\":\"oai:doaj.org/article:5a9244dc5ad9491fb199b0a9f0f90d09\"},\"trust\":0.2633224}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1697060"},"target_publication_author_list":{"type":"LIST_STRING","value":["Koregol, Mahesh C.","Bellad, Mrutyunjaya B.","Nilgar, Baburao R.","Metgud, Mrityunjay C.","Durdi, Geeta"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:5a9244dc5ad9491fb199b0a9f0f90d09"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Case report"]},"trust":{"type":"FLOAT","value":0.2633224},"target_publication_title":{"type":"STRING","value":"Cyclopia with shoulder dystocia leading to an obstetric catastrophe: a case report"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2010-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:aperto.unito.it:2318/50597\",\"titles\":[\"A phase II study of paclitaxel in advanced bronchioloalveolar carcinoma (EORTC trial 08956)\"],\"abstracts\":[\"The incidence of bronchioloalveolar carcinoma (BAC) has risen steadily over the last decades along with the increasing frequency of adenocarcinomas. BAC is relatively resistant to commonly used chemotherapy regimens. A phase II study with single agent paclitaxel in patients with stages IIIB, IV or recurrent BAC was performed. EXPERIMENTAL DESIGN: Patients with BAC with at least one target bidimensionally measurable lesion staged as unresectable stages IIIB, IV or recurrent disease, not previously irradiated; ECOG performance status 0-2; life expectancy greater than 3 months; age range between 18 and 75, received paclitaxel at a dose of 200 mg/m2 i.v. as 3h continuous infusion on day 1 every 21 days. Treatment was continued until progression or up to a maximum of six cycles. RESULTS: Nineteen patients were eligible. Median number of cycles was 3 (range 0-6); 35% of patients received the planned six cycles of chemotherapy. One patient died of unrelated cause before the start of treatment. Both hematological and non-hematological toxicities were generally mild. Only one partial response (PR) was observed among the 18 eligible patients who started protocol treatment, with a response rate of 5.6% (95% CI: 0.1-27.3%). After an independent review, two PR were confirmed, for a response rate of 11.1% (95% CI: 1.4-34.7%); nine patients had stable disease (50.0%), three patients had progressive disease (11.1%) and four patients were not assessable (22.2%). Median survival was 8.6 months (95% CI: 5.8-14.5) and 1-year survival was 35.0% (95% CI: 14.1-55.8). Median progression free survival for all patients was 2.2 months (95% CI: 1.5-6.0). The study was terminated due to the low response rate. CONCLUSIONS: Paclitaxel as single agent in stages IIIB-IV BAC was well tolerated and manageable but of limited efficacy. BAC should not be excluded from trials of new forms of chemotherapy.\"],\"language\":\"ita\",\"subjects\":[],\"creators\":[\"Scagliotti, Giorgio Vittorio\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Archivio Istituzionale\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2318/50597\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hdl.handle.net/2078.1/90361-PDF_01\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2078.1/90361-PDF_01\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://hdl.handle.net/2078.1/90361-PDF_01\",\"id\":\"oai:RePEc:ner:louvai:info:hdl:2078.1/90361\"},\"trust\":0.71569514}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Archivio Istituzionale"},"target_publication_id":{"type":"STRING","value":"oai:aperto.unito.it:2318/50597"},"target_publication_author_list":{"type":"LIST_STRING","value":["Scagliotti, Giorgio Vittorio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ner:louvai:info:hdl:2078.1/90361"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.71569514},"target_publication_title":{"type":"STRING","value":"A phase II study of paclitaxel in advanced bronchioloalveolar carcinoma (EORTC trial 08956)"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::89fcd07f20b6785b92134bd6c1d0fa42"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ner:louvai:info:hdl:2078.1/90361\",\"titles\":[\"A phase II study of paclitaxel in advanced bronchioloalveolar carcinoma (EORTC trial 08956).\"],\"abstracts\":[\"Purpose: The incidence of bronchioloalveolar carcinoma (BAC) has risen steadily over the last decades along with the increasing frequency of adenocarcinomas. BAC is relatively resistant to commonly used chemotherapy regimens. A phase II study with single agent paclitaxel in patients with stages IIIB, IV or recurrent BAC was performed. Experimental design: Patients with BAC with at least one target bidimensionally measurable lesion staged as unresectable stages IIIB, IV or recurrent disease, not previously irradiated; ECOG performance status 0–2; life expectancy greater than 3 months; age range between 18 and 75, received paclitaxel at a dose of 200 mg/m2 i.v. as 3 h continuous infusion on day 1 every 21 days. Treatment was continued until progression or up to a maximum of six cycles. Results: Nineteen patients were eligible. Median number of cycles was 3 (range 0–6); 35% of patients received the planned six cycles of chemotherapy. One patient died of unrelated cause before the start of treatment. Both hematological and non-hematological toxicities were generally mild. Only one partial response (PR) was observed among the 18 eligible patients who started protocol treatment, with a response rate of 5.6% (95% CI: 0.1–27.3%). After an independent review, two PR were confirmed, for a response rate of 11.1% (95% CI: 1.4–34.7%); nine patients had stable disease (50.0%), three patients had progressive disease (11.1%) and four patients were not assessable (22.2%). Median survival was 8.6 months (95% CI: 5.8–14.5) and 1-year survival was 35.0% (95% CI: 14.1–55.8). Median progression free survival for all patients was 2.2 months (95% CI: 1.5–6.0). The study was terminated due to the low response rate. Conclusions: Paclitaxel\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Legrand, Catherine\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2078.1/90361-PDF_01\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/2318/50597\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2318/50597\",\"license\":\"OPEN\",\"hostedby\":\"Archivio Istituzionale\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Archivio Istituzionale\",\"url\":\"http://hdl.handle.net/2318/50597\",\"id\":\"oai:aperto.unito.it:2318/50597\"},\"trust\":0.5746729}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ner:louvai:info:hdl:2078.1/90361"},"target_publication_author_list":{"type":"LIST_STRING","value":["Legrand, Catherine"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:aperto.unito.it:2318/50597"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::89fcd07f20b6785b92134bd6c1d0fa42"},"trust":{"type":"FLOAT","value":0.5746729},"target_publication_title":{"type":"STRING","value":"A phase II study of paclitaxel in advanced bronchioloalveolar carcinoma (EORTC trial 08956)."},"provenance_datasource_name":{"type":"STRING","value":"Archivio Istituzionale"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:edutice-00001023v1\",\"titles\":[\"Les quatre saisons des questions d\\u0027apprentissage en EAO\"],\"abstracts\":[\"Partie 2 (p. 111-117) : http://www.epi.asso.fr/revue/55som.htm#b56p111\\u003cbr /\\u003ePartie 3 (p. 199-206) : http://www.epi.asso.fr/revue/55som.htm#b57p199\\u003cbr /\\u003ePartie 4 (p. 171-188) : http://www.epi.asso.fr/revue/55som.htm#b58p171\\u003cbr /\\u003e\\u003cbr /\\u003eSommaires des numéros :\\u003cbr /\\u003ehttp://archive-edutice.ccsd.cnrs.fr/edutice-00000843\\u003cbr /\\u003ehttp://archive-edutice.ccsd.cnrs.fr/edutice-00000844\\u003cbr /\\u003ehttp://archive-edutice.ccsd.cnrs.fr/edutice-00000845\\u003cbr /\\u003ehttp://archive-edutice.ccsd.cnrs.fr/edutice-00000846\",\"L\\u0027Enseignement Assisté par Ordinateur sous toutes ses formes.\\u003cBR\\u003e\\u003cbr /\\u003e1re partie : l\\u0027automne des questions oui-non [b55p131] \\u003cbr /\\u003e2e partie : l\\u0027hiver des QCM [b56p111] \\u003cbr /\\u003e3e partie : le printemps des exercices à trou [b57p199] \\u003cbr /\\u003e4e partie : l\\u0027été, moisson de questions ouvertes [b58p171]\"],\"language\":\"fra/fre\",\"subjects\":[\"didacticiel\",\"conception \",\"recherche pédagogique \",\"pédagogie \",\"rubrique technique \",\"TICE \",\"formation \",\"informatique \",\"enseignement \",\"[SHS.EDU] Humanities and Social Sciences/Education\"],\"creators\":[\"Riche, Nicole\"],\"publicationdate\":\"1989-09-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Ordinateur pour l\\u0027étudiant (OPE) ; Université Paris VII - Paris Diderot - Université Pierre et Marie Curie (UPMC) - Paris VI\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://edutice.archives-ouvertes.fr/edutice-00001023\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://edutice.archives-ouvertes.fr/edutice-00001023\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://edutice.archives-ouvertes.fr/edutice-00001023\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://edutice.archives-ouvertes.fr/edutice-00001023\",\"id\":\"oai:edutice.archives-ouvertes.fr:edutice-00001023\"},\"trust\":0.9223909}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:edutice-00001023v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Riche, Nicole"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:edutice.archives-ouvertes.fr:edutice-00001023"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["didacticiel","conception ","recherche pédagogique ","pédagogie ","rubrique technique ","TICE ","formation ","informatique ","enseignement ","[SHS.EDU] Humanities and Social Sciences/Education"]},"trust":{"type":"FLOAT","value":0.9223909},"target_publication_title":{"type":"STRING","value":"Les quatre saisons des questions d\u0027apprentissage en EAO"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1989-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:edutice.archives-ouvertes.fr:edutice-00001023\",\"titles\":[\"Les quatre saisons des questions d\\u0027apprentissage en EAO\"],\"abstracts\":[\"L\\u0027Enseignement Assisté par Ordinateur sous toutes ses formes.\\u003cBR\\u003e\\u003cbr /\\u003e1re partie : l\\u0027automne des questions oui-non [b55p131] \\u003cbr /\\u003e2e partie : l\\u0027hiver des QCM [b56p111] \\u003cbr /\\u003e3e partie : le printemps des exercices à trou [b57p199] \\u003cbr /\\u003e4e partie : l\\u0027été, moisson de questions ouvertes [b58p171]\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:EDU] Humanities and Social Sciences/Education\",\"[SHS:EDU] Sciences de l\\u0027Homme et Société/Education\",\"enseignement \",\"formation \",\"informatique \",\"TICE \",\"pédagogie \",\"rubrique technique \",\"recherche pédagogique \",\"conception \",\"didacticiel\"],\"creators\":[\"Riche, Nicole\"],\"publicationdate\":\"1989-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://edutice.archives-ouvertes.fr/edutice-00001023\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://edutice.archives-ouvertes.fr/edutice-00001023\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://edutice.archives-ouvertes.fr/edutice-00001023\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://edutice.archives-ouvertes.fr/edutice-00001023\",\"id\":\"oai:HAL:edutice-00001023v1\"},\"trust\":0.89259595}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:edutice.archives-ouvertes.fr:edutice-00001023"},"target_publication_author_list":{"type":"LIST_STRING","value":["Riche, Nicole"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:edutice-00001023v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:EDU] Humanities and Social Sciences/Education","[SHS:EDU] Sciences de l\u0027Homme et Société/Education","enseignement ","formation ","informatique ","TICE ","pédagogie ","rubrique technique ","recherche pédagogique ","conception ","didacticiel"]},"trust":{"type":"FLOAT","value":0.89259595},"target_publication_title":{"type":"STRING","value":"Les quatre saisons des questions d\u0027apprentissage en EAO"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1989-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2084258\",\"titles\":[\"The Stealth Episome: Suppression of Gene Expression on the Excised Genomic Island PPHGI-1 from Pseudomonas syringae pv. phaseolicola\"],\"abstracts\":[\"Pseudomonas syringae pv. phaseolicola is the causative agent of halo blight in the common bean, Phaseolus vulgaris. P. syringae pv. phaseolicola race 4 strain 1302A contains the avirulence gene avrPphB (syn. hopAR1), which resides on PPHGI-1, a 106 kb genomic island. Loss of PPHGI-1 from P. syringae pv. phaseolicola 1302A following exposure to the hypersensitive resistance response (HR) leads to the evolution of strains with altered virulence. Here we have used fluorescent protein reporter systems to gain insight into the mobility of PPHGI-1. Confocal imaging of dual-labelled P. syringae pv. phaseolicola 1302A strain, F532 (dsRFP in chromosome and eGFP in PPHGI-1), revealed loss of PPHGI-1::eGFP encoded fluorescence during plant infection and when grown in vitro on extracted leaf apoplastic fluids. Fluorescence-activated cell sorting (FACS) of fluorescent and non-fluorescent PPHGI-1::eGFP F532 populations showed that cells lost fluorescence not only when the GI was deleted, but also when it had excised and was present as a circular episome. In addition to reduced expression of eGFP, quantitative PCR on sub-populations separated by FACS showed that transcription of other genes on PPHGI-1 (avrPphB and xerC) was also greatly reduced in F532 cells harbouring the excised PPHGI-1::eGFP episome. Our results show how virulence determinants located on mobile pathogenicity islands may be hidden from detection by host surveillance systems through the suppression of gene expression in the episomal state.\",\"Author Summary Bacterial pathogens evolve rapidly through the transfer of large segments, or genomic islands (GIs), of DNA. We study the mobility of an island named PPHGI-1 in Pseudomonas syringae pv. phaseolicola that causes halo-blight disease of bean. The exposure of P. syringae pv. phaseolicola to plant defenses triggers the excision of PPHGI-1, creation of a circular episomal form and finally deletion of the GI or its transfer to other bacteria. We planned to examine deletion of PPHGI-1 within infected leaves, and we generated strains that expressed differently coloured fluorescent proteins from genes in the island or elsewhere on the chromosome. Loss of the specific fluorescence derived from the GI was expected to show deletion of PPHGI-1. However, collecting fluorescent and non-fluorescent bacteria showed that PPHGI-1 was usually not lost, but expressed its component genes very poorly when in the circularized state. Bacteria were therefore able to carry a hidden suite of genes that become activated when re-inserted into the chromosome. The “stealthy” movement of the island is beneficial to P. syringae pv. phaseolicola because genes on PPHGI-1 encode proteins that activate plant defenses. Similar gene silencing on episomes may occur in other pathogens and contribute to the evolution of microbial pathogenicity to animals and plants.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\",\"Biology\",\"Microbiology\",\"Microbial Evolution\",\"Plant Science\",\"Plant Pathology\",\"Plant Pathogens\"],\"creators\":[\"Godfrey, Scott A. C.\",\"Lovell, Helen C.\",\"Mansfield, John W.\",\"Corry, David S.\",\"Jackson, Robert W.\",\"Arnold, Dawn L.\"],\"publicationdate\":\"2011-03-01\",\"publisher\":\"Public Library of Science\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"PLoS Pathogens\",\"issn\":\"1553-7366\",\"eissn\":\"1553-7374\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1371/journal.ppat.1002010\",\"type\":\"doi\"},{\"value\":\"PMC3068993\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3068993\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://centaur.reading.ac.uk/20824/1/Godfrey_Path.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Central Archive at the University of Reading\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://centaur.reading.ac.uk/20824/1/Godfrey_Path.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Central Archive at the University of Reading\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://centaur.reading.ac.uk/20824/1/Godfrey_Path.pdf\",\"id\":\"oai:centaur.reading.ac.uk:20824\"},\"trust\":0.9672724}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2084258"},"target_publication_author_list":{"type":"LIST_STRING","value":["Godfrey, Scott A. C.","Lovell, Helen C.","Mansfield, John W.","Corry, David S.","Jackson, Robert W.","Arnold, Dawn L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:centaur.reading.ac.uk:20824"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article","Biology","Microbiology","Microbial Evolution","Plant Science","Plant Pathology","Plant Pathogens"]},"trust":{"type":"FLOAT","value":0.9672724},"target_publication_title":{"type":"STRING","value":"The Stealth Episome: Suppression of Gene Expression on the Excised Genomic Island PPHGI-1 from Pseudomonas syringae pv. phaseolicola"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2011-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2084258\",\"titles\":[\"The Stealth Episome: Suppression of Gene Expression on the Excised Genomic Island PPHGI-1 from Pseudomonas syringae pv. phaseolicola\"],\"abstracts\":[\"Pseudomonas syringae pv. phaseolicola is the causative agent of halo blight in the common bean, Phaseolus vulgaris. P. syringae pv. phaseolicola race 4 strain 1302A contains the avirulence gene avrPphB (syn. hopAR1), which resides on PPHGI-1, a 106 kb genomic island. Loss of PPHGI-1 from P. syringae pv. phaseolicola 1302A following exposure to the hypersensitive resistance response (HR) leads to the evolution of strains with altered virulence. Here we have used fluorescent protein reporter systems to gain insight into the mobility of PPHGI-1. Confocal imaging of dual-labelled P. syringae pv. phaseolicola 1302A strain, F532 (dsRFP in chromosome and eGFP in PPHGI-1), revealed loss of PPHGI-1::eGFP encoded fluorescence during plant infection and when grown in vitro on extracted leaf apoplastic fluids. Fluorescence-activated cell sorting (FACS) of fluorescent and non-fluorescent PPHGI-1::eGFP F532 populations showed that cells lost fluorescence not only when the GI was deleted, but also when it had excised and was present as a circular episome. In addition to reduced expression of eGFP, quantitative PCR on sub-populations separated by FACS showed that transcription of other genes on PPHGI-1 (avrPphB and xerC) was also greatly reduced in F532 cells harbouring the excised PPHGI-1::eGFP episome. Our results show how virulence determinants located on mobile pathogenicity islands may be hidden from detection by host surveillance systems through the suppression of gene expression in the episomal state.\",\"Author Summary Bacterial pathogens evolve rapidly through the transfer of large segments, or genomic islands (GIs), of DNA. We study the mobility of an island named PPHGI-1 in Pseudomonas syringae pv. phaseolicola that causes halo-blight disease of bean. The exposure of P. syringae pv. phaseolicola to plant defenses triggers the excision of PPHGI-1, creation of a circular episomal form and finally deletion of the GI or its transfer to other bacteria. We planned to examine deletion of PPHGI-1 within infected leaves, and we generated strains that expressed differently coloured fluorescent proteins from genes in the island or elsewhere on the chromosome. Loss of the specific fluorescence derived from the GI was expected to show deletion of PPHGI-1. However, collecting fluorescent and non-fluorescent bacteria showed that PPHGI-1 was usually not lost, but expressed its component genes very poorly when in the circularized state. Bacteria were therefore able to carry a hidden suite of genes that become activated when re-inserted into the chromosome. The “stealthy” movement of the island is beneficial to P. syringae pv. phaseolicola because genes on PPHGI-1 encode proteins that activate plant defenses. Similar gene silencing on episomes may occur in other pathogens and contribute to the evolution of microbial pathogenicity to animals and plants.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\",\"Biology\",\"Microbiology\",\"Microbial Evolution\",\"Plant Science\",\"Plant Pathology\",\"Plant Pathogens\"],\"creators\":[\"Godfrey, Scott A. C.\",\"Lovell, Helen C.\",\"Mansfield, John W.\",\"Corry, David S.\",\"Jackson, Robert W.\",\"Arnold, Dawn L.\"],\"publicationdate\":\"2011-03-01\",\"publisher\":\"Public Library of Science\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"PLoS Pathogens\",\"issn\":\"1553-7366\",\"eissn\":\"1553-7374\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1371/journal.ppat.1002010\",\"type\":\"doi\"},{\"value\":\"PMC3068993\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3068993\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1371/journal.ppat.1002010\",\"license\":\"OPEN\",\"hostedby\":\"Central Archive at the University of Reading\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1371/journal.ppat.1002010\",\"license\":\"OPEN\",\"hostedby\":\"Central Archive at the University of Reading\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Central Archive at the University of Reading\",\"url\":\"http://dx.doi.org/10.1371/journal.ppat.1002010\",\"id\":\"oai:centaur.reading.ac.uk:20824\"},\"trust\":0.10628718}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2084258"},"target_publication_author_list":{"type":"LIST_STRING","value":["Godfrey, Scott A. C.","Lovell, Helen C.","Mansfield, John W.","Corry, David S.","Jackson, Robert W.","Arnold, Dawn L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:centaur.reading.ac.uk:20824"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b29eed44276144e4e8103a661f9a78b7"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article","Biology","Microbiology","Microbial Evolution","Plant Science","Plant Pathology","Plant Pathogens"]},"trust":{"type":"FLOAT","value":0.10628718},"target_publication_title":{"type":"STRING","value":"The Stealth Episome: Suppression of Gene Expression on the Excised Genomic Island PPHGI-1 from Pseudomonas syringae pv. phaseolicola"},"provenance_datasource_name":{"type":"STRING","value":"Central Archive at the University of Reading"},"target_dateofacceptance":{"type":"DATE","value":"2011-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:centaur.reading.ac.uk:20824\",\"titles\":[\"The stealth episome: suppression of gene expression on the excised genomic island PPHGI-1 from Pseudomonas syringae pv. phaseolicola\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Godfrey, Scott A. C.\",\"Lovell, Helen C.\",\"Mansfield, John W.\",\"Corry, David S.\",\"Jackson, Robert W.\",\"Arnold, Dawn L.\"],\"publicationdate\":\"2011-03-31\",\"publisher\":\"Public Library of Science\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Central Archive at the University of Reading\"],\"pids\":[{\"value\":\"10.1371/journal.ppat.1002010\",\"type\":\"doi\"},{\"value\":\"PMC3068993\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://dx.doi.org/10.1371/journal.ppat.1002010\",\"license\":\"OPEN\",\"hostedby\":\"Central Archive at the University of Reading\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3068993\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3068993\",\"id\":\"oai:europepmc.org:2084258\"},\"trust\":0.7682777}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Central Archive at the University of Reading"},"target_publication_id":{"type":"STRING","value":"oai:centaur.reading.ac.uk:20824"},"target_publication_author_list":{"type":"LIST_STRING","value":["Godfrey, Scott A. C.","Lovell, Helen C.","Mansfield, John W.","Corry, David S.","Jackson, Robert W.","Arnold, Dawn L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2084258"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.7682777},"target_publication_title":{"type":"STRING","value":"The stealth episome: suppression of gene expression on the excised genomic island PPHGI-1 from Pseudomonas syringae pv. phaseolicola"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-03-31"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b29eed44276144e4e8103a661f9a78b7"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:centaur.reading.ac.uk:20824\",\"titles\":[\"The stealth episome: suppression of gene expression on the excised genomic island PPHGI-1 from Pseudomonas syringae pv. phaseolicola\"],\"abstracts\":[\"Pseudomonas syringae pv. phaseolicola is the causative agent of halo blight in the common bean, Phaseolus vulgaris. P. syringae pv. phaseolicola race 4 strain 1302A contains the avirulence gene avrPphB (syn. hopAR1), which resides on PPHGI-1, a 106 kb genomic island. Loss of PPHGI-1 from P. syringae pv. phaseolicola 1302A following exposure to the hypersensitive resistance response (HR) leads to the evolution of strains with altered virulence. Here we have used fluorescent protein reporter systems to gain insight into the mobility of PPHGI-1. Confocal imaging of dual-labelled P. syringae pv. phaseolicola 1302A strain, F532 (dsRFP in chromosome and eGFP in PPHGI-1), revealed loss of PPHGI-1::eGFP encoded fluorescence during plant infection and when grown in vitro on extracted leaf apoplastic fluids. Fluorescence-activated cell sorting (FACS) of fluorescent and non-fluorescent PPHGI-1::eGFP F532 populations showed that cells lost fluorescence not only when the GI was deleted, but also when it had excised and was present as a circular episome. In addition to reduced expression of eGFP, quantitative PCR on sub-populations separated by FACS showed that transcription of other genes on PPHGI-1 (avrPphB and xerC) was also greatly reduced in F532 cells harbouring the excised PPHGI-1::eGFP episome. Our results show how virulence determinants located on mobile pathogenicity islands may be hidden from detection by host surveillance systems through the suppression of gene expression in the episomal state.\",\"Author Summary Bacterial pathogens evolve rapidly through the transfer of large segments, or genomic islands (GIs), of DNA. We study the mobility of an island named PPHGI-1 in Pseudomonas syringae pv. phaseolicola that causes halo-blight disease of bean. The exposure of P. syringae pv. phaseolicola to plant defenses triggers the excision of PPHGI-1, creation of a circular episomal form and finally deletion of the GI or its transfer to other bacteria. We planned to examine deletion of PPHGI-1 within infected leaves, and we generated strains that expressed differently coloured fluorescent proteins from genes in the island or elsewhere on the chromosome. Loss of the specific fluorescence derived from the GI was expected to show deletion of PPHGI-1. However, collecting fluorescent and non-fluorescent bacteria showed that PPHGI-1 was usually not lost, but expressed its component genes very poorly when in the circularized state. Bacteria were therefore able to carry a hidden suite of genes that become activated when re-inserted into the chromosome. The “stealthy” movement of the island is beneficial to P. syringae pv. phaseolicola because genes on PPHGI-1 encode proteins that activate plant defenses. Similar gene silencing on episomes may occur in other pathogens and contribute to the evolution of microbial pathogenicity to animals and plants.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Godfrey, Scott A. C.\",\"Lovell, Helen C.\",\"Mansfield, John W.\",\"Corry, David S.\",\"Jackson, Robert W.\",\"Arnold, Dawn L.\"],\"publicationdate\":\"2011-03-31\",\"publisher\":\"Public Library of Science\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Central Archive at the University of Reading\"],\"pids\":[{\"value\":\"10.1371/journal.ppat.1002010\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://dx.doi.org/10.1371/journal.ppat.1002010\",\"license\":\"OPEN\",\"hostedby\":\"Central Archive at the University of Reading\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"Pseudomonas syringae pv. phaseolicola is the causative agent of halo blight in the common bean, Phaseolus vulgaris. P. syringae pv. phaseolicola race 4 strain 1302A contains the avirulence gene avrPphB (syn. hopAR1), which resides on PPHGI-1, a 106 kb genomic island. Loss of PPHGI-1 from P. syringae pv. phaseolicola 1302A following exposure to the hypersensitive resistance response (HR) leads to the evolution of strains with altered virulence. Here we have used fluorescent protein reporter systems to gain insight into the mobility of PPHGI-1. Confocal imaging of dual-labelled P. syringae pv. phaseolicola 1302A strain, F532 (dsRFP in chromosome and eGFP in PPHGI-1), revealed loss of PPHGI-1::eGFP encoded fluorescence during plant infection and when grown in vitro on extracted leaf apoplastic fluids. Fluorescence-activated cell sorting (FACS) of fluorescent and non-fluorescent PPHGI-1::eGFP F532 populations showed that cells lost fluorescence not only when the GI was deleted, but also when it had excised and was present as a circular episome. In addition to reduced expression of eGFP, quantitative PCR on sub-populations separated by FACS showed that transcription of other genes on PPHGI-1 (avrPphB and xerC) was also greatly reduced in F532 cells harbouring the excised PPHGI-1::eGFP episome. Our results show how virulence determinants located on mobile pathogenicity islands may be hidden from detection by host surveillance systems through the suppression of gene expression in the episomal state.\",\"Author Summary Bacterial pathogens evolve rapidly through the transfer of large segments, or genomic islands (GIs), of DNA. We study the mobility of an island named PPHGI-1 in Pseudomonas syringae pv. phaseolicola that causes halo-blight disease of bean. The exposure of P. syringae pv. phaseolicola to plant defenses triggers the excision of PPHGI-1, creation of a circular episomal form and finally deletion of the GI or its transfer to other bacteria. We planned to examine deletion of PPHGI-1 within infected leaves, and we generated strains that expressed differently coloured fluorescent proteins from genes in the island or elsewhere on the chromosome. Loss of the specific fluorescence derived from the GI was expected to show deletion of PPHGI-1. However, collecting fluorescent and non-fluorescent bacteria showed that PPHGI-1 was usually not lost, but expressed its component genes very poorly when in the circularized state. Bacteria were therefore able to carry a hidden suite of genes that become activated when re-inserted into the chromosome. The “stealthy” movement of the island is beneficial to P. syringae pv. phaseolicola because genes on PPHGI-1 encode proteins that activate plant defenses. Similar gene silencing on episomes may occur in other pathogens and contribute to the evolution of microbial pathogenicity to animals and plants.\"]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3068993\",\"id\":\"oai:europepmc.org:2084258\"},\"trust\":0.52868384}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Central Archive at the University of Reading"},"target_publication_id":{"type":"STRING","value":"oai:centaur.reading.ac.uk:20824"},"target_publication_author_list":{"type":"LIST_STRING","value":["Godfrey, Scott A. C.","Lovell, Helen C.","Mansfield, John W.","Corry, David S.","Jackson, Robert W.","Arnold, Dawn L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2084258"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"trust":{"type":"FLOAT","value":0.52868384},"target_publication_title":{"type":"STRING","value":"The stealth episome: suppression of gene expression on the excised genomic island PPHGI-1 from Pseudomonas syringae pv. phaseolicola"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-03-31"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b29eed44276144e4e8103a661f9a78b7"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:centaur.reading.ac.uk:20824\",\"titles\":[\"The stealth episome: suppression of gene expression on the excised genomic island PPHGI-1 from Pseudomonas syringae pv. phaseolicola\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Godfrey, Scott A. C.\",\"Lovell, Helen C.\",\"Mansfield, John W.\",\"Corry, David S.\",\"Jackson, Robert W.\",\"Arnold, Dawn L.\"],\"publicationdate\":\"2011-03-31\",\"publisher\":\"Public Library of Science\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Central Archive at the University of Reading\"],\"pids\":[{\"value\":\"10.1371/journal.ppat.1002010\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://dx.doi.org/10.1371/journal.ppat.1002010\",\"license\":\"OPEN\",\"hostedby\":\"Central Archive at the University of Reading\",\"instancetype\":\"Article\"},{\"url\":\"http://centaur.reading.ac.uk/20824/1/Godfrey_Path.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Central Archive at the University of Reading\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://centaur.reading.ac.uk/20824/1/Godfrey_Path.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Central Archive at the University of Reading\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://centaur.reading.ac.uk/20824/1/Godfrey_Path.pdf\",\"id\":\"oai:centaur.reading.ac.uk:20824\"},\"trust\":0.91106445}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Central Archive at the University of Reading"},"target_publication_id":{"type":"STRING","value":"oai:centaur.reading.ac.uk:20824"},"target_publication_author_list":{"type":"LIST_STRING","value":["Godfrey, Scott A. C.","Lovell, Helen C.","Mansfield, John W.","Corry, David S.","Jackson, Robert W.","Arnold, Dawn L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:centaur.reading.ac.uk:20824"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"trust":{"type":"FLOAT","value":0.91106445},"target_publication_title":{"type":"STRING","value":"The stealth episome: suppression of gene expression on the excised genomic island PPHGI-1 from Pseudomonas syringae pv. phaseolicola"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2011-03-31"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b29eed44276144e4e8103a661f9a78b7"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:localhost:10336/8002\",\"titles\":[\"Religion, Marketing and Market: An Adjustment in the Language of Faith\"],\"abstracts\":[\"O presente trabalho se propõe fazer uma análise de categorias sociais que a primeira vista não tem proximidade, na verdade, podem, inclusive, parecer antagônicas. Trata-se das relações entre Religião, Marketing e Mercado. O trabalho se apóia num referencial teórico mais próximo das ciências sociais, todavia, considera a Religião, em sua expressão institucional –a igreja– como um empreendimento social, uma empresa dos tempos modernos. Procura demonstrar que, para aderir ao mundo moderno, plasmado pela idéia de competição e consumo da sociedade capitalista, a religião reorganizou sua linguagem para atender as exigências desses tempos, já considerados Pós-modernos. A análise é feita a partir do caso brasileiro que, como muitos paises da América Latina, acomodam no seu tecido social, as mais recentes expressões da religião cristã, em especial, os grupos evangélicos que pululam as periferias das grandes cidades desse  continente americano.\"],\"language\":\"und\",\"subjects\":[\"Marketing, Religião, Mercado, Modernidade e Pós-Modernidade.\"],\"creators\":[\"L Jardilino, José Rubens\"],\"publicationdate\":\"2010-05-22\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"edocUR\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10336/8002\",\"license\":\"OPEN\",\"hostedby\":\"edocUR\",\"instancetype\":\"Article\"},{\"url\":\"http://revistas.urosario.edu.co/index.php/empresa/article/view/927\",\"license\":\"OPEN\",\"hostedby\":\"Universidad \\u0026 Empresa\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://revistas.urosario.edu.co/index.php/empresa/article/view/927\",\"license\":\"OPEN\",\"hostedby\":\"Universidad \\u0026 Empresa\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://revistas.urosario.edu.co/index.php/empresa/article/view/927\",\"id\":\"oai:doaj.org/article:db017f618d604639bb509b6afbb6aeda\"},\"trust\":0.72086716}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"edocUR"},"target_publication_id":{"type":"STRING","value":"oai:localhost:10336/8002"},"target_publication_author_list":{"type":"LIST_STRING","value":["L Jardilino, José Rubens"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:db017f618d604639bb509b6afbb6aeda"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Marketing, Religião, Mercado, Modernidade e Pós-Modernidade."]},"trust":{"type":"FLOAT","value":0.72086716},"target_publication_title":{"type":"STRING","value":"Religion, Marketing and Market: An Adjustment in the Language of Faith"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2010-05-22"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::3546ab441e56fa333f8b44b610d95691"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00210175v1\",\"titles\":[\"Orientation of crystals of blue phases by electric fields\"],\"abstracts\":[\"Blue Phases are cubic crystals with large unit cells. In two systems we studied we find experimentally that they orient with their [100] axis parallel to an electric field, E. By analysing the non-linear polarizability, which we describe in terms of the relevant fourth rank tensor, we show that cubic blue phase crystals are absolutely stable with their four-fold or threefold axis directed along E, depending on the sign of this tensor.\"],\"language\":\"eng\",\"subjects\":[\"cholesteric liquid crystals\",\"molecular orientation\",\"polarisability\",\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Pierański, P.\",\"Cladis, P. E.\",\"Garel, T.\",\"Barbet-Massin, R.\"],\"publicationdate\":\"1986-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphys:01986004701013900\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00210175\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00210175\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00210175\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00210175\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00210175\"},\"trust\":0.8613124}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00210175v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pierański, P.","Cladis, P. E.","Garel, T.","Barbet-Massin, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00210175"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["cholesteric liquid crystals","molecular orientation","polarisability","[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.8613124},"target_publication_title":{"type":"STRING","value":"Orientation of crystals of blue phases by electric fields"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1986-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00210175\",\"titles\":[\"Orientation of crystals of blue phases by electric fields\"],\"abstracts\":[\"Blue Phases are cubic crystals with large unit cells. In two systems we studied we find experimentally that they orient with their [100] axis parallel to an electric field, E. By analysing the non-linear polarizability, which we describe in terms of the relevant fourth rank tensor, we show that cubic blue phase crystals are absolutely stable with their four-fold or threefold axis directed along E, depending on the sign of this tensor.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\",\"cholesteric liquid crystals\",\"molecular orientation\",\"polarisability\"],\"creators\":[\"Pierański, P.\",\"Cladis, P. E.\",\"Garel, T.\",\"Barbet-Massin, R.\"],\"publicationdate\":\"1986-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphys:01986004701013900\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00210175\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00210175\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00210175\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00210175\",\"id\":\"oai:HAL:jpa-00210175v1\"},\"trust\":0.5632198}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00210175"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pierański, P.","Cladis, P. E.","Garel, T.","Barbet-Massin, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00210175v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens","cholesteric liquid crystals","molecular orientation","polarisability"]},"trust":{"type":"FLOAT","value":0.5632198},"target_publication_title":{"type":"STRING","value":"Orientation of crystals of blue phases by electric fields"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1986-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2937256\",\"titles\":[\"Significant Increase in the Prevalence of Multiple Sclerosis in Iran in 2011\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Letter to the Editor\"],\"creators\":[\"Izadi, Sadegh\",\"Nikseresht, Alireza\",\"Sharifian, Maryam\",\"Sahraian, Mohammad Ali\",\"Hamidian Jahromi, Alireza\",\"Aghighi, Mohammad\",\"Heidary, Alireza\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"Shiraz University of Medical Sciences\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Iranian Journal of Medical Sciences\",\"issn\":\"0253-0716\",\"eissn\":\"1735-3688\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC3957017\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3957017\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://ijms.sums.ac.ir/index.php/IJMS/article/view/596/141\",\"license\":\"OPEN\",\"hostedby\":\"Iranian Journal of Medical Sciences\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://ijms.sums.ac.ir/index.php/IJMS/article/view/596/141\",\"license\":\"OPEN\",\"hostedby\":\"Iranian Journal of Medical Sciences\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://ijms.sums.ac.ir/index.php/IJMS/article/view/596/141\",\"id\":\"oai:doaj.org/article:25a6c0a35d804466b100ac67ee0605ad\"},\"trust\":0.5385908}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2937256"},"target_publication_author_list":{"type":"LIST_STRING","value":["Izadi, Sadegh","Nikseresht, Alireza","Sharifian, Maryam","Sahraian, Mohammad Ali","Hamidian Jahromi, Alireza","Aghighi, Mohammad","Heidary, Alireza"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:25a6c0a35d804466b100ac67ee0605ad"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Letter to the Editor"]},"trust":{"type":"FLOAT","value":0.5385908},"target_publication_title":{"type":"STRING","value":"Significant Increase in the Prevalence of Multiple Sclerosis in Iran in 2011"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3502261\",\"titles\":[\"Pyramidal Lobe of the Thyroid Gland: Surgical Anatomy in Patients Undergoing Total Thyroidectomy\"],\"abstracts\":[\"Background. Anatomic variations, the presence of the pyramidal lobe (PL), may impact completeness of thyroidectomy and effect of surgical treatment. Method. This study included 166 patients who underwent total thyroidectomy. The anterior cervical region between the thyroid isthmus and the hyoid bone was dissected during thyroid surgery. The incidence, size, and anatomical features of the PL were established in these patients. Results. The incidence of PL was 65.7%. No gender difference was found for PL incidence. The base of the PL was located at the isthmus in 52.3%, the left lobe in 29.4%, and the right lobe in 18.3% of patients. The mean length of the PL was 22.7 (range, 5–59) mm. The PL was longer than 30 mm in 23% of patients. One-third of the patients with short PL were men whereas women accounted for 80% of patients with long PL. Conclusions. The high incidence indicates that the PL is a common part of the thyroid. The PL generally originates from the isthmus near midline and is of variable length, extending from the isthmus up to the hyoid bone. Considering that the PL is a common structure, the prelaryngeal region should be dissected to achieve the completeness of thyroidectomy.\"],\"language\":\"eng\",\"subjects\":[\"Clinical Study\"],\"creators\":[\"Gurleyik, Emin\",\"Gurleyik, Gunay\",\"Dogan, Sami\",\"Cobek, Utku\",\"Cetin, Fuat\",\"Onsal, Ufuk\"],\"publicationdate\":\"2015-07-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Anatomy Research International\",\"issn\":\"2090-2743\",\"eissn\":\"2090-2751\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2015/384148\",\"type\":\"doi\"},{\"value\":\"PMC4508373\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4508373\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2015/384148\",\"license\":\"OPEN\",\"hostedby\":\"Anatomy Research International\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2015/384148\",\"license\":\"OPEN\",\"hostedby\":\"Anatomy Research International\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2015/384148\",\"id\":\"oai:doaj.org/article:a2022a7582434084b6d9ab34ae7f7ad6\"},\"trust\":0.010926247}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3502261"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gurleyik, Emin","Gurleyik, Gunay","Dogan, Sami","Cobek, Utku","Cetin, Fuat","Onsal, Ufuk"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:a2022a7582434084b6d9ab34ae7f7ad6"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Clinical Study"]},"trust":{"type":"FLOAT","value":0.010926247},"target_publication_title":{"type":"STRING","value":"Pyramidal Lobe of the Thyroid Gland: Surgical Anatomy in Patients Undergoing Total Thyroidectomy"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2015-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.tue.nl:111806\",\"titles\":[\"Optimization of the energy management of low-energy houses with a solar heating and hot water system\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"heating systems\",\"buildings: thermal performance\",\"solar energy - buildings\",\"water heating systems\",\"energy saving - houses\"],\"creators\":[\"Veltkamp, Wb\",\"Koppen, Cwj\"],\"publicationdate\":\"1982-01-01\",\"publisher\":\"University of Technology Eindhoven\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repository TU/e\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.tue.nl/111806\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"External research report\"},{\"url\":\"http://repository.tue.nl/111806\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.tue.nl/111806\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.tue.nl/111806\",\"id\":\"tue:oai:library.tue.nl:111806\"},\"trust\":0.6712392}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repository TU/e"},"target_publication_id":{"type":"STRING","value":"oai:library.tue.nl:111806"},"target_publication_author_list":{"type":"LIST_STRING","value":["Veltkamp, Wb","Koppen, Cwj"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tue:oai:library.tue.nl:111806"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["heating systems","buildings: thermal performance","solar energy - buildings","water heating systems","energy saving - houses"]},"trust":{"type":"FLOAT","value":0.6712392},"target_publication_title":{"type":"STRING","value":"Optimization of the energy management of low-energy houses with a solar heating and hot water system"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1982-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::99c5e07b4d5de9d18c350cdf64c5aa3d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2876297\",\"titles\":[\"Iron in seeds – loading pathways and subcellular localization\"],\"abstracts\":[\"Iron (Fe) is one of the most abundant elements on earth, but its limited bioavailability poses a major constraint for agriculture and constitutes a serious problem in human health. Due to an improved understanding of the mechanisms that control Fe homeostasis in plants, major advances toward engineering biofortified crops have been made during the past decade. Examples of successful biofortification strategies are, however, still scarce and the process of Fe loading into seeds is far from being well understood in most crop species. In particular in grains where the embryo represents the main storage compartment such as legumes, increasing the seed Fe content remains a challenging task. This review aims at placing the recently identified actors in Fe transport into the unsolved puzzle of grain filling, taking the differences of Fe distribution between various species into consideration. We summarize the current knowledge on Fe transport between symplasmic and apoplasmic compartments, and provide models for Fe trafficking and localization in different seed types that may help to develop high seed Fe germplasms.\"],\"language\":\"eng\",\"subjects\":[\"Plant Science\",\"Mini Review Article\",\"biofortification\",\"grain filling\",\"Fe transport\",\"Fe storage\",\"Fe in seeds\"],\"creators\":[\"Grillet, Louis\",\"Mari, Stéphane\",\"Schmidt, Wolfgang\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"Frontiers Media S.A.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Frontiers in Plant Science\",\"issn\":\"\",\"eissn\":\"1664-462X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3389/fpls.2013.00535\",\"type\":\"doi\"},{\"value\":\"PMC3877777\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3877777\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.3389/fpls.2013.00535\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Plant Science\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.3389/fpls.2013.00535\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Plant Science\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Frontiers\",\"url\":\"http://dx.doi.org/10.3389/fpls.2013.00535\",\"id\":\"10.3389/fpls.2013.00535\"},\"trust\":0.750145}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2876297"},"target_publication_author_list":{"type":"LIST_STRING","value":["Grillet, Louis","Mari, Stéphane","Schmidt, Wolfgang"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.3389/fpls.2013.00535"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::3db634fc5446f389d0b826ea400a5da6"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Plant Science","Mini Review Article","biofortification","grain filling","Fe transport","Fe storage","Fe in seeds"]},"trust":{"type":"FLOAT","value":0.750145},"target_publication_title":{"type":"STRING","value":"Iron in seeds – loading pathways and subcellular localization"},"provenance_datasource_name":{"type":"STRING","value":"Frontiers"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3171123\",\"titles\":[\"Perception of assent in biomedical research among medical specialists and trainees in Abakaliki, Nigeria\"],\"abstracts\":[\"Background Assent is the child’s affirmative agreement to participate in research. Consent from parents and assent from children are required in research involving children. Objective To determine the knowledge, perception, and level of practice of assent in children among medical specialists and trainees in research work as well as the level of ethical norms observed during research. Methods A semistructural questionnaire was designed for a cross-sectional survey of medical specialists and trainees at the Federal Teaching Hospital Abakaliki at their different departments in the months of January and February 2013. The questionnaires were completed and analyzed. Results A total of 113 questionnaires were distributed, correctly completed, and analyzed. The mean age of the respondents was 36.2±5.9 years, with a range of 25–55 years. The mean duration of practice was 6.3±3.9 years, with a range of 3–20 years. The majority of respondents were trainees (106, 93.8%). There was no significant association between sociodemographic variables of the respondents and the practice of obtaining assent in research involving children (P\\u003e0.05). Ethical clearance was obtained by all medical specialists during their research, but none of those whose research involved children got assent from the children. The majority of medical specialists (80%) and trainees (65.1%) support the practice of assent as a mandatory prerequisite in ethical study. Most of the medical specialists (83.3%) and trainees (65.1%) agree that parents could be influenced by other considerations and benefits in enrolling their children in research. Assent after consent in research involving children in African setting was acknowledged as a necessity by 66.7% of medical specialists and 75.2% of trainees. Conclusion Assent was observed as a necessary ethical issue in research involving children in this study; however, it is often not sought in our setting.\"],\"language\":\"eng\",\"subjects\":[\"Original Research\",\"children\",\"ethics\",\"consent\",\"assent\"],\"creators\":[\"Onoh, Robinson Chukwudi\",\"Umeora, Odidika Ugochukwu Joannes\",\"Ezeonu, Paul Olisaemeka\",\"Agwu, Uzoma Maryrose\",\"Lawani, Lucky Osaheni\",\"Ezeonu, Chinonyelum Thecla\"],\"publicationdate\":\"2014-10-01\",\"publisher\":\"Dove Medical Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Adolescent Health, Medicine and Therapeutics\",\"issn\":\"\",\"eissn\":\"1179-318X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.2147/AHMT.S66542\",\"type\":\"doi\"},{\"value\":\"PMC4199846\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4199846\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.dovepress.com/perception-of-assent-in-biomedical-research-among-medical-specialists--peer-reviewed-article-AHMT\",\"license\":\"OPEN\",\"hostedby\":\"Adolescent Health, Medicine and Therapeutics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.dovepress.com/perception-of-assent-in-biomedical-research-among-medical-specialists--peer-reviewed-article-AHMT\",\"license\":\"OPEN\",\"hostedby\":\"Adolescent Health, Medicine and Therapeutics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.dovepress.com/perception-of-assent-in-biomedical-research-among-medical-specialists--peer-reviewed-article-AHMT\",\"id\":\"oai:doaj.org/article:d2d0e7cba75149a6aa77983eeb21598c\"},\"trust\":0.95294636}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3171123"},"target_publication_author_list":{"type":"LIST_STRING","value":["Onoh, Robinson Chukwudi","Umeora, Odidika Ugochukwu Joannes","Ezeonu, Paul Olisaemeka","Agwu, Uzoma Maryrose","Lawani, Lucky Osaheni","Ezeonu, Chinonyelum Thecla"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:d2d0e7cba75149a6aa77983eeb21598c"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Research","children","ethics","consent","assent"]},"trust":{"type":"FLOAT","value":0.95294636},"target_publication_title":{"type":"STRING","value":"Perception of assent in biomedical research among medical specialists and trainees in Abakaliki, Nigeria"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:fedoatest.unina.it:8257\",\"titles\":[\"Effetti del percolato di discarica RSU sullo sviluppo embrional di Danio rerio\"],\"abstracts\":[\"Effects of landfill leachate(Percolato) on the embryonic development of zebrafish (Danio rerio) \\n \\nAbstract \\nLeachate is a liquid derived from the infiltration of rainwater into the landfill which, going through the waste, is enhanced by substances resulting either from the decomposition of the waste and liquids derived from the metabolism of the present organic colliquativa. The result is a complex mixture of organic and inorganic substances, and in particular, in the leachate samples analyzed from different systems of landfills, it appears in the inorganic component a high concentration of ammonia, nitrates, sulfates, iron and zinc. In the present work we attempted to assess the acute toxicity of leachate using specific ecotoxicological models and, in a more detailed study, to test this pollutant on Danio rerio embryos to check for any morphologiccal changes and teratogenic aspects. In particular, the exposure to the leachate showed a high mortality, a declining trend in the development of zebrafish embryo from the earliest stages of gastrulation, however these effects were closely related to the dose of leachate used. The object of this study was also to evaluate new scientific approaches for the detoxification of leachate based on the capacity of self-detoxification, using active biomass from urban wastewater treatment plant and bacterial strains, specially selected from the same leachate. The data obtained from toxicological tests show a high toxicity of landfill leachate with obvious alterations in embryonic development of zebrafish and alterations of phenotypic effects derived with dilutions of leachate pressures. The detoxification of the leachate by biological approach has not produced encouraging results, however alsoo indicating that the use of more massive bacterial inoculation with selected strains of flocculants or trials in anaerobic environment can provide additional \\ntools for those purposes. Finally, in a preliminary study we tried to use the leachate, diluted appropriately, such as cells culture of microalgae, especially the strain Tetraselmis suecica, where we obsereved a good performance of algal growth, letting us introducing new scientific approaches for the treatment of detoxification landfill leachate.\"],\"language\":\"ita\",\"subjects\":[],\"creators\":[\"Arcuri, Antonio\"],\"publicationdate\":\"2010-11-30\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Università degli Studi di Napoli Federico Il Open Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.fedoa.unina.it/8257/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.fedoa.unina.it/8257/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.fedoa.unina.it/8257/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"url\":\"http://www.fedoa.unina.it/8257/\",\"id\":\"oai:fedoa.unina.it:8257\"},\"trust\":0.4608907}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Università degli Studi di Napoli Federico Il Open Archive"},"target_publication_id":{"type":"STRING","value":"oai:fedoatest.unina.it:8257"},"target_publication_author_list":{"type":"LIST_STRING","value":["Arcuri, Antonio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:fedoa.unina.it:8257"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::37a749d808e46495a8da1e5352d03cae"},"trust":{"type":"FLOAT","value":0.4608907},"target_publication_title":{"type":"STRING","value":"Effetti del percolato di discarica RSU sullo sviluppo embrional di Danio rerio"},"provenance_datasource_name":{"type":"STRING","value":"Università degli Studi di Napoli Federico Il Open Archive"},"target_dateofacceptance":{"type":"DATE","value":"2010-11-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::37a749d808e46495a8da1e5352d03cae"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:fedoa.unina.it:8257\",\"titles\":[\"Effetti del percolato di discarica RSU sullo sviluppo embrional di Danio rerio\"],\"abstracts\":[\"Effects of landfill leachate(Percolato) on the embryonic development of zebrafish (Danio rerio) \\n \\nAbstract \\nLeachate is a liquid derived from the infiltration of rainwater into the landfill which, going through the waste, is enhanced by substances resulting either from the decomposition of the waste and liquids derived from the metabolism of the present organic colliquativa. The result is a complex mixture of organic and inorganic substances, and in particular, in the leachate samples analyzed from different systems of landfills, it appears in the inorganic component a high concentration of ammonia, nitrates, sulfates, iron and zinc. In the present work we attempted to assess the acute toxicity of leachate using specific ecotoxicological models and, in a more detailed study, to test this pollutant on Danio rerio embryos to check for any morphologiccal changes and teratogenic aspects. In particular, the exposure to the leachate showed a high mortality, a declining trend in the development of zebrafish embryo from the earliest stages of gastrulation, however these effects were closely related to the dose of leachate used. The object of this study was also to evaluate new scientific approaches for the detoxification of leachate based on the capacity of self-detoxification, using active biomass from urban wastewater treatment plant and bacterial strains, specially selected from the same leachate. The data obtained from toxicological tests show a high toxicity of landfill leachate with obvious alterations in embryonic development of zebrafish and alterations of phenotypic effects derived with dilutions of leachate pressures. The detoxification of the leachate by biological approach has not produced encouraging results, however alsoo indicating that the use of more massive bacterial inoculation with selected strains of flocculants or trials in anaerobic environment can provide additional \\ntools for those purposes. Finally, in a preliminary study we tried to use the leachate, diluted appropriately, such as cells culture of microalgae, especially the strain Tetraselmis suecica, where we obsereved a good performance of algal growth, letting us introducing new scientific approaches for the treatment of detoxification landfill leachate.\"],\"language\":\"und\",\"subjects\":[\"BIO/07 ECOLOGIA\",\"BIO/06 ANATOMIA COMPARATA E CITOLOGIA\"],\"creators\":[\"Arcuri, Antonio\"],\"publicationdate\":\"2010-11-30\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Università degli Studi di Napoli Federico Il Open Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.fedoa.unina.it/8257/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.fedoa.unina.it/8257/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.fedoa.unina.it/8257/\",\"license\":\"OPEN\",\"hostedby\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Università degli Studi di Napoli Federico Il Open Archive\",\"url\":\"http://www.fedoa.unina.it/8257/\",\"id\":\"oai:fedoatest.unina.it:8257\"},\"trust\":0.12513304}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Università degli Studi di Napoli Federico Il Open Archive"},"target_publication_id":{"type":"STRING","value":"oai:fedoa.unina.it:8257"},"target_publication_author_list":{"type":"LIST_STRING","value":["Arcuri, Antonio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:fedoatest.unina.it:8257"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::37a749d808e46495a8da1e5352d03cae"},"target_publication_subject_list":{"type":"LIST_STRING","value":["BIO/07 ECOLOGIA","BIO/06 ANATOMIA COMPARATA E CITOLOGIA"]},"trust":{"type":"FLOAT","value":0.12513304},"target_publication_title":{"type":"STRING","value":"Effetti del percolato di discarica RSU sullo sviluppo embrional di Danio rerio"},"provenance_datasource_name":{"type":"STRING","value":"Università degli Studi di Napoli Federico Il Open Archive"},"target_dateofacceptance":{"type":"DATE","value":"2010-11-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::37a749d808e46495a8da1e5352d03cae"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.iisc.ernet.in:753\",\"titles\":[\"An NLO calculation of the electroproduction of large-E\\\\bot hadrons\"],\"abstracts\":[\"We present a next-to-leading Order calculation of the cross section for the leptoproduction of large-E\\\\bot hadrons and we compare our predictions with H1 data on the forward production of $\\\\pi^0$. We find large higher order corrections and an important sensitivity to the renormalization and factorization scales. These large corrections are shown to arise in part from BFKL-like diagrams at the lowest order.\"],\"language\":\"und\",\"subjects\":[\"Centre for Theoretical Studies\"],\"creators\":[\"Aurenche, P.\",\"Basu, Rahul\",\"Fontannaz, M.\",\"Godbole, Rm\"],\"publicationdate\":\"2004-05-01\",\"publisher\":\"Springer\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Open Access Repository of IISc Research Publications\"],\"pids\":[{\"value\":\"10.1140/epjc/s2004-01722-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://eprints.iisc.ernet.in/753/\",\"license\":\"OPEN\",\"hostedby\":\"Open Access Repository of IISc Research Publications\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1140/epjc/s2004-01722-8\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ph/0312359\",\"id\":\"oai:arXiv.org:hep-ph/0312359\"},\"trust\":0.30259657}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Open Access Repository of IISc Research Publications"},"target_publication_id":{"type":"STRING","value":"oai:eprints.iisc.ernet.in:753"},"target_publication_author_list":{"type":"LIST_STRING","value":["Aurenche, P.","Basu, Rahul","Fontannaz, M.","Godbole, Rm"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ph/0312359"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Centre for Theoretical Studies"]},"trust":{"type":"FLOAT","value":0.30259657},"target_publication_title":{"type":"STRING","value":"An NLO calculation of the electroproduction of large-E\\bot hadrons"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2004-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::4c5bde74a8f110656874902f07378009"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.iisc.ernet.in:753\",\"titles\":[\"An NLO calculation of the electroproduction of large-E\\\\bot hadrons\"],\"abstracts\":[\"We present a next-to-leading Order calculation of the cross section for the leptoproduction of large-E\\\\bot hadrons and we compare our predictions with H1 data on the forward production of $\\\\pi^0$. We find large higher order corrections and an important sensitivity to the renormalization and factorization scales. These large corrections are shown to arise in part from BFKL-like diagrams at the lowest order.\"],\"language\":\"und\",\"subjects\":[\"Centre for Theoretical Studies\"],\"creators\":[\"Aurenche, P.\",\"Basu, Rahul\",\"Fontannaz, M.\",\"Godbole, Rm\"],\"publicationdate\":\"2004-05-01\",\"publisher\":\"Springer\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Open Access Repository of IISc Research Publications\"],\"pids\":[{\"value\":\"10.1140/epjc/s2004-01722-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://eprints.iisc.ernet.in/753/\",\"license\":\"OPEN\",\"hostedby\":\"Open Access Repository of IISc Research Publications\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1140/epjc/s2004-01722-8\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ph/0312359\",\"id\":\"oai:arXiv.org:hep-ph/0312359\"},\"trust\":0.30259657}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Open Access Repository of IISc Research Publications"},"target_publication_id":{"type":"STRING","value":"oai:eprints.iisc.ernet.in:753"},"target_publication_author_list":{"type":"LIST_STRING","value":["Aurenche, P.","Basu, Rahul","Fontannaz, M.","Godbole, Rm"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ph/0312359"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Centre for Theoretical Studies"]},"trust":{"type":"FLOAT","value":0.30259657},"target_publication_title":{"type":"STRING","value":"An NLO calculation of the electroproduction of large-E\\bot hadrons"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2004-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::4c5bde74a8f110656874902f07378009"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:eprints.iisc.ernet.in:753\",\"titles\":[\"An NLO calculation of the electroproduction of large-E\\\\bot hadrons\"],\"abstracts\":[\"We present a next-to-leading Order calculation of the cross section for the leptoproduction of large-E\\\\bot hadrons and we compare our predictions with H1 data on the forward production of $\\\\pi^0$. We find large higher order corrections and an important sensitivity to the renormalization and factorization scales. These large corrections are shown to arise in part from BFKL-like diagrams at the lowest order.\"],\"language\":\"und\",\"subjects\":[\"Centre for Theoretical Studies\"],\"creators\":[\"Aurenche, P.\",\"Basu, Rahul\",\"Fontannaz, M.\",\"Godbole, Rm\"],\"publicationdate\":\"2004-05-01\",\"publisher\":\"Springer\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Open Access Repository of IISc Research Publications\"],\"pids\":[],\"instances\":[{\"url\":\"http://eprints.iisc.ernet.in/753/\",\"license\":\"OPEN\",\"hostedby\":\"Open Access Repository of IISc Research Publications\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/hep-ph/0312359\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/hep-ph/0312359\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ph/0312359\",\"id\":\"oai:arXiv.org:hep-ph/0312359\"},\"trust\":0.7659089}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Open Access Repository of IISc Research Publications"},"target_publication_id":{"type":"STRING","value":"oai:eprints.iisc.ernet.in:753"},"target_publication_author_list":{"type":"LIST_STRING","value":["Aurenche, P.","Basu, Rahul","Fontannaz, M.","Godbole, Rm"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ph/0312359"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Centre for Theoretical Studies"]},"trust":{"type":"FLOAT","value":0.7659089},"target_publication_title":{"type":"STRING","value":"An NLO calculation of the electroproduction of large-E\\bot hadrons"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2004-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::4c5bde74a8f110656874902f07378009"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:hep-ph/0312359\",\"titles\":[\"An NLO calculation of the electroproduction of large-E_\\\\bot hadrons\"],\"abstracts\":[\" We present a Next-to-Leading Order calculation of the cross section for the\\nleptoproduction of large-$E_{\\\\bot}$ hadrons and we compare our predictions with\\nH1 data on the forward production of $\\\\pi^0$. We find large higher order\\ncorrections and an important sensitivity to the renormalization and\\nfactorization scales. These large corrections are shown to arise in part from\\nBFKL-like diagrams at the lowest order.\\n\",\"Comment: 24 pages, plain LaTeX2e, 10 figures\"],\"language\":\"eng\",\"subjects\":[\"High Energy Physics - Phenomenology\"],\"creators\":[\"Aurenche, P.\",\"Basu, Rahul\",\"Fontannaz, M.\",\"Godbole, R. M.\"],\"publicationdate\":\"2003-12-27\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1140/epjc/s2004-01722-8\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/hep-ph/0312359\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://eprints.iisc.ernet.in/753/\",\"license\":\"OPEN\",\"hostedby\":\"Open Access Repository of IISc Research Publications\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.iisc.ernet.in/753/\",\"license\":\"OPEN\",\"hostedby\":\"Open Access Repository of IISc Research Publications\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Open Access Repository of IISc Research Publications\",\"url\":\"http://eprints.iisc.ernet.in/753/\",\"id\":\"oai:eprints.iisc.ernet.in:753\"},\"trust\":0.6116317}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:hep-ph/0312359"},"target_publication_author_list":{"type":"LIST_STRING","value":["Aurenche, P.","Basu, Rahul","Fontannaz, M.","Godbole, R. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.iisc.ernet.in:753"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::4c5bde74a8f110656874902f07378009"},"target_publication_subject_list":{"type":"LIST_STRING","value":["High Energy Physics - Phenomenology"]},"trust":{"type":"FLOAT","value":0.6116317},"target_publication_title":{"type":"STRING","value":"An NLO calculation of the electroproduction of large-E_\\bot hadrons"},"provenance_datasource_name":{"type":"STRING","value":"Open Access Repository of IISc Research Publications"},"target_dateofacceptance":{"type":"DATE","value":"2003-12-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/63754\",\"titles\":[\"Pesticide policies in the European Union\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Leerstoelgroep Bedrijfseconomie\"],\"creators\":[\"Wossink, G. A. A.\",\"Feitshans, T. A.\"],\"publicationdate\":\"1999-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/63754\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/67046\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/67046\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Wageningen Yield\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/67046\",\"id\":\"oai:library.wur.nl:wurpubs/67046\"},\"trust\":0.17284179}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/63754"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wossink, G. A. A.","Feitshans, T. A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:library.wur.nl:wurpubs/67046"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Leerstoelgroep Bedrijfseconomie"]},"trust":{"type":"FLOAT","value":0.17284179},"target_publication_title":{"type":"STRING","value":"Pesticide policies in the European Union"},"provenance_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_dateofacceptance":{"type":"DATE","value":"1999-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/67046\",\"titles\":[\"Pesticide policies in the European Union\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Leerstoelgroep Bedrijfseconomie\"],\"creators\":[\"Wossink, G. A. A.\",\"Feitshans, T. A.\"],\"publicationdate\":\"2000-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/67046\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/63754\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/63754\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Wageningen Yield\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/63754\",\"id\":\"oai:library.wur.nl:wurpubs/63754\"},\"trust\":0.62402856}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/67046"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wossink, G. A. A.","Feitshans, T. A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:library.wur.nl:wurpubs/63754"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Leerstoelgroep Bedrijfseconomie"]},"trust":{"type":"FLOAT","value":0.62402856},"target_publication_title":{"type":"STRING","value":"Pesticide policies in the European Union"},"provenance_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_dateofacceptance":{"type":"DATE","value":"2000-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:29218\",\"titles\":[\"Système National d’Innovation marocain\"],\"abstracts\":[\"The aim of this paper is to describe the national innovation system (NIS) in Morocco. Technological inputs (R \\u0026 D, number of researchers, number of students in science and technology etc.) and the institutional organization of research are discussed. INS in the Moroccan case is characterized by weak of allocated resources and by the dysfunction of its various components\"],\"language\":\"eng\",\"subjects\":[\"O47 - Empirical Studies of Economic Growth ; Aggregate Productivity ; Cross-Country Output Convergence\",\"O34 - Intellectual Property and Intellectual Capital\",\"O32 - Management of Technological Innovation and R\\u0026D\"],\"creators\":[\"Bouoiyour, Jamal\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/29218/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/29218/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/29218/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/29218/\",\"id\":\"29218\"},\"trust\":0.2703356}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:29218"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bouoiyour, Jamal"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["29218"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["O47 - Empirical Studies of Economic Growth ; Aggregate Productivity ; Cross-Country Output Convergence","O34 - Intellectual Property and Intellectual Capital","O32 - Management of Technological Innovation and R\u0026D"]},"trust":{"type":"FLOAT","value":0.2703356},"target_publication_title":{"type":"STRING","value":"Système National d’Innovation marocain"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"29218\",\"titles\":[\"Système National d’Innovation marocain\"],\"abstracts\":[\"The aim of this paper is to describe the national innovation system (NIS) in Morocco. Technological inputs (R \\u0026 D, number of researchers, number of students in science and technology etc.) and the institutional organization of research are discussed. INS in the Moroccan case is characterized by weak of allocated resources and by the dysfunction of its various components\"],\"language\":\"eng\",\"subjects\":[\"O47 - Empirical Studies of Economic Growth ; Aggregate Productivity ; Cross-Country Output Convergence\",\"O34 - Intellectual Property and Intellectual Capital\",\"O32 - Management of Technological Innovation and R\\u0026D\"],\"creators\":[\"Bouoiyour, Jamal\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/29218/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/29218/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/29218/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/29218/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:29218\"},\"trust\":0.19216567}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"29218"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bouoiyour, Jamal"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:29218"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["O47 - Empirical Studies of Economic Growth ; Aggregate Productivity ; Cross-Country Output Convergence","O34 - Intellectual Property and Intellectual Capital","O32 - Management of Technological Innovation and R\u0026D"]},"trust":{"type":"FLOAT","value":0.19216567},"target_publication_title":{"type":"STRING","value":"Système National d’Innovation marocain"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:inria-00614773v1\",\"titles\":[\"AspectMaps: A Scalable Visualization of Join Point Shadows\"],\"abstracts\":[\"International audience\",\"When using Aspect-Oriented Programming, it is sometimes difficult to determine at which join point an aspect executes. Similarly, when considering one join point, knowing which aspects will execute there and in what order is non- trivial. This makes it difficult to understand how the application will behave. A number of visualizations have been proposed that attempt to provide support for such program understanding. However, they neither scale up to large code bases nor scale down to understanding what happens at a single join point. In this paper, we present AspectMaps - a visualization that scales in both directions, thanks to a multi-level selective structural zoom. We show how the use of AspectMaps allows for program understanding of code with aspects, revealing both a wealth of information of what can happen at one particular join point as well as allowing to see the \\\"big picture\\\" on a larger code base. We demonstrate the usefulness of AspectMaps on an example and present the results of a small user study that shows that AspectMaps outperforms other aspect visualization tools.\"],\"language\":\"eng\",\"subjects\":[\"[INFO.INFO-PL] Computer Science/Programming Languages\"],\"creators\":[\"Fabry, Johan\",\"Kellens, Andy\",\"Denier, Simon\",\"Ducasse, Stéphane\"],\"publicationdate\":\"2011-06-13\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Departemento de Ciencias de la Computacion (DCC) ; Universidad de Chile\",\"Software Languages Lab (SLL) ; Vrije Universiteit Brussel\",\"RMOD (INRIA Lille - Nord Europe) ; INRIA - Université Lille I - Sciences et technologies - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00614773\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.inria.fr/inria-00614773\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00614773\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/inria-00614773\",\"id\":\"oai:hal.inria.fr:inria-00614773\"},\"trust\":0.302998}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:inria-00614773v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fabry, Johan","Kellens, Andy","Denier, Simon","Ducasse, Stéphane"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:inria-00614773"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO.INFO-PL] Computer Science/Programming Languages"]},"trust":{"type":"FLOAT","value":0.302998},"target_publication_title":{"type":"STRING","value":"AspectMaps: A Scalable Visualization of Join Point Shadows"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-06-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:inria-00614773\",\"titles\":[\"AspectMaps: A Scalable Visualization of Join Point Shadows\"],\"abstracts\":[\"When using Aspect-Oriented Programming, it is sometimes difficult to determine at which join point an aspect executes. Similarly, when considering one join point, knowing which aspects will execute there and in what order is non- trivial. This makes it difficult to understand how the application will behave. A number of visualizations have been proposed that attempt to provide support for such program understanding. However, they neither scale up to large code bases nor scale down to understanding what happens at a single join point. In this paper, we present AspectMaps - a visualization that scales in both directions, thanks to a multi-level selective structural zoom. We show how the use of AspectMaps allows for program understanding of code with aspects, revealing both a wealth of information of what can happen at one particular join point as well as allowing to see the \\\"big picture\\\" on a larger code base. We demonstrate the usefulness of AspectMaps on an example and present the results of a small user study that shows that AspectMaps outperforms other aspect visualization tools.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_PL] Computer Science/Programming Languages\",\"[INFO:INFO_PL] Informatique/Langage de programmation\"],\"creators\":[\"Fabry, Johan\",\"Kellens, Andy\",\"Denier, Simon\",\"Ducasse, Stéphane\"],\"publicationdate\":\"2011-06-13\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00614773\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.inria.fr/inria-00614773\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00614773\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/inria-00614773\",\"id\":\"oai:HAL:inria-00614773v1\"},\"trust\":0.016684532}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:inria-00614773"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fabry, Johan","Kellens, Andy","Denier, Simon","Ducasse, Stéphane"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:inria-00614773v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_PL] Computer Science/Programming Languages","[INFO:INFO_PL] Informatique/Langage de programmation"]},"trust":{"type":"FLOAT","value":0.016684532},"target_publication_title":{"type":"STRING","value":"AspectMaps: A Scalable Visualization of Join Point Shadows"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-06-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/20353\",\"titles\":[\"A decision support system for prediction of microbial spoilage in foods.\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Levensmiddelenchemie en -microbiologie\"],\"creators\":[\"Zwietering, M. H.\",\"Wijtzes, T.\",\"Wit, J. C.\",\"Riet, K.\"],\"publicationdate\":\"1993-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/20353\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/24105\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/24105\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Wageningen Yield\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/24105\",\"id\":\"oai:library.wur.nl:wurpubs/24105\"},\"trust\":0.52062124}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/20353"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zwietering, M. H.","Wijtzes, T.","Wit, J. C.","Riet, K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:library.wur.nl:wurpubs/24105"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Levensmiddelenchemie en -microbiologie"]},"trust":{"type":"FLOAT","value":0.52062124},"target_publication_title":{"type":"STRING","value":"A decision support system for prediction of microbial spoilage in foods."},"provenance_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_dateofacceptance":{"type":"DATE","value":"1993-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/24105\",\"titles\":[\"A decision support system for prediction of microbial spoilage in foods.\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Levensmiddelenchemie en -microbiologie\",\"Sectie Proceskunde\"],\"creators\":[\"Zwietering, M. H.\",\"Wijtzes, T.\",\"Rombouts, F. M.\",\"Riet, K.\"],\"publicationdate\":\"1993-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/24105\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/20353\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/20353\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Wageningen Yield\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/20353\",\"id\":\"oai:library.wur.nl:wurpubs/20353\"},\"trust\":0.38912553}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/24105"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zwietering, M. H.","Wijtzes, T.","Rombouts, F. M.","Riet, K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:library.wur.nl:wurpubs/20353"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Levensmiddelenchemie en -microbiologie","Sectie Proceskunde"]},"trust":{"type":"FLOAT","value":0.38912553},"target_publication_title":{"type":"STRING","value":"A decision support system for prediction of microbial spoilage in foods."},"provenance_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_dateofacceptance":{"type":"DATE","value":"1993-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:digitum.um.es:10201/37470\",\"titles\":[\"Politica Sociale dell´Unione europea\"],\"abstracts\":[],\"language\":\"ita\",\"subjects\":[],\"creators\":[\"Fernández Riquelme, Sergio\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"IPS. Instituto de Política social\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Depósito de la Universidad de Murcia\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10201/37470\",\"license\":\"OPEN\",\"hostedby\":\"Depósito de la Universidad de Murcia\",\"instancetype\":\"Article\"},{\"url\":\"http://institutodepoliticasocial.jimdo.com/documentos/\",\"license\":\"OPEN\",\"hostedby\":\"Depósito de la Universidad de Murcia\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://institutodepoliticasocial.jimdo.com/documentos/\",\"license\":\"OPEN\",\"hostedby\":\"Depósito de la Universidad de Murcia\",\"instancetype\":\"\"}]},\"provenance\":{\"repositoryName\":\"Depósito de la Universidad de Murcia\",\"url\":\"http://institutodepoliticasocial.jimdo.com/documentos/\",\"id\":\"oai:digitum.um.es:10201/38179\"},\"trust\":0.37384647}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Depósito de la Universidad de Murcia"},"target_publication_id":{"type":"STRING","value":"oai:digitum.um.es:10201/37470"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fernández Riquelme, Sergio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:digitum.um.es:10201/38179"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5eac43aceba42c8757b54003a58277b5"},"trust":{"type":"FLOAT","value":0.37384647},"target_publication_title":{"type":"STRING","value":"Politica Sociale dell´Unione europea"},"provenance_datasource_name":{"type":"STRING","value":"Depósito de la Universidad de Murcia"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5eac43aceba42c8757b54003a58277b5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:digitum.um.es:10201/38179\",\"titles\":[\"Politica sociale dell\\u0027Unione europea\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Politica social\",\"Union Europea\"],\"creators\":[\"Fernandez Riquelme, Sergio\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Depósito de la Universidad de Murcia\"],\"pids\":[],\"instances\":[{\"url\":\"http://institutodepoliticasocial.jimdo.com/documentos/\",\"license\":\"OPEN\",\"hostedby\":\"Depósito de la Universidad de Murcia\",\"instancetype\":\"\"},{\"url\":\"http://hdl.handle.net/10201/37470\",\"license\":\"OPEN\",\"hostedby\":\"Depósito de la Universidad de Murcia\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10201/37470\",\"license\":\"OPEN\",\"hostedby\":\"Depósito de la Universidad de Murcia\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Depósito de la Universidad de Murcia\",\"url\":\"http://hdl.handle.net/10201/37470\",\"id\":\"oai:digitum.um.es:10201/37470\"},\"trust\":0.67997915}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Depósito de la Universidad de Murcia"},"target_publication_id":{"type":"STRING","value":"oai:digitum.um.es:10201/38179"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fernandez Riquelme, Sergio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:digitum.um.es:10201/37470"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5eac43aceba42c8757b54003a58277b5"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Politica social","Union Europea"]},"trust":{"type":"FLOAT","value":0.67997915},"target_publication_title":{"type":"STRING","value":"Politica sociale dell\u0027Unione europea"},"provenance_datasource_name":{"type":"STRING","value":"Depósito de la Universidad de Murcia"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5eac43aceba42c8757b54003a58277b5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bde:wpaper:1130\",\"titles\":[\"Optimal monetary policy with state-dependent pricing\"],\"abstracts\":[\"We study optimal monetary policy from the timeless perspective in a general state-dependent pricing framework. Firms are monopolistic competitors and are subject to idiosyncratic menu cost shocks. We find that, under isoelastic preferences and no government spending, strict price stability is optimal both in the long run and in response to aggregate shocks. Key to this finding is an “envelope” property: at zero inflation, a marginal increase in the rate of inflation has no effect on firms’ profits and therefore has no effect on the rate of price adjustment. We offer an analytic solution which does not rely on local approximation or efficiency of the steady-state.\"],\"language\":\"und\",\"subjects\":[\"monetary policy, state-dependent pricing, monopolistic competition\"],\"creators\":[\"Anton Nakov\",\"Carlos Thomas\"],\"publicationdate\":\"2011-11-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/11/Fich/dt1130e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.ecb.europa.eu/pub/pdf/scpwps/ecbwp1250.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ecb.europa.eu/pub/pdf/scpwps/ecbwp1250.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.ecb.europa.eu/pub/pdf/scpwps/ecbwp1250.pdf\",\"id\":\"oai:RePEc:ecb:ecbwps:20101250\"},\"trust\":0.7114493}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bde:wpaper:1130"},"target_publication_author_list":{"type":"LIST_STRING","value":["Anton Nakov","Carlos Thomas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ecb:ecbwps:20101250"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["monetary policy, state-dependent pricing, monopolistic competition"]},"trust":{"type":"FLOAT","value":0.7114493},"target_publication_title":{"type":"STRING","value":"Optimal monetary policy with state-dependent pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bde:wpaper:1130\",\"titles\":[\"Optimal monetary policy with state-dependent pricing\"],\"abstracts\":[\"We study optimal monetary policy from the timeless perspective in a general state-dependent pricing framework. Firms are monopolistic competitors and are subject to idiosyncratic menu cost shocks. We find that, under isoelastic preferences and no government spending, strict price stability is optimal both in the long run and in response to aggregate shocks. Key to this finding is an “envelope” property: at zero inflation, a marginal increase in the rate of inflation has no effect on firms’ profits and therefore has no effect on the rate of price adjustment. We offer an analytic solution which does not rely on local approximation or efficiency of the steady-state.\"],\"language\":\"und\",\"subjects\":[\"monetary policy, state-dependent pricing, monopolistic competition\"],\"creators\":[\"Anton Nakov\",\"Carlos Thomas\"],\"publicationdate\":\"2011-11-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/11/Fich/dt1130e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.ijcb.org/journal/ijcb14q3a2.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ijcb.org/journal/ijcb14q3a2.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.ijcb.org/journal/ijcb14q3a2.pdf\",\"id\":\"oai:RePEc:ijc:ijcjou:y:2014:q:3:a:2\"},\"trust\":0.056218863}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bde:wpaper:1130"},"target_publication_author_list":{"type":"LIST_STRING","value":["Anton Nakov","Carlos Thomas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ijc:ijcjou:y:2014:q:3:a:2"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["monetary policy, state-dependent pricing, monopolistic competition"]},"trust":{"type":"FLOAT","value":0.056218863},"target_publication_title":{"type":"STRING","value":"Optimal monetary policy with state-dependent pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bde:wpaper:1130\",\"titles\":[\"Optimal monetary policy with state-dependent pricing\"],\"abstracts\":[\"We study optimal monetary policy from the timeless perspective in a general state-dependent pricing framework. Firms are monopolistic competitors and are subject to idiosyncratic menu cost shocks. We find that, under isoelastic preferences and no government spending, strict price stability is optimal both in the long run and in response to aggregate shocks. Key to this finding is an “envelope” property: at zero inflation, a marginal increase in the rate of inflation has no effect on firms’ profits and therefore has no effect on the rate of price adjustment. We offer an analytic solution which does not rely on local approximation or efficiency of the steady-state.\"],\"language\":\"und\",\"subjects\":[\"monetary policy, state-dependent pricing, monopolistic competition\"],\"creators\":[\"Anton Nakov\",\"Carlos Thomas\"],\"publicationdate\":\"2011-11-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/11/Fich/dt1130e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9846\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9846\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9846\",\"id\":\"oai:RePEc:cpr:ceprdp:9846\"},\"trust\":0.6236883}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bde:wpaper:1130"},"target_publication_author_list":{"type":"LIST_STRING","value":["Anton Nakov","Carlos Thomas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cpr:ceprdp:9846"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["monetary policy, state-dependent pricing, monopolistic competition"]},"trust":{"type":"FLOAT","value":0.6236883},"target_publication_title":{"type":"STRING","value":"Optimal monetary policy with state-dependent pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bde:wpaper:1130\",\"titles\":[\"Optimal monetary policy with state-dependent pricing\"],\"abstracts\":[\"We study optimal monetary policy from the timeless perspective in a general state-dependent pricing framework. Firms are monopolistic competitors and are subject to idiosyncratic menu cost shocks. We find that, under isoelastic preferences and no government spending, strict price stability is optimal both in the long run and in response to aggregate shocks. Key to this finding is an “envelope” property: at zero inflation, a marginal increase in the rate of inflation has no effect on firms’ profits and therefore has no effect on the rate of price adjustment. We offer an analytic solution which does not rely on local approximation or efficiency of the steady-state.\"],\"language\":\"und\",\"subjects\":[\"monetary policy, state-dependent pricing, monopolistic competition\"],\"creators\":[\"Anton Nakov\",\"Carlos Thomas\"],\"publicationdate\":\"2011-11-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/11/Fich/dt1130e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.federalreserve.gov/pubs/feds/2011/201148/201148abs.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.federalreserve.gov/pubs/feds/2011/201148/201148abs.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.federalreserve.gov/pubs/feds/2011/201148/201148abs.html\",\"id\":\"oai:RePEc:fip:fedgfe:2011-48\"},\"trust\":0.15722847}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bde:wpaper:1130"},"target_publication_author_list":{"type":"LIST_STRING","value":["Anton Nakov","Carlos Thomas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fip:fedgfe:2011-48"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["monetary policy, state-dependent pricing, monopolistic competition"]},"trust":{"type":"FLOAT","value":0.15722847},"target_publication_title":{"type":"STRING","value":"Optimal monetary policy with state-dependent pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ecb:ecbwps:20101250\",\"titles\":[\"Optimal monetary policy with state-dependent pricing\"],\"abstracts\":[\"We study optimal monetary policy in a flexible state-dependent pricing framework, in which monopolistic competition and stochastic menu costs are the only distortions. We show analytically that it is optimal to commit to zero inflation in the long run. Moreover, our numerical simulations indicate that the optimal stabilization policy is \\\"price stability\\\". These findings represent a generalization to a state-dependent framework of the same results found for the simple Calvo model with exogenous timing of price adjustment. JEL Classification: E31\"],\"language\":\"und\",\"subjects\":[\"optimal monetary policy, price stability, state-dependent pricing, stochastic menu costs\"],\"creators\":[\"Nakov, Anton\",\"Thomas, Carlos\"],\"publicationdate\":\"2010-10-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ecb.europa.eu/pub/pdf/scpwps/ecbwp1250.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/11/Fich/dt1130e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/11/Fich/dt1130e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/11/Fich/dt1130e.pdf\",\"id\":\"oai:RePEc:bde:wpaper:1130\"},\"trust\":0.47166157}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ecb:ecbwps:20101250"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nakov, Anton","Thomas, Carlos"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bde:wpaper:1130"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["optimal monetary policy, price stability, state-dependent pricing, stochastic menu costs"]},"trust":{"type":"FLOAT","value":0.47166157},"target_publication_title":{"type":"STRING","value":"Optimal monetary policy with state-dependent pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2010-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ecb:ecbwps:20101250\",\"titles\":[\"Optimal monetary policy with state-dependent pricing\"],\"abstracts\":[\"We study optimal monetary policy in a flexible state-dependent pricing framework, in which monopolistic competition and stochastic menu costs are the only distortions. We show analytically that it is optimal to commit to zero inflation in the long run. Moreover, our numerical simulations indicate that the optimal stabilization policy is \\\"price stability\\\". These findings represent a generalization to a state-dependent framework of the same results found for the simple Calvo model with exogenous timing of price adjustment. JEL Classification: E31\"],\"language\":\"und\",\"subjects\":[\"optimal monetary policy, price stability, state-dependent pricing, stochastic menu costs\"],\"creators\":[\"Nakov, Anton\",\"Thomas, Carlos\"],\"publicationdate\":\"2010-10-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ecb.europa.eu/pub/pdf/scpwps/ecbwp1250.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.ijcb.org/journal/ijcb14q3a2.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ijcb.org/journal/ijcb14q3a2.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.ijcb.org/journal/ijcb14q3a2.pdf\",\"id\":\"oai:RePEc:ijc:ijcjou:y:2014:q:3:a:2\"},\"trust\":0.4316681}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ecb:ecbwps:20101250"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nakov, Anton","Thomas, Carlos"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ijc:ijcjou:y:2014:q:3:a:2"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["optimal monetary policy, price stability, state-dependent pricing, stochastic menu costs"]},"trust":{"type":"FLOAT","value":0.4316681},"target_publication_title":{"type":"STRING","value":"Optimal monetary policy with state-dependent pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2010-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ecb:ecbwps:20101250\",\"titles\":[\"Optimal monetary policy with state-dependent pricing\"],\"abstracts\":[\"We study optimal monetary policy in a flexible state-dependent pricing framework, in which monopolistic competition and stochastic menu costs are the only distortions. We show analytically that it is optimal to commit to zero inflation in the long run. Moreover, our numerical simulations indicate that the optimal stabilization policy is \\\"price stability\\\". These findings represent a generalization to a state-dependent framework of the same results found for the simple Calvo model with exogenous timing of price adjustment. JEL Classification: E31\"],\"language\":\"und\",\"subjects\":[\"optimal monetary policy, price stability, state-dependent pricing, stochastic menu costs\"],\"creators\":[\"Nakov, Anton\",\"Thomas, Carlos\"],\"publicationdate\":\"2010-10-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ecb.europa.eu/pub/pdf/scpwps/ecbwp1250.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9846\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9846\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9846\",\"id\":\"oai:RePEc:cpr:ceprdp:9846\"},\"trust\":0.9443797}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ecb:ecbwps:20101250"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nakov, Anton","Thomas, Carlos"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cpr:ceprdp:9846"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["optimal monetary policy, price stability, state-dependent pricing, stochastic menu costs"]},"trust":{"type":"FLOAT","value":0.9443797},"target_publication_title":{"type":"STRING","value":"Optimal monetary policy with state-dependent pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2010-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ecb:ecbwps:20101250\",\"titles\":[\"Optimal monetary policy with state-dependent pricing\"],\"abstracts\":[\"We study optimal monetary policy in a flexible state-dependent pricing framework, in which monopolistic competition and stochastic menu costs are the only distortions. We show analytically that it is optimal to commit to zero inflation in the long run. Moreover, our numerical simulations indicate that the optimal stabilization policy is \\\"price stability\\\". These findings represent a generalization to a state-dependent framework of the same results found for the simple Calvo model with exogenous timing of price adjustment. JEL Classification: E31\"],\"language\":\"und\",\"subjects\":[\"optimal monetary policy, price stability, state-dependent pricing, stochastic menu costs\"],\"creators\":[\"Nakov, Anton\",\"Thomas, Carlos\"],\"publicationdate\":\"2010-10-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ecb.europa.eu/pub/pdf/scpwps/ecbwp1250.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.federalreserve.gov/pubs/feds/2011/201148/201148abs.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.federalreserve.gov/pubs/feds/2011/201148/201148abs.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.federalreserve.gov/pubs/feds/2011/201148/201148abs.html\",\"id\":\"oai:RePEc:fip:fedgfe:2011-48\"},\"trust\":0.7177079}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ecb:ecbwps:20101250"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nakov, Anton","Thomas, Carlos"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fip:fedgfe:2011-48"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["optimal monetary policy, price stability, state-dependent pricing, stochastic menu costs"]},"trust":{"type":"FLOAT","value":0.7177079},"target_publication_title":{"type":"STRING","value":"Optimal monetary policy with state-dependent pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2010-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ijc:ijcjou:y:2014:q:3:a:2\",\"titles\":[\"Optimal Monetary Policy with State-Dependent Pricing\"],\"abstracts\":[\"This paper studies optimal monetary policy from the timeless perspective in a general model of state-dependent pricing. Firms are modeled as monopolistic competitors subject to idiosyncratic menu cost shocks. We find that, under certain conditions, a policy of zero inflation is optimal both in the long run and in response to aggregate shocks. Key to this finding is an “envelope” property: at zero inflation, a marginal increase in the rate of inflation has no effect on firms’ profits and hence on their probability of repricing. We offer an analytic solution that does not require local approximation or efficiency of the steady state. Under more general conditions, we show numerically that the optimal commitment policy remains very close to strict inflation targeting.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Anton Nakov\",\"Carlos Thomas\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"International Journal of Central Banking\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ijcb.org/journal/ijcb14q3a2.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/11/Fich/dt1130e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/11/Fich/dt1130e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/11/Fich/dt1130e.pdf\",\"id\":\"oai:RePEc:bde:wpaper:1130\"},\"trust\":0.69326496}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ijc:ijcjou:y:2014:q:3:a:2"},"target_publication_author_list":{"type":"LIST_STRING","value":["Anton Nakov","Carlos Thomas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bde:wpaper:1130"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.69326496},"target_publication_title":{"type":"STRING","value":"Optimal Monetary Policy with State-Dependent Pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ijc:ijcjou:y:2014:q:3:a:2\",\"titles\":[\"Optimal Monetary Policy with State-Dependent Pricing\"],\"abstracts\":[\"This paper studies optimal monetary policy from the timeless perspective in a general model of state-dependent pricing. Firms are modeled as monopolistic competitors subject to idiosyncratic menu cost shocks. We find that, under certain conditions, a policy of zero inflation is optimal both in the long run and in response to aggregate shocks. Key to this finding is an “envelope” property: at zero inflation, a marginal increase in the rate of inflation has no effect on firms’ profits and hence on their probability of repricing. We offer an analytic solution that does not require local approximation or efficiency of the steady state. Under more general conditions, we show numerically that the optimal commitment policy remains very close to strict inflation targeting.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Anton Nakov\",\"Carlos Thomas\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"International Journal of Central Banking\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ijcb.org/journal/ijcb14q3a2.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.ecb.europa.eu/pub/pdf/scpwps/ecbwp1250.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ecb.europa.eu/pub/pdf/scpwps/ecbwp1250.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.ecb.europa.eu/pub/pdf/scpwps/ecbwp1250.pdf\",\"id\":\"oai:RePEc:ecb:ecbwps:20101250\"},\"trust\":0.43518943}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ijc:ijcjou:y:2014:q:3:a:2"},"target_publication_author_list":{"type":"LIST_STRING","value":["Anton Nakov","Carlos Thomas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ecb:ecbwps:20101250"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.43518943},"target_publication_title":{"type":"STRING","value":"Optimal Monetary Policy with State-Dependent Pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ijc:ijcjou:y:2014:q:3:a:2\",\"titles\":[\"Optimal Monetary Policy with State-Dependent Pricing\"],\"abstracts\":[\"This paper studies optimal monetary policy from the timeless perspective in a general model of state-dependent pricing. Firms are modeled as monopolistic competitors subject to idiosyncratic menu cost shocks. We find that, under certain conditions, a policy of zero inflation is optimal both in the long run and in response to aggregate shocks. Key to this finding is an “envelope” property: at zero inflation, a marginal increase in the rate of inflation has no effect on firms’ profits and hence on their probability of repricing. We offer an analytic solution that does not require local approximation or efficiency of the steady state. Under more general conditions, we show numerically that the optimal commitment policy remains very close to strict inflation targeting.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Anton Nakov\",\"Carlos Thomas\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"International Journal of Central Banking\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ijcb.org/journal/ijcb14q3a2.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9846\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9846\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9846\",\"id\":\"oai:RePEc:cpr:ceprdp:9846\"},\"trust\":0.20805055}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ijc:ijcjou:y:2014:q:3:a:2"},"target_publication_author_list":{"type":"LIST_STRING","value":["Anton Nakov","Carlos Thomas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cpr:ceprdp:9846"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.20805055},"target_publication_title":{"type":"STRING","value":"Optimal Monetary Policy with State-Dependent Pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ijc:ijcjou:y:2014:q:3:a:2\",\"titles\":[\"Optimal Monetary Policy with State-Dependent Pricing\"],\"abstracts\":[\"This paper studies optimal monetary policy from the timeless perspective in a general model of state-dependent pricing. Firms are modeled as monopolistic competitors subject to idiosyncratic menu cost shocks. We find that, under certain conditions, a policy of zero inflation is optimal both in the long run and in response to aggregate shocks. Key to this finding is an “envelope” property: at zero inflation, a marginal increase in the rate of inflation has no effect on firms’ profits and hence on their probability of repricing. We offer an analytic solution that does not require local approximation or efficiency of the steady state. Under more general conditions, we show numerically that the optimal commitment policy remains very close to strict inflation targeting.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Anton Nakov\",\"Carlos Thomas\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"International Journal of Central Banking\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ijcb.org/journal/ijcb14q3a2.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.federalreserve.gov/pubs/feds/2011/201148/201148abs.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.federalreserve.gov/pubs/feds/2011/201148/201148abs.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.federalreserve.gov/pubs/feds/2011/201148/201148abs.html\",\"id\":\"oai:RePEc:fip:fedgfe:2011-48\"},\"trust\":0.45065868}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ijc:ijcjou:y:2014:q:3:a:2"},"target_publication_author_list":{"type":"LIST_STRING","value":["Anton Nakov","Carlos Thomas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fip:fedgfe:2011-48"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.45065868},"target_publication_title":{"type":"STRING","value":"Optimal Monetary Policy with State-Dependent Pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cpr:ceprdp:9846\",\"titles\":[\"Optimal Monetary Policy with State-Dependent Pricing\"],\"abstracts\":[\"This paper studies optimal monetary policy from the timeless perspective in a general model of state-dependent pricing. Firms are modeled as monopolistic competitors subject to idiosyncratic menu cost shocks. We find that, under certain conditions, a policy of zero inflation is optimal both in the long run and in response to aggregate shocks. Key to this finding is an \\\"envelope\\\" property: at zero inflation, a marginal increase in the rate of inflation has no effect on firms\\u0027 profits and hence on their probability of repricing. We offer an analytic solution that does not require local approximation or e¢ ciency of the steady state. Under more general conditions, we show numerically that the optimal commitment policy remains very close to strict inflation targeting.\"],\"language\":\"und\",\"subjects\":[\"monetary policy; monopolistic competition; state-dependent pricing\"],\"creators\":[\"Nakov, Anton\",\"Thomas, Carlos\"],\"publicationdate\":\"2014-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9846\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/11/Fich/dt1130e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/11/Fich/dt1130e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/11/Fich/dt1130e.pdf\",\"id\":\"oai:RePEc:bde:wpaper:1130\"},\"trust\":0.11855662}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cpr:ceprdp:9846"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nakov, Anton","Thomas, Carlos"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bde:wpaper:1130"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["monetary policy; monopolistic competition; state-dependent pricing"]},"trust":{"type":"FLOAT","value":0.11855662},"target_publication_title":{"type":"STRING","value":"Optimal Monetary Policy with State-Dependent Pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cpr:ceprdp:9846\",\"titles\":[\"Optimal Monetary Policy with State-Dependent Pricing\"],\"abstracts\":[\"This paper studies optimal monetary policy from the timeless perspective in a general model of state-dependent pricing. Firms are modeled as monopolistic competitors subject to idiosyncratic menu cost shocks. We find that, under certain conditions, a policy of zero inflation is optimal both in the long run and in response to aggregate shocks. Key to this finding is an \\\"envelope\\\" property: at zero inflation, a marginal increase in the rate of inflation has no effect on firms\\u0027 profits and hence on their probability of repricing. We offer an analytic solution that does not require local approximation or e¢ ciency of the steady state. Under more general conditions, we show numerically that the optimal commitment policy remains very close to strict inflation targeting.\"],\"language\":\"und\",\"subjects\":[\"monetary policy; monopolistic competition; state-dependent pricing\"],\"creators\":[\"Nakov, Anton\",\"Thomas, Carlos\"],\"publicationdate\":\"2014-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9846\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.ecb.europa.eu/pub/pdf/scpwps/ecbwp1250.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ecb.europa.eu/pub/pdf/scpwps/ecbwp1250.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.ecb.europa.eu/pub/pdf/scpwps/ecbwp1250.pdf\",\"id\":\"oai:RePEc:ecb:ecbwps:20101250\"},\"trust\":0.27484733}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cpr:ceprdp:9846"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nakov, Anton","Thomas, Carlos"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ecb:ecbwps:20101250"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["monetary policy; monopolistic competition; state-dependent pricing"]},"trust":{"type":"FLOAT","value":0.27484733},"target_publication_title":{"type":"STRING","value":"Optimal Monetary Policy with State-Dependent Pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cpr:ceprdp:9846\",\"titles\":[\"Optimal Monetary Policy with State-Dependent Pricing\"],\"abstracts\":[\"This paper studies optimal monetary policy from the timeless perspective in a general model of state-dependent pricing. Firms are modeled as monopolistic competitors subject to idiosyncratic menu cost shocks. We find that, under certain conditions, a policy of zero inflation is optimal both in the long run and in response to aggregate shocks. Key to this finding is an \\\"envelope\\\" property: at zero inflation, a marginal increase in the rate of inflation has no effect on firms\\u0027 profits and hence on their probability of repricing. We offer an analytic solution that does not require local approximation or e¢ ciency of the steady state. Under more general conditions, we show numerically that the optimal commitment policy remains very close to strict inflation targeting.\"],\"language\":\"und\",\"subjects\":[\"monetary policy; monopolistic competition; state-dependent pricing\"],\"creators\":[\"Nakov, Anton\",\"Thomas, Carlos\"],\"publicationdate\":\"2014-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9846\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.ijcb.org/journal/ijcb14q3a2.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ijcb.org/journal/ijcb14q3a2.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.ijcb.org/journal/ijcb14q3a2.pdf\",\"id\":\"oai:RePEc:ijc:ijcjou:y:2014:q:3:a:2\"},\"trust\":0.03358084}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cpr:ceprdp:9846"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nakov, Anton","Thomas, Carlos"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ijc:ijcjou:y:2014:q:3:a:2"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["monetary policy; monopolistic competition; state-dependent pricing"]},"trust":{"type":"FLOAT","value":0.03358084},"target_publication_title":{"type":"STRING","value":"Optimal Monetary Policy with State-Dependent Pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cpr:ceprdp:9846\",\"titles\":[\"Optimal Monetary Policy with State-Dependent Pricing\"],\"abstracts\":[\"This paper studies optimal monetary policy from the timeless perspective in a general model of state-dependent pricing. Firms are modeled as monopolistic competitors subject to idiosyncratic menu cost shocks. We find that, under certain conditions, a policy of zero inflation is optimal both in the long run and in response to aggregate shocks. Key to this finding is an \\\"envelope\\\" property: at zero inflation, a marginal increase in the rate of inflation has no effect on firms\\u0027 profits and hence on their probability of repricing. We offer an analytic solution that does not require local approximation or e¢ ciency of the steady state. Under more general conditions, we show numerically that the optimal commitment policy remains very close to strict inflation targeting.\"],\"language\":\"und\",\"subjects\":[\"monetary policy; monopolistic competition; state-dependent pricing\"],\"creators\":[\"Nakov, Anton\",\"Thomas, Carlos\"],\"publicationdate\":\"2014-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9846\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.federalreserve.gov/pubs/feds/2011/201148/201148abs.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.federalreserve.gov/pubs/feds/2011/201148/201148abs.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.federalreserve.gov/pubs/feds/2011/201148/201148abs.html\",\"id\":\"oai:RePEc:fip:fedgfe:2011-48\"},\"trust\":0.7570607}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cpr:ceprdp:9846"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nakov, Anton","Thomas, Carlos"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fip:fedgfe:2011-48"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["monetary policy; monopolistic competition; state-dependent pricing"]},"trust":{"type":"FLOAT","value":0.7570607},"target_publication_title":{"type":"STRING","value":"Optimal Monetary Policy with State-Dependent Pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fip:fedgfe:2011-48\",\"titles\":[\"Optimal monetary policy with state-dependent pricing\"],\"abstracts\":[\"In an abstract economic model, we study optimal monetary policy from the timeless perspective under a general state-dependent pricing framework. We find that when firms are monopolistic competitors subject to idiosyncratic menu cost shocks, households have isoelastic preferences, and there is no government spending, strict price stability is optimal both in the long run and in response to aggregate shocks. Key to this finding is an \\\"envelope\\\" property: At zero inflation, a marginal increase in the rate of inflation has no effect on firms\\u0027 profits and therefore it has no effect on the probability of price adjustment. Our results lend support to more informal statements about the suitability of the Calvo model for studying optimal monetary policy despite its apparent conflict with the Lucas critique. We offer an analytic solution that does not require local approximation or efficiency of the steady state.\"],\"language\":\"und\",\"subjects\":[\"Monetary policy - Econometric models ; Competition\"],\"creators\":[\"Anton Nakov\",\"Carlos Thomas\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.federalreserve.gov/pubs/feds/2011/201148/201148abs.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/11/Fich/dt1130e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/11/Fich/dt1130e.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.bde.es/f/webbde/SES/Secciones/Publicaciones/PublicacionesSeriadas/DocumentosTrabajo/11/Fich/dt1130e.pdf\",\"id\":\"oai:RePEc:bde:wpaper:1130\"},\"trust\":0.36114752}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fip:fedgfe:2011-48"},"target_publication_author_list":{"type":"LIST_STRING","value":["Anton Nakov","Carlos Thomas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bde:wpaper:1130"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Monetary policy - Econometric models ; Competition"]},"trust":{"type":"FLOAT","value":0.36114752},"target_publication_title":{"type":"STRING","value":"Optimal monetary policy with state-dependent pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fip:fedgfe:2011-48\",\"titles\":[\"Optimal monetary policy with state-dependent pricing\"],\"abstracts\":[\"In an abstract economic model, we study optimal monetary policy from the timeless perspective under a general state-dependent pricing framework. We find that when firms are monopolistic competitors subject to idiosyncratic menu cost shocks, households have isoelastic preferences, and there is no government spending, strict price stability is optimal both in the long run and in response to aggregate shocks. Key to this finding is an \\\"envelope\\\" property: At zero inflation, a marginal increase in the rate of inflation has no effect on firms\\u0027 profits and therefore it has no effect on the probability of price adjustment. Our results lend support to more informal statements about the suitability of the Calvo model for studying optimal monetary policy despite its apparent conflict with the Lucas critique. We offer an analytic solution that does not require local approximation or efficiency of the steady state.\"],\"language\":\"und\",\"subjects\":[\"Monetary policy - Econometric models ; Competition\"],\"creators\":[\"Anton Nakov\",\"Carlos Thomas\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.federalreserve.gov/pubs/feds/2011/201148/201148abs.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.ecb.europa.eu/pub/pdf/scpwps/ecbwp1250.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ecb.europa.eu/pub/pdf/scpwps/ecbwp1250.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.ecb.europa.eu/pub/pdf/scpwps/ecbwp1250.pdf\",\"id\":\"oai:RePEc:ecb:ecbwps:20101250\"},\"trust\":0.85206574}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fip:fedgfe:2011-48"},"target_publication_author_list":{"type":"LIST_STRING","value":["Anton Nakov","Carlos Thomas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ecb:ecbwps:20101250"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Monetary policy - Econometric models ; Competition"]},"trust":{"type":"FLOAT","value":0.85206574},"target_publication_title":{"type":"STRING","value":"Optimal monetary policy with state-dependent pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fip:fedgfe:2011-48\",\"titles\":[\"Optimal monetary policy with state-dependent pricing\"],\"abstracts\":[\"In an abstract economic model, we study optimal monetary policy from the timeless perspective under a general state-dependent pricing framework. We find that when firms are monopolistic competitors subject to idiosyncratic menu cost shocks, households have isoelastic preferences, and there is no government spending, strict price stability is optimal both in the long run and in response to aggregate shocks. Key to this finding is an \\\"envelope\\\" property: At zero inflation, a marginal increase in the rate of inflation has no effect on firms\\u0027 profits and therefore it has no effect on the probability of price adjustment. Our results lend support to more informal statements about the suitability of the Calvo model for studying optimal monetary policy despite its apparent conflict with the Lucas critique. We offer an analytic solution that does not require local approximation or efficiency of the steady state.\"],\"language\":\"und\",\"subjects\":[\"Monetary policy - Econometric models ; Competition\"],\"creators\":[\"Anton Nakov\",\"Carlos Thomas\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.federalreserve.gov/pubs/feds/2011/201148/201148abs.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.ijcb.org/journal/ijcb14q3a2.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ijcb.org/journal/ijcb14q3a2.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.ijcb.org/journal/ijcb14q3a2.pdf\",\"id\":\"oai:RePEc:ijc:ijcjou:y:2014:q:3:a:2\"},\"trust\":0.293617}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fip:fedgfe:2011-48"},"target_publication_author_list":{"type":"LIST_STRING","value":["Anton Nakov","Carlos Thomas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ijc:ijcjou:y:2014:q:3:a:2"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Monetary policy - Econometric models ; Competition"]},"trust":{"type":"FLOAT","value":0.293617},"target_publication_title":{"type":"STRING","value":"Optimal monetary policy with state-dependent pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fip:fedgfe:2011-48\",\"titles\":[\"Optimal monetary policy with state-dependent pricing\"],\"abstracts\":[\"In an abstract economic model, we study optimal monetary policy from the timeless perspective under a general state-dependent pricing framework. We find that when firms are monopolistic competitors subject to idiosyncratic menu cost shocks, households have isoelastic preferences, and there is no government spending, strict price stability is optimal both in the long run and in response to aggregate shocks. Key to this finding is an \\\"envelope\\\" property: At zero inflation, a marginal increase in the rate of inflation has no effect on firms\\u0027 profits and therefore it has no effect on the probability of price adjustment. Our results lend support to more informal statements about the suitability of the Calvo model for studying optimal monetary policy despite its apparent conflict with the Lucas critique. We offer an analytic solution that does not require local approximation or efficiency of the steady state.\"],\"language\":\"und\",\"subjects\":[\"Monetary policy - Econometric models ; Competition\"],\"creators\":[\"Anton Nakov\",\"Carlos Thomas\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.federalreserve.gov/pubs/feds/2011/201148/201148abs.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9846\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9846\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cepr.org/active/publications/discussion_papers/dp.php?dpno\\u003d9846\",\"id\":\"oai:RePEc:cpr:ceprdp:9846\"},\"trust\":0.3524524}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fip:fedgfe:2011-48"},"target_publication_author_list":{"type":"LIST_STRING","value":["Anton Nakov","Carlos Thomas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cpr:ceprdp:9846"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Monetary policy - Econometric models ; Competition"]},"trust":{"type":"FLOAT","value":0.3524524},"target_publication_title":{"type":"STRING","value":"Optimal monetary policy with state-dependent pricing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:DiVA.org:du-13473\",\"titles\":[\"Automatic and objective assessment of alternating tapping performance in Parkinson’s disease\"],\"abstracts\":[\"This paper presents the development and evaluation of a method for enabling quantitative and automatic scoring of alternating tapping performance of patients with Parkinson’s disease (PD). Ten healthy elderly subjects and 95 patients in different clinical stages of PD have utilized a touch-pad handheld computer to perform alternate tapping tests in their home environments. First, a neurologist used a web-based system to visually assess impairments in four tapping dimensions (‘speed’, ‘accuracy’, ‘fatigue’ and ‘arrhythmia’) and a global tapping severity (GTS). Second, tapping signals were processed with time series analysis and statistical methods to derive 24 quantitative parameters. Third, principal component analysis was used to reduce the dimensions of these parameters and to obtain scores for the four dimensions. Finally, a logistic regression classifier was trained using a 10-fold stratified cross-validation to map the reduced parameters to the corresponding visually assessed GTS scores. Results showed that the computed scores correlated well to visually assessed scores and were significantly different across Unified Parkinson’s Disease Rating Scale scores of upper limb motor performance. In addition, they had good internal consistency, had good ability to discriminate between healthy elderly and patients in different disease stages, had good sensitivity to treatment interventions and could reflect the natural disease progression over time. In conclusion, the automatic method can be useful to objectively assess the tapping performance of PD patients and can be included in telemedicine tools for remote monitoring of tapping. \",\"\\u003cp\\u003eOpen Access\\u003c/p\\u003e\"],\"language\":\"eng\",\"subjects\":[\"alternating tapping\",\"touch-pad\",\"handheld computer\",\"telemedicine\",\"Parkinson’s disease\",\"remote monitoring\",\"automatic assessment\",\"objective assessment\",\"visual assessment\"],\"creators\":[\"Memedi, Mevludin\",\"Khan, Taha\",\"Grenholm, Peter\",\"Nyholm, Dag\",\"Westin, Jerker\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"Department of Neuroscience, Neurology, Uppsala University\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Dalarna University College Electronic Archive\"],\"pids\":[{\"value\":\"10.3390/s131216965\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:du-13473\",\"license\":\"OPEN\",\"hostedby\":\"Dalarna University College Electronic Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://www.mdpi.com/1424-8220/13/12/16965\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.mdpi.com/1424-8220/13/12/16965\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.mdpi.com/1424-8220/13/12/16965\",\"id\":\"oai:doaj.org/article:3139b805d3d14d15835d5baed675421c\"},\"trust\":0.2866665}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Dalarna University College Electronic Archive"},"target_publication_id":{"type":"STRING","value":"oai:DiVA.org:du-13473"},"target_publication_author_list":{"type":"LIST_STRING","value":["Memedi, Mevludin","Khan, Taha","Grenholm, Peter","Nyholm, Dag","Westin, Jerker"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:3139b805d3d14d15835d5baed675421c"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["alternating tapping","touch-pad","handheld computer","telemedicine","Parkinson’s disease","remote monitoring","automatic assessment","objective assessment","visual assessment"]},"trust":{"type":"FLOAT","value":0.2866665},"target_publication_title":{"type":"STRING","value":"Automatic and objective assessment of alternating tapping performance in Parkinson’s disease"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::fbd7939d674997cdb4692d34de8633c4"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:DiVA.org:du-13473\",\"titles\":[\"Automatic and objective assessment of alternating tapping performance in Parkinson’s disease\"],\"abstracts\":[\"This paper presents the development and evaluation of a method for enabling quantitative and automatic scoring of alternating tapping performance of patients with Parkinson’s disease (PD). Ten healthy elderly subjects and 95 patients in different clinical stages of PD have utilized a touch-pad handheld computer to perform alternate tapping tests in their home environments. First, a neurologist used a web-based system to visually assess impairments in four tapping dimensions (‘speed’, ‘accuracy’, ‘fatigue’ and ‘arrhythmia’) and a global tapping severity (GTS). Second, tapping signals were processed with time series analysis and statistical methods to derive 24 quantitative parameters. Third, principal component analysis was used to reduce the dimensions of these parameters and to obtain scores for the four dimensions. Finally, a logistic regression classifier was trained using a 10-fold stratified cross-validation to map the reduced parameters to the corresponding visually assessed GTS scores. Results showed that the computed scores correlated well to visually assessed scores and were significantly different across Unified Parkinson’s Disease Rating Scale scores of upper limb motor performance. In addition, they had good internal consistency, had good ability to discriminate between healthy elderly and patients in different disease stages, had good sensitivity to treatment interventions and could reflect the natural disease progression over time. In conclusion, the automatic method can be useful to objectively assess the tapping performance of PD patients and can be included in telemedicine tools for remote monitoring of tapping. \",\"\\u003cp\\u003eOpen Access\\u003c/p\\u003e\"],\"language\":\"eng\",\"subjects\":[\"alternating tapping\",\"touch-pad\",\"handheld computer\",\"telemedicine\",\"Parkinson’s disease\",\"remote monitoring\",\"automatic assessment\",\"objective assessment\",\"visual assessment\"],\"creators\":[\"Memedi, Mevludin\",\"Khan, Taha\",\"Grenholm, Peter\",\"Nyholm, Dag\",\"Westin, Jerker\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"Department of Neuroscience, Neurology, Uppsala University\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Dalarna University College Electronic Archive\"],\"pids\":[{\"value\":\"10.3390/s131216965\",\"type\":\"doi\"},{\"value\":\"PMC3892880\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:du-13473\",\"license\":\"OPEN\",\"hostedby\":\"Dalarna University College Electronic Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3892880\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3892880\",\"id\":\"oai:europepmc.org:2881298\"},\"trust\":0.92059803}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Dalarna University College Electronic Archive"},"target_publication_id":{"type":"STRING","value":"oai:DiVA.org:du-13473"},"target_publication_author_list":{"type":"LIST_STRING","value":["Memedi, Mevludin","Khan, Taha","Grenholm, Peter","Nyholm, Dag","Westin, Jerker"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2881298"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["alternating tapping","touch-pad","handheld computer","telemedicine","Parkinson’s disease","remote monitoring","automatic assessment","objective assessment","visual assessment"]},"trust":{"type":"FLOAT","value":0.92059803},"target_publication_title":{"type":"STRING","value":"Automatic and objective assessment of alternating tapping performance in Parkinson’s disease"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::fbd7939d674997cdb4692d34de8633c4"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:DiVA.org:du-13473\",\"titles\":[\"Automatic and objective assessment of alternating tapping performance in Parkinson’s disease\"],\"abstracts\":[\"This paper presents the development and evaluation of a method for enabling quantitative and automatic scoring of alternating tapping performance of patients with Parkinson’s disease (PD). Ten healthy elderly subjects and 95 patients in different clinical stages of PD have utilized a touch-pad handheld computer to perform alternate tapping tests in their home environments. First, a neurologist used a web-based system to visually assess impairments in four tapping dimensions (‘speed’, ‘accuracy’, ‘fatigue’ and ‘arrhythmia’) and a global tapping severity (GTS). Second, tapping signals were processed with time series analysis and statistical methods to derive 24 quantitative parameters. Third, principal component analysis was used to reduce the dimensions of these parameters and to obtain scores for the four dimensions. Finally, a logistic regression classifier was trained using a 10-fold stratified cross-validation to map the reduced parameters to the corresponding visually assessed GTS scores. Results showed that the computed scores correlated well to visually assessed scores and were significantly different across Unified Parkinson’s Disease Rating Scale scores of upper limb motor performance. In addition, they had good internal consistency, had good ability to discriminate between healthy elderly and patients in different disease stages, had good sensitivity to treatment interventions and could reflect the natural disease progression over time. In conclusion, the automatic method can be useful to objectively assess the tapping performance of PD patients and can be included in telemedicine tools for remote monitoring of tapping. \",\"\\u003cp\\u003eOpen Access\\u003c/p\\u003e\"],\"language\":\"eng\",\"subjects\":[\"alternating tapping\",\"touch-pad\",\"handheld computer\",\"telemedicine\",\"Parkinson’s disease\",\"remote monitoring\",\"automatic assessment\",\"objective assessment\",\"visual assessment\"],\"creators\":[\"Memedi, Mevludin\",\"Khan, Taha\",\"Grenholm, Peter\",\"Nyholm, Dag\",\"Westin, Jerker\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"Department of Neuroscience, Neurology, Uppsala University\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Dalarna University College Electronic Archive\"],\"pids\":[{\"value\":\"10.3390/s131216965\",\"type\":\"doi\"},{\"value\":\"24351667\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:du-13473\",\"license\":\"OPEN\",\"hostedby\":\"Dalarna University College Electronic Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"24351667\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3892880\",\"id\":\"oai:europepmc.org:2881298\"},\"trust\":0.92059803}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Dalarna University College Electronic Archive"},"target_publication_id":{"type":"STRING","value":"oai:DiVA.org:du-13473"},"target_publication_author_list":{"type":"LIST_STRING","value":["Memedi, Mevludin","Khan, Taha","Grenholm, Peter","Nyholm, Dag","Westin, Jerker"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2881298"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["alternating tapping","touch-pad","handheld computer","telemedicine","Parkinson’s disease","remote monitoring","automatic assessment","objective assessment","visual assessment"]},"trust":{"type":"FLOAT","value":0.92059803},"target_publication_title":{"type":"STRING","value":"Automatic and objective assessment of alternating tapping performance in Parkinson’s disease"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::fbd7939d674997cdb4692d34de8633c4"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2881298\",\"titles\":[\"Automatic and Objective Assessment of Alternating Tapping Performance in Parkinson\\u0027s Disease\"],\"abstracts\":[\"This paper presents the development and evaluation of a method for enabling quantitative and automatic scoring of alternating tapping performance of patients with Parkinson\\u0027s disease (PD). Ten healthy elderly subjects and 95 patients in different clinical stages of PD have utilized a touch-pad handheld computer to perform alternate tapping tests in their home environments. First, a neurologist used a web-based system to visually assess impairments in four tapping dimensions (‘speed’, ‘accuracy’, ‘fatigue’ and ‘arrhythmia’) and a global tapping severity (GTS). Second, tapping signals were processed with time series analysis and statistical methods to derive 24 quantitative parameters. Third, principal component analysis was used to reduce the dimensions of these parameters and to obtain scores for the four dimensions. Finally, a logistic regression classifier was trained using a 10-fold stratified cross-validation to map the reduced parameters to the corresponding visually assessed GTS scores. Results showed that the computed scores correlated well to visually assessed scores and were significantly different across Unified Parkinson\\u0027s Disease Rating Scale scores of upper limb motor performance. In addition, they had good internal consistency, had good ability to discriminate between healthy elderly and patients in different disease stages, had good sensitivity to treatment interventions and could reflect the natural disease progression over time. In conclusion, the automatic method can be useful to objectively assess the tapping performance of PD patients and can be included in telemedicine tools for remote monitoring of tapping.\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"alternating tapping\",\"touch-pad\",\"handheld computer\",\"telemedicine\",\"Parkinson\\u0027s disease\",\"remote monitoring\",\"automatic assessment\",\"objective assessment\",\"visual assessment\"],\"creators\":[\"Memedi, Mevludin\",\"Khan, Taha\",\"Grenholm, Peter\",\"Nyholm, Dag\",\"Westin, Jerker\"],\"publicationdate\":\"2013-12-01\",\"publisher\":\"Molecular Diversity Preservation International (MDPI)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Sensors (Basel, Switzerland)\",\"issn\":\"\",\"eissn\":\"1424-8220\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3390/s131216965\",\"type\":\"doi\"},{\"value\":\"PMC3892880\",\"type\":\"pmc\"},{\"value\":\"24351667\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3892880\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.mdpi.com/1424-8220/13/12/16965\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.mdpi.com/1424-8220/13/12/16965\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.mdpi.com/1424-8220/13/12/16965\",\"id\":\"oai:doaj.org/article:3139b805d3d14d15835d5baed675421c\"},\"trust\":0.91290885}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2881298"},"target_publication_author_list":{"type":"LIST_STRING","value":["Memedi, Mevludin","Khan, Taha","Grenholm, Peter","Nyholm, Dag","Westin, Jerker"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:3139b805d3d14d15835d5baed675421c"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","alternating tapping","touch-pad","handheld computer","telemedicine","Parkinson\u0027s disease","remote monitoring","automatic assessment","objective assessment","visual assessment"]},"trust":{"type":"FLOAT","value":0.91290885},"target_publication_title":{"type":"STRING","value":"Automatic and Objective Assessment of Alternating Tapping Performance in Parkinson\u0027s Disease"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2013-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2881298\",\"titles\":[\"Automatic and Objective Assessment of Alternating Tapping Performance in Parkinson\\u0027s Disease\"],\"abstracts\":[\"This paper presents the development and evaluation of a method for enabling quantitative and automatic scoring of alternating tapping performance of patients with Parkinson\\u0027s disease (PD). Ten healthy elderly subjects and 95 patients in different clinical stages of PD have utilized a touch-pad handheld computer to perform alternate tapping tests in their home environments. First, a neurologist used a web-based system to visually assess impairments in four tapping dimensions (‘speed’, ‘accuracy’, ‘fatigue’ and ‘arrhythmia’) and a global tapping severity (GTS). Second, tapping signals were processed with time series analysis and statistical methods to derive 24 quantitative parameters. Third, principal component analysis was used to reduce the dimensions of these parameters and to obtain scores for the four dimensions. Finally, a logistic regression classifier was trained using a 10-fold stratified cross-validation to map the reduced parameters to the corresponding visually assessed GTS scores. Results showed that the computed scores correlated well to visually assessed scores and were significantly different across Unified Parkinson\\u0027s Disease Rating Scale scores of upper limb motor performance. In addition, they had good internal consistency, had good ability to discriminate between healthy elderly and patients in different disease stages, had good sensitivity to treatment interventions and could reflect the natural disease progression over time. In conclusion, the automatic method can be useful to objectively assess the tapping performance of PD patients and can be included in telemedicine tools for remote monitoring of tapping.\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"alternating tapping\",\"touch-pad\",\"handheld computer\",\"telemedicine\",\"Parkinson\\u0027s disease\",\"remote monitoring\",\"automatic assessment\",\"objective assessment\",\"visual assessment\"],\"creators\":[\"Memedi, Mevludin\",\"Khan, Taha\",\"Grenholm, Peter\",\"Nyholm, Dag\",\"Westin, Jerker\"],\"publicationdate\":\"2013-12-01\",\"publisher\":\"Molecular Diversity Preservation International (MDPI)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Sensors (Basel, Switzerland)\",\"issn\":\"\",\"eissn\":\"1424-8220\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3390/s131216965\",\"type\":\"doi\"},{\"value\":\"PMC3892880\",\"type\":\"pmc\"},{\"value\":\"24351667\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3892880\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:du-13473\",\"license\":\"OPEN\",\"hostedby\":\"Dalarna University College Electronic Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:du-13473\",\"license\":\"OPEN\",\"hostedby\":\"Dalarna University College Electronic Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Dalarna University College Electronic Archive\",\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:du-13473\",\"id\":\"oai:DiVA.org:du-13473\"},\"trust\":0.14407945}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2881298"},"target_publication_author_list":{"type":"LIST_STRING","value":["Memedi, Mevludin","Khan, Taha","Grenholm, Peter","Nyholm, Dag","Westin, Jerker"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:DiVA.org:du-13473"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::fbd7939d674997cdb4692d34de8633c4"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","alternating tapping","touch-pad","handheld computer","telemedicine","Parkinson\u0027s disease","remote monitoring","automatic assessment","objective assessment","visual assessment"]},"trust":{"type":"FLOAT","value":0.14407945},"target_publication_title":{"type":"STRING","value":"Automatic and Objective Assessment of Alternating Tapping Performance in Parkinson\u0027s Disease"},"provenance_datasource_name":{"type":"STRING","value":"Dalarna University College Electronic Archive"},"target_dateofacceptance":{"type":"DATE","value":"2013-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00790702v1\",\"titles\":[\"A Parallel Inertial Proximal Optimization Method\"],\"abstracts\":[\"International audience\",\"The Douglas-Rachford algorithm is a popular iterative method for finding a zero of a sum of two maximal monotone operators defined on a Hilbert space. In this paper, we propose an extension of this algorithm including inertia parameters and develop parallel versions to deal with the case of a sum of an arbitrary number of maximal operators. Based on this algorithm, parallel proximal algorithms are proposed to minimize over a linear subspace of a Hilbert space the sum of a finite number of proper, lower semicontinuous convex functions composed with linear operators. It is shown that particular cases of these methods are the simultaneous direction method of multipliers proposed by Stetzer et al., the parallel proximal algorithm developed by Combettes and Pesquet, and a parallelized version of an algorithm proposed by Attouch and Soueycatt.\"],\"language\":\"eng\",\"subjects\":[\"monotone operators\",\"convex optimization\",\"proximal algorithms\",\"parallel algorithms\",\"[SPI.SIGNAL] Engineering Sciences/Signal and Image processing\",\"[INFO.INFO-TS] Computer Science/Signal and Image Processing\",\"[MATH.MATH-FA] Mathematics/Functional Analysis\"],\"creators\":[\"Pesquet, Jean-Christophe\",\"Pustelnik, Nelly\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Yokohama Publishers\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire d\\u0027Informatique Gaspard-Monge (LIGM) ; Université Paris-Est Marne-la-Vallée (UPEMLV) - École des Ponts ParisTech (ENPC) - Fédération de Recherche Bézout - ESIEE - CNRS\",\"Laboratoire de Physique de l\\u0027ENS Lyon (Phys-ENS) ; École Normale Supérieure (ENS) - Lyon - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00790702\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00790702\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00790702\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00790702\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00790702\"},\"trust\":0.92892563}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00790702v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pesquet, Jean-Christophe","Pustelnik, Nelly"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00790702"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["monotone operators","convex optimization","proximal algorithms","parallel algorithms","[SPI.SIGNAL] Engineering Sciences/Signal and Image processing","[INFO.INFO-TS] Computer Science/Signal and Image Processing","[MATH.MATH-FA] Mathematics/Functional Analysis"]},"trust":{"type":"FLOAT","value":0.92892563},"target_publication_title":{"type":"STRING","value":"A Parallel Inertial Proximal Optimization Method"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00790702\",\"titles\":[\"A Parallel Inertial Proximal Optimization Method\"],\"abstracts\":[\"The Douglas-Rachford algorithm is a popular iterative method for finding a zero of a sum of two maximal monotone operators defined on a Hilbert space. In this paper, we propose an extension of this algorithm including inertia parameters and develop parallel versions to deal with the case of a sum of an arbitrary number of maximal operators. Based on this algorithm, parallel proximal algorithms are proposed to minimize over a linear subspace of a Hilbert space the sum of a finite number of proper, lower semicontinuous convex functions composed with linear operators. It is shown that particular cases of these methods are the simultaneous direction method of multipliers proposed by Stetzer et al., the parallel proximal algorithm developed by Combettes and Pesquet, and a parallelized version of an algorithm proposed by Attouch and Soueycatt.\"],\"language\":\"eng\",\"subjects\":[\"[SPI:SIGNAL] Engineering Sciences/Signal and Image processing\",\"[SPI:SIGNAL] Sciences de l\\u0027ingénieur/Traitement du signal et de l\\u0027image\",\"[INFO:INFO_TS] Computer Science/Signal and Image Processing\",\"[INFO:INFO_TS] Informatique/Traitement du signal et de l\\u0027image\",\"[MATH:MATH_FA] Mathematics/Functional Analysis\",\"[MATH:MATH_FA] Mathématiques/Analyse fonctionnelle\",\"monotone operators\",\"convex optimization\",\"proximal algorithms\",\"parallel algorithms\"],\"creators\":[\"Pesquet, Jean-Christophe\",\"Pustelnik, Nelly\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00790702\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00790702\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00790702\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00790702\",\"id\":\"oai:HAL:hal-00790702v1\"},\"trust\":0.4650916}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00790702"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pesquet, Jean-Christophe","Pustelnik, Nelly"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00790702v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SPI:SIGNAL] Engineering Sciences/Signal and Image processing","[SPI:SIGNAL] Sciences de l\u0027ingénieur/Traitement du signal et de l\u0027image","[INFO:INFO_TS] Computer Science/Signal and Image Processing","[INFO:INFO_TS] Informatique/Traitement du signal et de l\u0027image","[MATH:MATH_FA] Mathematics/Functional Analysis","[MATH:MATH_FA] Mathématiques/Analyse fonctionnelle","monotone operators","convex optimization","proximal algorithms","parallel algorithms"]},"trust":{"type":"FLOAT","value":0.4650916},"target_publication_title":{"type":"STRING","value":"A Parallel Inertial Proximal Optimization Method"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1105.3819\",\"titles\":[\"Nonorthogonal pairs of copropagating optical modes in deformed microdisk cavities\"],\"abstracts\":[\" Recently, it has been shown that spiral-shaped microdisk cavities support\\nhighly nonorthogonal pairs of copropagating modes with a preferred sense of\\nrotation (spatial chirality) [Wiersig et al., Phys. Rev. A 78, 053809 (2008)].\\nHere, we provide numerical evidence which indicates that such pairs are a\\ncommon feature of deformed microdisk cavities which lack mirror symmetries. In\\nparticular, we demonstrate that discontinuities of the cavity boundary such as\\nthe notch in the spiral cavity are not needed. We find a quantitative relation\\nbetween the nonorthogonality and the chirality of the modes which agrees well\\nwith the predictions from an effective non-Hermitian Hamiltonian. A comparison\\nto ray-tracing simulations is given.\\n\"],\"language\":\"eng\",\"subjects\":[\"Physics - Optics\",\"Nonlinear Sciences - Chaotic Dynamics\"],\"creators\":[\"Wiersig, Jan\",\"Eberspächer, Alexander\",\"Shim, Jeong-Bo\",\"Ryu, Jung-Wan\",\"Shinohara, Susumu\",\"Hentschel, Martina\",\"Schomerus, Henning\"],\"publicationdate\":\"2011-05-19\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1103/PhysRevA.84.023845\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1105.3819\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://eprints.lancs.ac.uk/51672/\",\"license\":\"OPEN\",\"hostedby\":\"Lancaster EPrints\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.lancs.ac.uk/51672/\",\"license\":\"OPEN\",\"hostedby\":\"Lancaster EPrints\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Lancaster EPrints\",\"url\":\"http://eprints.lancs.ac.uk/51672/\",\"id\":\"oai:eprints.lancs.ac.uk:51672\"},\"trust\":0.7587484}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1105.3819"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wiersig, Jan","Eberspächer, Alexander","Shim, Jeong-Bo","Ryu, Jung-Wan","Shinohara, Susumu","Hentschel, Martina","Schomerus, Henning"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.lancs.ac.uk:51672"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::757b505cfd34c64c85ca5b5690ee5293"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics - Optics","Nonlinear Sciences - Chaotic Dynamics"]},"trust":{"type":"FLOAT","value":0.7587484},"target_publication_title":{"type":"STRING","value":"Nonorthogonal pairs of copropagating optical modes in deformed microdisk cavities"},"provenance_datasource_name":{"type":"STRING","value":"Lancaster EPrints"},"target_dateofacceptance":{"type":"DATE","value":"2011-05-19"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:eprints.lancs.ac.uk:51672\",\"titles\":[\"Nonorthogonal pairs of copropagating optical modes in deformed microdisk cavities\"],\"abstracts\":[\"Recently, it has been shown that spiral-shaped microdisk cavities support highly nonorthogonal pairs of copropagating modes with a preferred sense of rotation (spatial chirality) [ J. Wiersig et al. Phys. Rev. A 78 053809 (2008)]. Here, we provide numerical evidence which indicates that such pairs are a common feature of deformed microdisk cavities which lack mirror symmetries. In particular, we demonstrate that discontinuities of the cavity boundary such as the notch in the spiral cavity are not needed. We find a quantitative relation between the nonorthogonality and the chirality of the modes which agrees well with the predictions from an effective non-Hermitian Hamiltonian. A comparison to ray-tracing simulations is given.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Wiersig, Jan\",\"Eberspächer, Alexander\",\"Shim, Jeong-Bo\",\"Ryu, Jung-Wan\",\"Shinohara, Sususmu\",\"Hentschel, M.\",\"Schomerus, Henning\"],\"publicationdate\":\"2011-08-29\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Lancaster EPrints\"],\"pids\":[{\"value\":\"10.1103/PhysRevA.84.023845\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://eprints.lancs.ac.uk/51672/\",\"license\":\"OPEN\",\"hostedby\":\"Lancaster EPrints\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/1105.3819\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1105.3819\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1105.3819\",\"id\":\"oai:arXiv.org:1105.3819\"},\"trust\":0.5956532}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Lancaster EPrints"},"target_publication_id":{"type":"STRING","value":"oai:eprints.lancs.ac.uk:51672"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wiersig, Jan","Eberspächer, Alexander","Shim, Jeong-Bo","Ryu, Jung-Wan","Shinohara, Sususmu","Hentschel, M.","Schomerus, Henning"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1105.3819"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.5956532},"target_publication_title":{"type":"STRING","value":"Nonorthogonal pairs of copropagating optical modes in deformed microdisk cavities"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-08-29"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::757b505cfd34c64c85ca5b5690ee5293"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00939184\",\"titles\":[\"Lyapunov-based Controller using Singular Perturbation Theory : An Application on a mini-UAV\"],\"abstracts\":[\"In this paper, a Lyapunov-based control using singular perturbation theory is proposed and applied on dynamics of a miniature unmanned aerial vehicle (MAV). Such controller is designed taking into account the presence of the small parameter $\\\\epsilon$ on vehicle dynamics, causing a time-scale separation between the attitude and translational dynamics of the MAV. The stability analysis is demonstrated by presenting a scenario in which the time-scale property arises on the the MAV dynamics. In addition, the values of the parameter for which the control law is validated, are given. Simulations are derived an presented to demonstrate the effectiveness of the control law. The proposed controller has been applied to a Quad-plane MAV experimental platform, in order to validate the performance and to show the time-scale property.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_AU] Computer Science/Automatic Control Engineering\",\"[INFO:INFO_AU] Informatique/Automatique\",\"Lyapunov-based control\",\"MAV dynamics\",\"attitude dynamics\",\"control law\",\"controller design\",\"mini-UAV\",\"miniature unmanned aerial vehicle\",\"dynamics\",\"parameter values\",\"quad-plane MAV\",\"singular perturbation theory\",\"stability analysis\",\"time-scale property\",\"time-scale separation\",\"translational dynamics\"],\"creators\":[\"Flores Colunga, Gerardo Ramon\",\"Lozano, Rogelio\"],\"publicationdate\":\"2013-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00939184\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00939184\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00939184\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00939184\",\"id\":\"oai:HAL:hal-00939184v1\"},\"trust\":0.36732805}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00939184"},"target_publication_author_list":{"type":"LIST_STRING","value":["Flores Colunga, Gerardo Ramon","Lozano, Rogelio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00939184v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_AU] Computer Science/Automatic Control Engineering","[INFO:INFO_AU] Informatique/Automatique","Lyapunov-based control","MAV dynamics","attitude dynamics","control law","controller design","mini-UAV","miniature unmanned aerial vehicle","dynamics","parameter values","quad-plane MAV","singular perturbation theory","stability analysis","time-scale property","time-scale separation","translational dynamics"]},"trust":{"type":"FLOAT","value":0.36732805},"target_publication_title":{"type":"STRING","value":"Lyapunov-based Controller using Singular Perturbation Theory : An Application on a mini-UAV"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00939184v1\",\"titles\":[\"Lyapunov-based Controller using Singular Perturbation Theory : An Application on a mini-UAV\"],\"abstracts\":[\"International audience\",\"In this paper, a Lyapunov-based control using singular perturbation theory is proposed and applied on dynamics of a miniature unmanned aerial vehicle (MAV). Such controller is designed taking into account the presence of the small parameter $\\\\epsilon$ on vehicle dynamics, causing a time-scale separation between the attitude and translational dynamics of the MAV. The stability analysis is demonstrated by presenting a scenario in which the time-scale property arises on the the MAV dynamics. In addition, the values of the parameter for which the control law is validated, are given. Simulations are derived an presented to demonstrate the effectiveness of the control law. The proposed controller has been applied to a Quad-plane MAV experimental platform, in order to validate the performance and to show the time-scale property.\"],\"language\":\"eng\",\"subjects\":[\"Lyapunov-based control\",\"MAV dynamics\",\"attitude dynamics\",\"control law\",\"controller design\",\"mini-UAV\",\"miniature unmanned aerial vehicle\",\"dynamics\",\"parameter values\",\"quad-plane MAV\",\"singular perturbation theory\",\"stability analysis\",\"time-scale property\",\"time-scale separation\",\"translational dynamics\",\"[INFO.INFO-AU] Computer Science/Automatic Control Engineering\"],\"creators\":[\"Flores Colunga, Gerardo Ramon\",\"Lozano, Rogelio\"],\"publicationdate\":\"2013-06-17\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Heuristique et Diagnostic des Systèmes Complexes (HEUDIASYC) ; Université de Technologie de Compiègne - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00939184\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00939184\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00939184\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00939184\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00939184\"},\"trust\":0.1054641}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00939184v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Flores Colunga, Gerardo Ramon","Lozano, Rogelio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00939184"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Lyapunov-based control","MAV dynamics","attitude dynamics","control law","controller design","mini-UAV","miniature unmanned aerial vehicle","dynamics","parameter values","quad-plane MAV","singular perturbation theory","stability analysis","time-scale property","time-scale separation","translational dynamics","[INFO.INFO-AU] Computer Science/Automatic Control Engineering"]},"trust":{"type":"FLOAT","value":0.1054641},"target_publication_title":{"type":"STRING","value":"Lyapunov-based Controller using Singular Perturbation Theory : An Application on a mini-UAV"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-06-17"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:299435\",\"titles\":[\"Inference in action\"],\"abstracts\":[\"Substructural logics arise whenever classical logic is put to new uses, and logicians from Serbia have been in the fore-front here. In this paper, we join the substructural tradition with another recent trend, viz. dynamic logic of information update. We show how these two approaches fit together, in particular, through a number of representation theorems concerning structural rules. The proper background for these results turn out to be modal and dynamic logics of cross-model relations. We connect this finding with recent accounts of generalized inference, interpolation, and preservation results.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Benthem, J.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://dare.uva.nl/record/299435\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/11245/1.295695\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/11245/1.295695\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/11245/1.295695\",\"id\":\"uvapub:oai:uva.nl:295695\"},\"trust\":0.6742926}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:299435"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benthem, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uvapub:oai:uva.nl:295695"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.6742926},"target_publication_title":{"type":"STRING","value":"Inference in action"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:299435\",\"titles\":[\"Inference in action\"],\"abstracts\":[\"Substructural logics arise whenever classical logic is put to new uses, and logicians from Serbia have been in the fore-front here. In this paper, we join the substructural tradition with another recent trend, viz. dynamic logic of information update. We show how these two approaches fit together, in particular, through a number of representation theorems concerning structural rules. The proper background for these results turn out to be modal and dynamic logics of cross-model relations. We connect this finding with recent accounts of generalized inference, interpolation, and preservation results.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Benthem, J.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://dare.uva.nl/record/299435\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://dare.uva.nl/record/216149\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dare.uva.nl/record/216149\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Universiteit van Amsterdam Digital Academic Repository\",\"url\":\"http://dare.uva.nl/record/216149\",\"id\":\"oai:uvapub:216149\"},\"trust\":0.44300026}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:299435"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benthem, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:uvapub:216149"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"},"trust":{"type":"FLOAT","value":0.44300026},"target_publication_title":{"type":"STRING","value":"Inference in action"},"provenance_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:216149\",\"titles\":[\"Inference in Action\"],\"abstracts\":[\"Substructural logics describe varieties of inference \\r\\nthat humans can engage in within specific settings. \\r\\nOne such setting are dynamic state transitions when\\r\\nprocessing information. We recall the complete set \\r\\nof (non-monotonic, non-commutative, non-contractive)\\r\\nstructural rules for dynamic \\u0027update-to-test inference\\u0027, \\r\\nand the proof of its completeness for the specific area \\r\\nof epistemic update. Then we broaden our discussion to \\r\\nmake a case that polymodal logic itself is a good\\r\\nsubstructural theory of \\u0027plan inference\\u0027. Next, we\\r\\nturn to concrete model-changing notions of inference,\\r\\nas proposed by Lindstroem and Barwise \\u0026 van Benthem,\\r\\nand discuss their connection with model-theoretic\\r\\nresults on interpolation and conservative extension.\"],\"language\":\"und\",\"subjects\":[\"structural rules, dynamic logic, epistemic update,\",\"representation, interpolation, model change\"],\"creators\":[\"Benthem, J. F. A. K.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://dare.uva.nl/record/216149\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/11245/1.295695\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/11245/1.295695\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/11245/1.295695\",\"id\":\"uvapub:oai:uva.nl:295695\"},\"trust\":0.24130005}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:216149"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benthem, J. F. A. K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uvapub:oai:uva.nl:295695"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["structural rules, dynamic logic, epistemic update,","representation, interpolation, model change"]},"trust":{"type":"FLOAT","value":0.24130005},"target_publication_title":{"type":"STRING","value":"Inference in Action"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:216149\",\"titles\":[\"Inference in Action\"],\"abstracts\":[\"Substructural logics describe varieties of inference \\r\\nthat humans can engage in within specific settings. \\r\\nOne such setting are dynamic state transitions when\\r\\nprocessing information. We recall the complete set \\r\\nof (non-monotonic, non-commutative, non-contractive)\\r\\nstructural rules for dynamic \\u0027update-to-test inference\\u0027, \\r\\nand the proof of its completeness for the specific area \\r\\nof epistemic update. Then we broaden our discussion to \\r\\nmake a case that polymodal logic itself is a good\\r\\nsubstructural theory of \\u0027plan inference\\u0027. Next, we\\r\\nturn to concrete model-changing notions of inference,\\r\\nas proposed by Lindstroem and Barwise \\u0026 van Benthem,\\r\\nand discuss their connection with model-theoretic\\r\\nresults on interpolation and conservative extension.\"],\"language\":\"und\",\"subjects\":[\"structural rules, dynamic logic, epistemic update,\",\"representation, interpolation, model change\"],\"creators\":[\"Benthem, J. F. A. K.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://dare.uva.nl/record/216149\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Preprint\"},{\"url\":\"http://dare.uva.nl/record/299435\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dare.uva.nl/record/299435\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Universiteit van Amsterdam Digital Academic Repository\",\"url\":\"http://dare.uva.nl/record/299435\",\"id\":\"oai:uvapub:299435\"},\"trust\":0.40214676}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:216149"},"target_publication_author_list":{"type":"LIST_STRING","value":["Benthem, J. F. A. K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:uvapub:299435"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"},"target_publication_subject_list":{"type":"LIST_STRING","value":["structural rules, dynamic logic, epistemic update,","representation, interpolation, model change"]},"trust":{"type":"FLOAT","value":0.40214676},"target_publication_title":{"type":"STRING","value":"Inference in Action"},"provenance_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:tudelft.nl:uuid:7b31be7b-a89c-4168-906a-988eaf28d180\",\"titles\":[\"Berekeningen aan axiale dispersie in een operationele vetsplitter:\"],\"abstracts\":[\"Document(en) uit de collectie Chemische Procestechnologie.\"],\"language\":\"dut/nld\",\"subjects\":[],\"creators\":[\"Egmond, L. C.\",\"Goossens, M. L.\"],\"publicationdate\":\"1982-05-01\",\"publisher\":\"Delft University\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"TU Delft Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://resolver.tudelft.nl/uuid:7b31be7b-a89c-4168-906a-988eaf28d180\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Report\"},{\"url\":\"http://resolver.tudelft.nl/uuid:7b31be7b-a89c-4168-906a-988eaf28d180\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://resolver.tudelft.nl/uuid:7b31be7b-a89c-4168-906a-988eaf28d180\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://resolver.tudelft.nl/uuid:7b31be7b-a89c-4168-906a-988eaf28d180\",\"id\":\"tud:oai:tudelft.nl:uuid:7b31be7b-a89c-4168-906a-988eaf28d180\"},\"trust\":0.95555}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"TU Delft Repository"},"target_publication_id":{"type":"STRING","value":"oai:tudelft.nl:uuid:7b31be7b-a89c-4168-906a-988eaf28d180"},"target_publication_author_list":{"type":"LIST_STRING","value":["Egmond, L. C.","Goossens, M. L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tud:oai:tudelft.nl:uuid:7b31be7b-a89c-4168-906a-988eaf28d180"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.95555},"target_publication_title":{"type":"STRING","value":"Berekeningen aan axiale dispersie in een operationele vetsplitter:"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1982-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::c9892a989183de32e976c6f04e700201"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HUBerlin.de:29727\",\"titles\":[\"Putting Up a Good Fight: The Galí-Monacelli Model versus “The Six Major Puzzles in International Macroeconomics”\"],\"abstracts\":[\"In this paper, the following question is posed: Can the New Keynesian Open Economy Model by Galí and Monacelli (2005b) explain “Six Major Puzzles in International Macroeconomics”, as documented in Obstfeld and Rogoff (2000b)? The model features a small open economy with complete markets, Calvo sticky prices and monopolistic competition. As extensions, I explore the effects of an estimated Taylor rule and additional trade costs. After translating the six puzzles into moment conditions for the model, I estimate the five most effective parameters using simulated method of moments (SMM) to fit the moment conditions implied by the data. Given the simplicity of the model, its fit is surprisingly good: among other things, the home bias puzzles can easily be replicated, the exchange rate volatility is formidably increased and the exchange rate correlation pattern is relatively close to realistic values. Trade costs are one important ingredient for this finding.\"],\"language\":\"eng\",\"subjects\":[\"Wirtschaft\",\"International Macroeconomics\",\"New Keynesian open economy model\",\"trade costs\",\"simulated method of moments (SMM)\",\"ddc:330\"],\"creators\":[\"Ried, Stefan\"],\"publicationdate\":\"2009-04-15\",\"publisher\":\"Humboldt University Berlin, Germany\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\"],\"pids\":[],\"instances\":[{\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d29727\",\"license\":\"OPEN\",\"hostedby\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10419/25336\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/25336\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/25336\",\"id\":\"oai:econstor.eu:10419/25336\"},\"trust\":0.8738846}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin"},"target_publication_id":{"type":"STRING","value":"oai:HUBerlin.de:29727"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ried, Stefan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/25336"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Wirtschaft","International Macroeconomics","New Keynesian open economy model","trade costs","simulated method of moments (SMM)","ddc:330"]},"trust":{"type":"FLOAT","value":0.8738846},"target_publication_title":{"type":"STRING","value":"Putting Up a Good Fight: The Galí-Monacelli Model versus “The Six Major Puzzles in International Macroeconomics”"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2009-04-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9fc3d7152ba9336a670e36d0ed79bc43"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HUBerlin.de:29727\",\"titles\":[\"Putting Up a Good Fight: The Galí-Monacelli Model versus “The Six Major Puzzles in International Macroeconomics”\"],\"abstracts\":[\"In this paper, the following question is posed: Can the New Keynesian Open Economy Model by Galí and Monacelli (2005b) explain “Six Major Puzzles in International Macroeconomics”, as documented in Obstfeld and Rogoff (2000b)? The model features a small open economy with complete markets, Calvo sticky prices and monopolistic competition. As extensions, I explore the effects of an estimated Taylor rule and additional trade costs. After translating the six puzzles into moment conditions for the model, I estimate the five most effective parameters using simulated method of moments (SMM) to fit the moment conditions implied by the data. Given the simplicity of the model, its fit is surprisingly good: among other things, the home bias puzzles can easily be replicated, the exchange rate volatility is formidably increased and the exchange rate correlation pattern is relatively close to realistic values. Trade costs are one important ingredient for this finding.\"],\"language\":\"eng\",\"subjects\":[\"Wirtschaft\",\"International Macroeconomics\",\"New Keynesian open economy model\",\"trade costs\",\"simulated method of moments (SMM)\",\"ddc:330\"],\"creators\":[\"Ried, Stefan\"],\"publicationdate\":\"2009-04-15\",\"publisher\":\"Humboldt University Berlin, Germany\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\"],\"pids\":[],\"instances\":[{\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d29727\",\"license\":\"OPEN\",\"hostedby\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"instancetype\":\"Article\"},{\"url\":\"http://sfb649.wiwi.hu-berlin.de/papers/pdf/SFB649DP2009-020.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://sfb649.wiwi.hu-berlin.de/papers/pdf/SFB649DP2009-020.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://sfb649.wiwi.hu-berlin.de/papers/pdf/SFB649DP2009-020.pdf\",\"id\":\"oai:RePEc:hum:wpaper:sfb649dp2009-020\"},\"trust\":0.82752824}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin"},"target_publication_id":{"type":"STRING","value":"oai:HUBerlin.de:29727"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ried, Stefan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hum:wpaper:sfb649dp2009-020"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Wirtschaft","International Macroeconomics","New Keynesian open economy model","trade costs","simulated method of moments (SMM)","ddc:330"]},"trust":{"type":"FLOAT","value":0.82752824},"target_publication_title":{"type":"STRING","value":"Putting Up a Good Fight: The Galí-Monacelli Model versus “The Six Major Puzzles in International Macroeconomics”"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-04-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9fc3d7152ba9336a670e36d0ed79bc43"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/25336\",\"titles\":[\"Putting up a good fight: the Galí-Monacelli model versus \\\"the six major puzzles in international macroeconomics\\\"\"],\"abstracts\":[\"In this paper, the following question is posed: Can the New Keynesian Open Economy Model by Galí and Monacelli 2005b) explain \\\"Six Major Puzzles in International Macroeconomics\\\", as documented in Obstfeld and Rogoff (2000b)? The model features a small open economy with complete markets, Calvo sticky prices and monopolistic competition. As extensions, I explore the effects of an estimated Taylor rule and additional trade costs. After translating the six puzzles into moment conditions for the model, I estimate the five most effective parameters using simulated method of moments (SMM) to fit the moment conditions implied by the data. Given the simplicity of the model, its fit is surprisingly good: among other things, the home bias puzzles can easily be replicated, the exchange rate volatility is formidably increased and the exchange rate correlation pattern is relatively close to realistic values. Trade costs are one important ingredient for this finding.\"],\"language\":\"eng\",\"subjects\":[\"F41\",\"F42\",\"E52\",\"ddc:330\",\"International Macroeconomics\",\"New Keynesian open economy model\",\"trade costs\",\"simulated method of moments (SMM)\",\"Neue Makroökonomik offener Volkswirtschaften\",\"Ungleichgewichtstheorie\",\"Simulation\",\"Außenwirtschaftstheorie\",\"Offene Volkswirtschaft\",\"Kosten\",\"Theorie\"],\"creators\":[\"Ried, Stefan\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"SFB 649, Economic Risk Berlin\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/25336\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d29727\",\"license\":\"OPEN\",\"hostedby\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d29727\",\"license\":\"OPEN\",\"hostedby\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d29727\",\"id\":\"oai:HUBerlin.de:29727\"},\"trust\":0.41370195}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/25336"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ried, Stefan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HUBerlin.de:29727"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9fc3d7152ba9336a670e36d0ed79bc43"},"target_publication_subject_list":{"type":"LIST_STRING","value":["F41","F42","E52","ddc:330","International Macroeconomics","New Keynesian open economy model","trade costs","simulated method of moments (SMM)","Neue Makroökonomik offener Volkswirtschaften","Ungleichgewichtstheorie","Simulation","Außenwirtschaftstheorie","Offene Volkswirtschaft","Kosten","Theorie"]},"trust":{"type":"FLOAT","value":0.41370195},"target_publication_title":{"type":"STRING","value":"Putting up a good fight: the Galí-Monacelli model versus \"the six major puzzles in international macroeconomics\""},"provenance_datasource_name":{"type":"STRING","value":"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/25336\",\"titles\":[\"Putting up a good fight: the Galí-Monacelli model versus \\\"the six major puzzles in international macroeconomics\\\"\"],\"abstracts\":[\"In this paper, the following question is posed: Can the New Keynesian Open Economy Model by Galí and Monacelli 2005b) explain \\\"Six Major Puzzles in International Macroeconomics\\\", as documented in Obstfeld and Rogoff (2000b)? The model features a small open economy with complete markets, Calvo sticky prices and monopolistic competition. As extensions, I explore the effects of an estimated Taylor rule and additional trade costs. After translating the six puzzles into moment conditions for the model, I estimate the five most effective parameters using simulated method of moments (SMM) to fit the moment conditions implied by the data. Given the simplicity of the model, its fit is surprisingly good: among other things, the home bias puzzles can easily be replicated, the exchange rate volatility is formidably increased and the exchange rate correlation pattern is relatively close to realistic values. Trade costs are one important ingredient for this finding.\"],\"language\":\"eng\",\"subjects\":[\"F41\",\"F42\",\"E52\",\"ddc:330\",\"International Macroeconomics\",\"New Keynesian open economy model\",\"trade costs\",\"simulated method of moments (SMM)\",\"Neue Makroökonomik offener Volkswirtschaften\",\"Ungleichgewichtstheorie\",\"Simulation\",\"Außenwirtschaftstheorie\",\"Offene Volkswirtschaft\",\"Kosten\",\"Theorie\"],\"creators\":[\"Ried, Stefan\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"SFB 649, Economic Risk Berlin\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/25336\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://sfb649.wiwi.hu-berlin.de/papers/pdf/SFB649DP2009-020.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://sfb649.wiwi.hu-berlin.de/papers/pdf/SFB649DP2009-020.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://sfb649.wiwi.hu-berlin.de/papers/pdf/SFB649DP2009-020.pdf\",\"id\":\"oai:RePEc:hum:wpaper:sfb649dp2009-020\"},\"trust\":0.8228132}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/25336"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ried, Stefan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hum:wpaper:sfb649dp2009-020"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["F41","F42","E52","ddc:330","International Macroeconomics","New Keynesian open economy model","trade costs","simulated method of moments (SMM)","Neue Makroökonomik offener Volkswirtschaften","Ungleichgewichtstheorie","Simulation","Außenwirtschaftstheorie","Offene Volkswirtschaft","Kosten","Theorie"]},"trust":{"type":"FLOAT","value":0.8228132},"target_publication_title":{"type":"STRING","value":"Putting up a good fight: the Galí-Monacelli model versus \"the six major puzzles in international macroeconomics\""},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hum:wpaper:sfb649dp2009-020\",\"titles\":[\"Putting Up a Good Fight: The Galí-Monacelli Model versus “The Six Major Puzzles in International Macroeconomics”\"],\"abstracts\":[\"In this paper, the following question is posed: Can the New Keynesian Open Economy Model by Galí and Monacelli (2005b) explain “Six Major Puzzles in International Macroeconomics”, as documented in Obstfeld and Rogoff (2000b)? The model features a small open economy with complete markets, Calvo sticky prices and monopolistic competition. As extensions, I explore the effects of an estimated Taylor rule and additional trade costs. After translating the six puzzles into moment conditions for the model, I estimate the five most effective parameters using simulated method of moments (SMM) to fit the moment conditions implied by the data. Given the simplicity of the model, its fit is surprisingly good: among other things, the home bias puzzles can easily be replicated, the exchange rate volatility is formidably increased and the exchange rate correlation pattern is relatively close to realistic values. Trade costs are one important ingredient for this finding.\"],\"language\":\"und\",\"subjects\":[\"International Macroeconomics, New Keynesian open economy model, trade costs, simulated method of moments (SMM)\"],\"creators\":[\"Stefan Ried\"],\"publicationdate\":\"2009-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://sfb649.wiwi.hu-berlin.de/papers/pdf/SFB649DP2009-020.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d29727\",\"license\":\"OPEN\",\"hostedby\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d29727\",\"license\":\"OPEN\",\"hostedby\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin\",\"url\":\"http://edoc.hu-berlin.de/docviews/abstract.php?id\\u003d29727\",\"id\":\"oai:HUBerlin.de:29727\"},\"trust\":0.53528297}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hum:wpaper:sfb649dp2009-020"},"target_publication_author_list":{"type":"LIST_STRING","value":["Stefan Ried"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HUBerlin.de:29727"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9fc3d7152ba9336a670e36d0ed79bc43"},"target_publication_subject_list":{"type":"LIST_STRING","value":["International Macroeconomics, New Keynesian open economy model, trade costs, simulated method of moments (SMM)"]},"trust":{"type":"FLOAT","value":0.53528297},"target_publication_title":{"type":"STRING","value":"Putting Up a Good Fight: The Galí-Monacelli Model versus “The Six Major Puzzles in International Macroeconomics”"},"provenance_datasource_name":{"type":"STRING","value":"Dokumenten-Publikationsserver der Humboldt-Universität zu Berlin"},"target_dateofacceptance":{"type":"DATE","value":"2009-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hum:wpaper:sfb649dp2009-020\",\"titles\":[\"Putting Up a Good Fight: The Galí-Monacelli Model versus “The Six Major Puzzles in International Macroeconomics”\"],\"abstracts\":[\"In this paper, the following question is posed: Can the New Keynesian Open Economy Model by Galí and Monacelli (2005b) explain “Six Major Puzzles in International Macroeconomics”, as documented in Obstfeld and Rogoff (2000b)? The model features a small open economy with complete markets, Calvo sticky prices and monopolistic competition. As extensions, I explore the effects of an estimated Taylor rule and additional trade costs. After translating the six puzzles into moment conditions for the model, I estimate the five most effective parameters using simulated method of moments (SMM) to fit the moment conditions implied by the data. Given the simplicity of the model, its fit is surprisingly good: among other things, the home bias puzzles can easily be replicated, the exchange rate volatility is formidably increased and the exchange rate correlation pattern is relatively close to realistic values. Trade costs are one important ingredient for this finding.\"],\"language\":\"und\",\"subjects\":[\"International Macroeconomics, New Keynesian open economy model, trade costs, simulated method of moments (SMM)\"],\"creators\":[\"Stefan Ried\"],\"publicationdate\":\"2009-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://sfb649.wiwi.hu-berlin.de/papers/pdf/SFB649DP2009-020.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/25336\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/25336\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/25336\",\"id\":\"oai:econstor.eu:10419/25336\"},\"trust\":0.85578305}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hum:wpaper:sfb649dp2009-020"},"target_publication_author_list":{"type":"LIST_STRING","value":["Stefan Ried"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/25336"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["International Macroeconomics, New Keynesian open economy model, trade costs, simulated method of moments (SMM)"]},"trust":{"type":"FLOAT","value":0.85578305},"target_publication_title":{"type":"STRING","value":"Putting Up a Good Fight: The Galí-Monacelli Model versus “The Six Major Puzzles in International Macroeconomics”"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2009-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-01079114v1\",\"titles\":[\"The Impact of the Webcam on an Online L2 Interaction\"],\"abstracts\":[\"International audience\",\"It is intuitively felt that visual cues should enhance online communication, and this experimental study aims to test this prediction by exploring the value provided by a webcam in an online L2 pedagogical teacher-to learner interaction. A total of 40 French undergraduate students with a B2 level in English were asked to describe in English four previously unseen photographs to a native English-speaking teacher of EFL via Skype, a free web-based videoconferencing tool, during a 10-minute interaction. Twenty students were assigned to the videoconferencing condition and 20 to the audioconferencing condition. All 40 interactions were recorded using dynamic screen capture software and were analyzed with ELAN, a sound and video annotation tool. Participants\\u0027 perceptions of the online interaction are first compared with regard to the issues of social presence and their understanding and appreciation of the online interaction, using data gathered from a post-task questionnaire. The study then explores whether seeing the interlocutor\\u0027s image impacts on the patterns of these synchronous exchanges and on the word search episodes. Results indicated that the impact of the webcam on the online pedagogical interaction was not as critical as had been predicted.\"],\"language\":\"eng\",\"subjects\":[\"audioconferencing\",\"online interaction\",\"social presence\",\"videoconferencing\",\"word search\",\"[SHS.LANGUE] Humanities and Social Sciences/Linguistics\"],\"creators\":[\"Guichon, Nicolas\",\"Cohen, Cathy\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Interactions, Corpus, Apprentissages, Représentations (ICAR) ; INRP - Université Lumière - Lyon II - École Normale Supérieure (ENS) - Lyon - Ecole Normale Supérieure Lettres et Sciences Humaines - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.3138/cmlr.2102\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-01079114\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-01056173\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-01056173\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-01056173\",\"id\":\"oai:HAL:hal-01056173v1\"},\"trust\":0.9271597}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-01079114v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guichon, Nicolas","Cohen, Cathy"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-01056173v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["audioconferencing","online interaction","social presence","videoconferencing","word search","[SHS.LANGUE] Humanities and Social Sciences/Linguistics"]},"trust":{"type":"FLOAT","value":0.9271597},"target_publication_title":{"type":"STRING","value":"The Impact of the Webcam on an Online L2 Interaction"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-01056173v1\",\"titles\":[\"The Impact Of The Webcam On An Online L2 Interaction\"],\"abstracts\":[\"International audience\",\"It is intuitively felt that visual cues should enhance online communication, and this experimental study aims to test this prediction by exploring the value provided by a webcam in an online L2 pedagogical teacher-to learner interaction. A total of 40 French undergraduate students with a B2 level in English were asked to describe in English four previously unseen photographs to a native English-speaking teacher of EFL via Skype, a free web-based videoconferencing tool, during a 10-minute interaction. Twenty students were assigned to the videoconferencing condition and 20 to the audioconferencing condition. All 40 interactions were recorded using dynamic screen capture software and were analyzed with ELAN, a sound and video annotation tool. Participants\\u0027 perceptions of the online interaction are first compared with regard to the issues of social presence and their understanding and appreciation of the online interaction, using data gathered from a post-task questionnaire. The study then explores whether seeing the interlocutor\\u0027s image impacts on the patterns of these synchronous exchanges and on the word search episodes. Results indicated that the impact of the webcam on the online pedagogical interaction was not as critical as had been predicted.\"],\"language\":\"eng\",\"subjects\":[\"audioconferencing\",\"online interaction\",\"social presence\",\"videoconferencing\",\"word search\",\"[SCCO.LING] Cognitive science/Linguistics\",\"[SHS.EDU] Humanities and Social Sciences/Education\"],\"creators\":[\"Guichon, Nicolas\",\"Cohen, Cathy\"],\"publicationdate\":\"2014-08-04\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Interactions, Corpus, Apprentissages, Représentations (ICAR) ; INRP - Université Lumière - Lyon II - École Normale Supérieure (ENS) - Lyon - Ecole Normale Supérieure Lettres et Sciences Humaines - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.3138/cmlr.2102\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-01056173\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-01079114\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-01079114\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-01079114\",\"id\":\"oai:HAL:hal-01079114v1\"},\"trust\":0.68731916}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-01056173v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guichon, Nicolas","Cohen, Cathy"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-01079114v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["audioconferencing","online interaction","social presence","videoconferencing","word search","[SCCO.LING] Cognitive science/Linguistics","[SHS.EDU] Humanities and Social Sciences/Education"]},"trust":{"type":"FLOAT","value":0.68731916},"target_publication_title":{"type":"STRING","value":"The Impact Of The Webcam On An Online L2 Interaction"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-08-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:0902.0101\",\"titles\":[\"The Complexity of Nash Equilibria in Simple Stochastic Multiplayer Games\"],\"abstracts\":[\" We analyse the computational complexity of finding Nash equilibria in simple\\nstochastic multiplayer games. We show that restricting the search space to\\nequilibria whose payoffs fall into a certain interval may lead to\\nundecidability. In particular, we prove that the following problem is\\nundecidable: Given a game G, does there exist a pure-strategy Nash equilibrium\\nof G where player 0 wins with probability 1. Moreover, this problem remains\\nundecidable if it is restricted to strategies with (unbounded) finite memory.\\nHowever, if mixed strategies are allowed, decidability remains an open problem.\\nOne way to obtain a provably decidable variant of the problem is restricting\\nthe strategies to be positional or stationary. For the complexity of these two\\nproblems, we obtain a common lower bound of NP and upper bounds of NP and\\nPSPACE respectively.\\n\",\"Comment: 23 pages; revised version\"],\"language\":\"eng\",\"subjects\":[\"Computer Science - Computer Science and Game Theory\",\"Computer Science - Computational Complexity\",\"Computer Science - Logic in Computer Science\"],\"creators\":[\"Ummels, Michael\",\"Wojtczak, Dominik\"],\"publicationdate\":\"2009-02-02\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1007/978-3-642-02930-1_25\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/0902.0101\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://repository.cwi.nl/noauth/search/fullrecord.php?publnr\\u003d14921\",\"license\":\"OPEN\",\"hostedby\":\"Repository CWI Amsterdam\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.cwi.nl/noauth/search/fullrecord.php?publnr\\u003d14921\",\"license\":\"OPEN\",\"hostedby\":\"Repository CWI Amsterdam\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.cwi.nl/noauth/search/fullrecord.php?publnr\\u003d14921\",\"id\":\"cwi:oai:cwi.nl:14921\"},\"trust\":0.9813955}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:0902.0101"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ummels, Michael","Wojtczak, Dominik"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["cwi:oai:cwi.nl:14921"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Computer Science - Computer Science and Game Theory","Computer Science - Computational Complexity","Computer Science - Logic in Computer Science"]},"trust":{"type":"FLOAT","value":0.9813955},"target_publication_title":{"type":"STRING","value":"The Complexity of Nash Equilibria in Simple Stochastic Multiplayer Games"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2009-02-02"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:0902.0101\",\"titles\":[\"The Complexity of Nash Equilibria in Simple Stochastic Multiplayer Games\"],\"abstracts\":[\" We analyse the computational complexity of finding Nash equilibria in simple\\nstochastic multiplayer games. We show that restricting the search space to\\nequilibria whose payoffs fall into a certain interval may lead to\\nundecidability. In particular, we prove that the following problem is\\nundecidable: Given a game G, does there exist a pure-strategy Nash equilibrium\\nof G where player 0 wins with probability 1. Moreover, this problem remains\\nundecidable if it is restricted to strategies with (unbounded) finite memory.\\nHowever, if mixed strategies are allowed, decidability remains an open problem.\\nOne way to obtain a provably decidable variant of the problem is restricting\\nthe strategies to be positional or stationary. For the complexity of these two\\nproblems, we obtain a common lower bound of NP and upper bounds of NP and\\nPSPACE respectively.\\n\",\"Comment: 23 pages; revised version\"],\"language\":\"eng\",\"subjects\":[\"Computer Science - Computer Science and Game Theory\",\"Computer Science - Computational Complexity\",\"Computer Science - Logic in Computer Science\"],\"creators\":[\"Ummels, Michael\",\"Wojtczak, Dominik\"],\"publicationdate\":\"2009-02-02\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1007/978-3-642-02930-1_25\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/0902.0101\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1842/2651\",\"license\":\"OPEN\",\"hostedby\":\"Edinburgh Research Archive\",\"instancetype\":\"External research report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1842/2651\",\"license\":\"OPEN\",\"hostedby\":\"Edinburgh Research Archive\",\"instancetype\":\"External research report\"}]},\"provenance\":{\"repositoryName\":\"Edinburgh Research Archive\",\"url\":\"http://hdl.handle.net/1842/2651\",\"id\":\"oai:www.era.lib.ed.ac.uk:1842/2651\"},\"trust\":0.48911}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:0902.0101"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ummels, Michael","Wojtczak, Dominik"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.era.lib.ed.ac.uk:1842/2651"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::428fca9bc1921c25c5121f9da7815cde"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Computer Science - Computer Science and Game Theory","Computer Science - Computational Complexity","Computer Science - Logic in Computer Science"]},"trust":{"type":"FLOAT","value":0.48911},"target_publication_title":{"type":"STRING","value":"The Complexity of Nash Equilibria in Simple Stochastic Multiplayer Games"},"provenance_datasource_name":{"type":"STRING","value":"Edinburgh Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-02-02"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.era.lib.ed.ac.uk:1842/2651\",\"titles\":[\"The Complexity of Nash Equilibria in Simple Stochastic Multiplayer Games\"],\"abstracts\":[\"We analyse the computational complexity of finding Nash equilibria in\\nsimple stochastic multiplayer games. We show that restricting the\\nsearch space to equilibria whose payoffs fall into a certain interval\\nmay lead to undecidability. In particular, we prove that the following\\nproblem is undecidable: Given a game G, does there exist a\\npure-strategy Nash equilibrium of G where player 0 wins with\\nprobability 1. Moreover, this problem remains undecidable if it is\\nrestricted to strategies with (unbounded) finite memory. However, if\\nmixed strategies are allowed, decidability remains an open problem.\\nOne way to obtain a provably decidable variant of the problem is to\\nrestrict the strategies to be positional or stationary. For the\\ncomplexity of these two problems, we obtain a common lower bound of NP\\nand upper bounds of NP and PSPACE respectively.\",\"to appear in ICALP 2009\"],\"language\":\"eng\",\"subjects\":[\"stochastic games\",\"Nash equilibria\",\"multiplayer games\",\"Informatics\",\"Laboratory for Foundations of Computer Science\"],\"creators\":[\"Ummels, Michael\",\"Wojtczak, Dominik\"],\"publicationdate\":\"2009-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Edinburgh Research Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/1842/2651\",\"license\":\"OPEN\",\"hostedby\":\"Edinburgh Research Archive\",\"instancetype\":\"External research report\"},{\"url\":\"http://repository.cwi.nl/noauth/search/fullrecord.php?publnr\\u003d14921\",\"license\":\"OPEN\",\"hostedby\":\"Repository CWI Amsterdam\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.cwi.nl/noauth/search/fullrecord.php?publnr\\u003d14921\",\"license\":\"OPEN\",\"hostedby\":\"Repository CWI Amsterdam\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.cwi.nl/noauth/search/fullrecord.php?publnr\\u003d14921\",\"id\":\"cwi:oai:cwi.nl:14921\"},\"trust\":0.12200171}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Edinburgh Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:www.era.lib.ed.ac.uk:1842/2651"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ummels, Michael","Wojtczak, Dominik"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["cwi:oai:cwi.nl:14921"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["stochastic games","Nash equilibria","multiplayer games","Informatics","Laboratory for Foundations of Computer Science"]},"trust":{"type":"FLOAT","value":0.12200171},"target_publication_title":{"type":"STRING","value":"The Complexity of Nash Equilibria in Simple Stochastic Multiplayer Games"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2009-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::428fca9bc1921c25c5121f9da7815cde"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:www.era.lib.ed.ac.uk:1842/2651\",\"titles\":[\"The Complexity of Nash Equilibria in Simple Stochastic Multiplayer Games\"],\"abstracts\":[\"We analyse the computational complexity of finding Nash equilibria in\\nsimple stochastic multiplayer games. We show that restricting the\\nsearch space to equilibria whose payoffs fall into a certain interval\\nmay lead to undecidability. In particular, we prove that the following\\nproblem is undecidable: Given a game G, does there exist a\\npure-strategy Nash equilibrium of G where player 0 wins with\\nprobability 1. Moreover, this problem remains undecidable if it is\\nrestricted to strategies with (unbounded) finite memory. However, if\\nmixed strategies are allowed, decidability remains an open problem.\\nOne way to obtain a provably decidable variant of the problem is to\\nrestrict the strategies to be positional or stationary. For the\\ncomplexity of these two problems, we obtain a common lower bound of NP\\nand upper bounds of NP and PSPACE respectively.\",\"to appear in ICALP 2009\"],\"language\":\"eng\",\"subjects\":[\"stochastic games\",\"Nash equilibria\",\"multiplayer games\",\"Informatics\",\"Laboratory for Foundations of Computer Science\"],\"creators\":[\"Ummels, Michael\",\"Wojtczak, Dominik\"],\"publicationdate\":\"2009-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Edinburgh Research Archive\"],\"pids\":[{\"value\":\"10.1007/978-3-642-02930-1_25\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1842/2651\",\"license\":\"OPEN\",\"hostedby\":\"Edinburgh Research Archive\",\"instancetype\":\"External research report\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/978-3-642-02930-1_25\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0902.0101\",\"id\":\"oai:arXiv.org:0902.0101\"},\"trust\":0.6201509}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Edinburgh Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:www.era.lib.ed.ac.uk:1842/2651"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ummels, Michael","Wojtczak, Dominik"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0902.0101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["stochastic games","Nash equilibria","multiplayer games","Informatics","Laboratory for Foundations of Computer Science"]},"trust":{"type":"FLOAT","value":0.6201509},"target_publication_title":{"type":"STRING","value":"The Complexity of Nash Equilibria in Simple Stochastic Multiplayer Games"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::428fca9bc1921c25c5121f9da7815cde"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:www.era.lib.ed.ac.uk:1842/2651\",\"titles\":[\"The Complexity of Nash Equilibria in Simple Stochastic Multiplayer Games\"],\"abstracts\":[\"We analyse the computational complexity of finding Nash equilibria in\\nsimple stochastic multiplayer games. We show that restricting the\\nsearch space to equilibria whose payoffs fall into a certain interval\\nmay lead to undecidability. In particular, we prove that the following\\nproblem is undecidable: Given a game G, does there exist a\\npure-strategy Nash equilibrium of G where player 0 wins with\\nprobability 1. Moreover, this problem remains undecidable if it is\\nrestricted to strategies with (unbounded) finite memory. However, if\\nmixed strategies are allowed, decidability remains an open problem.\\nOne way to obtain a provably decidable variant of the problem is to\\nrestrict the strategies to be positional or stationary. For the\\ncomplexity of these two problems, we obtain a common lower bound of NP\\nand upper bounds of NP and PSPACE respectively.\",\"to appear in ICALP 2009\"],\"language\":\"eng\",\"subjects\":[\"stochastic games\",\"Nash equilibria\",\"multiplayer games\",\"Informatics\",\"Laboratory for Foundations of Computer Science\"],\"creators\":[\"Ummels, Michael\",\"Wojtczak, Dominik\"],\"publicationdate\":\"2009-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Edinburgh Research Archive\"],\"pids\":[{\"value\":\"10.1007/978-3-642-02930-1_25\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/1842/2651\",\"license\":\"OPEN\",\"hostedby\":\"Edinburgh Research Archive\",\"instancetype\":\"External research report\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/978-3-642-02930-1_25\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0902.0101\",\"id\":\"oai:arXiv.org:0902.0101\"},\"trust\":0.6201509}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Edinburgh Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:www.era.lib.ed.ac.uk:1842/2651"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ummels, Michael","Wojtczak, Dominik"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0902.0101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["stochastic games","Nash equilibria","multiplayer games","Informatics","Laboratory for Foundations of Computer Science"]},"trust":{"type":"FLOAT","value":0.6201509},"target_publication_title":{"type":"STRING","value":"The Complexity of Nash Equilibria in Simple Stochastic Multiplayer Games"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::428fca9bc1921c25c5121f9da7815cde"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.era.lib.ed.ac.uk:1842/2651\",\"titles\":[\"The Complexity of Nash Equilibria in Simple Stochastic Multiplayer Games\"],\"abstracts\":[\"We analyse the computational complexity of finding Nash equilibria in\\nsimple stochastic multiplayer games. We show that restricting the\\nsearch space to equilibria whose payoffs fall into a certain interval\\nmay lead to undecidability. In particular, we prove that the following\\nproblem is undecidable: Given a game G, does there exist a\\npure-strategy Nash equilibrium of G where player 0 wins with\\nprobability 1. Moreover, this problem remains undecidable if it is\\nrestricted to strategies with (unbounded) finite memory. However, if\\nmixed strategies are allowed, decidability remains an open problem.\\nOne way to obtain a provably decidable variant of the problem is to\\nrestrict the strategies to be positional or stationary. For the\\ncomplexity of these two problems, we obtain a common lower bound of NP\\nand upper bounds of NP and PSPACE respectively.\",\"to appear in ICALP 2009\"],\"language\":\"eng\",\"subjects\":[\"stochastic games\",\"Nash equilibria\",\"multiplayer games\",\"Informatics\",\"Laboratory for Foundations of Computer Science\"],\"creators\":[\"Ummels, Michael\",\"Wojtczak, Dominik\"],\"publicationdate\":\"2009-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Edinburgh Research Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/1842/2651\",\"license\":\"OPEN\",\"hostedby\":\"Edinburgh Research Archive\",\"instancetype\":\"External research report\"},{\"url\":\"http://arxiv.org/abs/0902.0101\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/0902.0101\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/0902.0101\",\"id\":\"oai:arXiv.org:0902.0101\"},\"trust\":0.26391667}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Edinburgh Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:www.era.lib.ed.ac.uk:1842/2651"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ummels, Michael","Wojtczak, Dominik"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:0902.0101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["stochastic games","Nash equilibria","multiplayer games","Informatics","Laboratory for Foundations of Computer Science"]},"trust":{"type":"FLOAT","value":0.26391667},"target_publication_title":{"type":"STRING","value":"The Complexity of Nash Equilibria in Simple Stochastic Multiplayer Games"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::428fca9bc1921c25c5121f9da7815cde"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:unu:wpaper:wp2014-005\",\"titles\":[\"Aid, environment, and climate change in Africa: The case of Senegal\"],\"abstracts\":[\"The paper reviews the dynamics of the financing baseed its analysis on the rich dataset of AidData ranging over 1993-2010, with around 9,077 observations on projects funded in Senegal by various multilateral as well as bilateral donors. The study started\"],\"language\":\"und\",\"subjects\":[\"aid, biodiversity, climate change, environment, financing\"],\"creators\":[\"Ngaido, Tidiane\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.wider.unu.edu/stc/repec/pdfs/wp2014/WP2014-005.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/96321\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/96321\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/96321\",\"id\":\"oai:econstor.eu:10419/96321\"},\"trust\":0.42567205}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:unu:wpaper:wp2014-005"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ngaido, Tidiane"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/96321"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["aid, biodiversity, climate change, environment, financing"]},"trust":{"type":"FLOAT","value":0.42567205},"target_publication_title":{"type":"STRING","value":"Aid, environment, and climate change in Africa: The case of Senegal"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/96321\",\"titles\":[\"Aid, environment, and climate change in Africa: The case of Senegal\"],\"abstracts\":[\"The paper reviews the dynamics of the financing baseed its analysis on the rich dataset of AidData ranging over 1993-2010, with around 9,077 observations on projects funded in Senegal by various multilateral as well as bilateral donors. The study started in the same year as the establishment of the environment ministry, 1993, to assess the perspectives as well as the evolution of the financing of the environment. Such an approach has large benefits as it helps to (1) capture changes in financial commitments and disbursement within and across sectors; (2) show the composition and changes of the portfolio of donors and levels of funding in the sector; (3) document which subsectors of the environment are receiving more resources; and (4) demonstrate effects achieved to date.\"],\"language\":\"eng\",\"subjects\":[\"F34\",\"F35\",\"O13\",\"H6\",\"ddc:330\",\"aid\",\"biodiversity\",\"climate change\",\"environment\",\"financing\"],\"creators\":[\"Ngaido, Tidiane\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"WIDER Helsinki\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/96321\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.wider.unu.edu/stc/repec/pdfs/wp2014/WP2014-005.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.wider.unu.edu/stc/repec/pdfs/wp2014/WP2014-005.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.wider.unu.edu/stc/repec/pdfs/wp2014/WP2014-005.pdf\",\"id\":\"oai:RePEc:unu:wpaper:wp2014-005\"},\"trust\":0.14416975}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/96321"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ngaido, Tidiane"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:unu:wpaper:wp2014-005"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["F34","F35","O13","H6","ddc:330","aid","biodiversity","climate change","environment","financing"]},"trust":{"type":"FLOAT","value":0.14416975},"target_publication_title":{"type":"STRING","value":"Aid, environment, and climate change in Africa: The case of Senegal"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:dgr:rugurs:2003306\",\"titles\":[\"Het LISA, VVK Handelsregister en CBS Bedrijvenregister met elkaar vergeleken : vestigingen en banen naar economische activiteit op nationaal en regionaal niveau : samenvattingen en aanbevelingen\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Wissen, Leo\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://irs.ub.rug.nl/ppn/282391223\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://irs.ub.rug.nl/ppn/282391223\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://irs.ub.rug.nl/ppn/282391223\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://irs.ub.rug.nl/ppn/282391223\",\"id\":\"oai:RePEc:gro:rugurs:2003306\"},\"trust\":0.93855095}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:dgr:rugurs:2003306"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wissen, Leo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:gro:rugurs:2003306"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.93855095},"target_publication_title":{"type":"STRING","value":"Het LISA, VVK Handelsregister en CBS Bedrijvenregister met elkaar vergeleken : vestigingen en banen naar economische activiteit op nationaal en regionaal niveau : samenvattingen en aanbevelingen"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:gro:rugurs:2003306\",\"titles\":[\"Het LISA, VVK Handelsregister en CBS Bedrijvenregister met elkaar vergeleken : vestigingen en banen naar economische activiteit op nationaal en regionaal niveau : samenvattingen en aanbevelingen\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Wissen, Leo\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://irs.ub.rug.nl/ppn/282391223\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://irs.ub.rug.nl/ppn/282391223\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://irs.ub.rug.nl/ppn/282391223\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://irs.ub.rug.nl/ppn/282391223\",\"id\":\"oai:RePEc:dgr:rugurs:2003306\"},\"trust\":0.83052427}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:gro:rugurs:2003306"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wissen, Leo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:dgr:rugurs:2003306"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.83052427},"target_publication_title":{"type":"STRING","value":"Het LISA, VVK Handelsregister en CBS Bedrijvenregister met elkaar vergeleken : vestigingen en banen naar economische activiteit op nationaal en regionaal niveau : samenvattingen en aanbevelingen"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:pumaoai.isti.cnr.it:cnr.ipcf/cnr.ipcf/2006-TR-002\",\"titles\":[\"Roughness of Unsymmetric Plasma Solitons\"],\"abstracts\":[\"We present detailed calculations for the degree of roughness of the particle distributions within an unsymmetric plasma soliton. The space-distribution of the electric field within the soliton and the distributions of the particles at itsboundary are assumed to be smooth. Using fractional calculus, we show that the particle distributions within the soliton are necessarily non-smooth, precisely because of its non symmetrical nature\"],\"language\":\"eng\",\"subjects\":[\"plasma solitons\",\"fractional calculus\"],\"creators\":[\"Nocera, Luigi\"],\"publicationdate\":\"2006-02-24\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"PUblication MAnagement\"],\"pids\":[],\"instances\":[{\"url\":\"http://puma.isti.cnr.it/rmydownload.php?filename\\u003dcnr.ipcf/cnr.ipcf/2006-TR-002/2006-TR-002.pdf\",\"license\":\"OPEN\",\"hostedby\":\"PUblication MAnagement\",\"instancetype\":\"Report\"},{\"url\":\"http://puma.isti.cnr.it/rmydownload.php?filename\\u003dcnr.ipcf/cnr.ipcf/2009-TR-001/2009-TR-001.pdf\",\"license\":\"OPEN\",\"hostedby\":\"PUblication MAnagement\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://puma.isti.cnr.it/rmydownload.php?filename\\u003dcnr.ipcf/cnr.ipcf/2009-TR-001/2009-TR-001.pdf\",\"license\":\"OPEN\",\"hostedby\":\"PUblication MAnagement\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"PUblication MAnagement\",\"url\":\"http://puma.isti.cnr.it/rmydownload.php?filename\\u003dcnr.ipcf/cnr.ipcf/2009-TR-001/2009-TR-001.pdf\",\"id\":\"oai:pumaoai.isti.cnr.it:cnr.ipcf/cnr.ipcf/2009-TR-001\"},\"trust\":0.91013646}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"PUblication MAnagement"},"target_publication_id":{"type":"STRING","value":"oai:pumaoai.isti.cnr.it:cnr.ipcf/cnr.ipcf/2006-TR-002"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nocera, Luigi"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:pumaoai.isti.cnr.it:cnr.ipcf/cnr.ipcf/2009-TR-001"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::300891a62162b960cf02ce3827bb363c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["plasma solitons","fractional calculus"]},"trust":{"type":"FLOAT","value":0.91013646},"target_publication_title":{"type":"STRING","value":"Roughness of Unsymmetric Plasma Solitons"},"provenance_datasource_name":{"type":"STRING","value":"PUblication MAnagement"},"target_dateofacceptance":{"type":"DATE","value":"2006-02-24"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::300891a62162b960cf02ce3827bb363c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:pumaoai.isti.cnr.it:cnr.ipcf/cnr.ipcf/2009-TR-001\",\"titles\":[\"Roughness of Unsymmetric Plasma Solitons\"],\"abstracts\":[\"We present detailed calculations for the degree of roughness of the particle distributions within an unsymmetric plasma soliton. The space-distribution of the electric field within the soliton and the distributions of the particles at itsboundary are assumed to be smooth. Using fractional calculus, we show that the particle distributions within the soliton are necessarily non-smooth, precisely because of its non symmetrical nature\"],\"language\":\"eng\",\"subjects\":[\"plasma solitons\",\"fractional calculus\"],\"creators\":[\"Nocera, Luigi\"],\"publicationdate\":\"2009-09-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"PUblication MAnagement\"],\"pids\":[],\"instances\":[{\"url\":\"http://puma.isti.cnr.it/rmydownload.php?filename\\u003dcnr.ipcf/cnr.ipcf/2009-TR-001/2009-TR-001.pdf\",\"license\":\"OPEN\",\"hostedby\":\"PUblication MAnagement\",\"instancetype\":\"Report\"},{\"url\":\"http://puma.isti.cnr.it/rmydownload.php?filename\\u003dcnr.ipcf/cnr.ipcf/2006-TR-002/2006-TR-002.pdf\",\"license\":\"OPEN\",\"hostedby\":\"PUblication MAnagement\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://puma.isti.cnr.it/rmydownload.php?filename\\u003dcnr.ipcf/cnr.ipcf/2006-TR-002/2006-TR-002.pdf\",\"license\":\"OPEN\",\"hostedby\":\"PUblication MAnagement\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"PUblication MAnagement\",\"url\":\"http://puma.isti.cnr.it/rmydownload.php?filename\\u003dcnr.ipcf/cnr.ipcf/2006-TR-002/2006-TR-002.pdf\",\"id\":\"oai:pumaoai.isti.cnr.it:cnr.ipcf/cnr.ipcf/2006-TR-002\"},\"trust\":0.07750851}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"PUblication MAnagement"},"target_publication_id":{"type":"STRING","value":"oai:pumaoai.isti.cnr.it:cnr.ipcf/cnr.ipcf/2009-TR-001"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nocera, Luigi"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:pumaoai.isti.cnr.it:cnr.ipcf/cnr.ipcf/2006-TR-002"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::300891a62162b960cf02ce3827bb363c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["plasma solitons","fractional calculus"]},"trust":{"type":"FLOAT","value":0.07750851},"target_publication_title":{"type":"STRING","value":"Roughness of Unsymmetric Plasma Solitons"},"provenance_datasource_name":{"type":"STRING","value":"PUblication MAnagement"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::300891a62162b960cf02ce3827bb363c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:27955\",\"titles\":[\"Guide to Geographical Indications: Linking Products and Their Origins (Summary)\"],\"abstracts\":[\"Geographical Indications present significant opportunities for differentiating products or services that are uniquely related to their geographic origin. While they can offer many positive economic, social, cultural, and even environmental benefits, they can also be problematic and therefore caution is warranted when pursuing them. The publication distills the relevant lessons that could apply, particularly to developing countries, from a review of more than 200 documents and a number of original Case Studies. It presents a groundwork to better understand the costs and the benefits of undertaking Geographical Indications by outlining the basic processes, covering the pros and cons of different legal instruments, and offering insights into the important factors of success. It reviews and presents current data on the key issues of global GIs such as: economic results, public and private benefits; and market relevance.\"],\"language\":\"und\",\"subjects\":[\"Geographical Indications, developing country, marketing, local, traditional, culture, appellation, legal protection, Denomination of Origin\"],\"creators\":[\"Giovannucci, Daniele\",\"Josling, Timothy\",\"Kerr, William\",\"O Connor, Bernard\",\"Yeung, May T.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/27955/1/MPRA_paper_27955.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/27955/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/27955/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/27955/\",\"id\":\"27955\"},\"trust\":0.88904995}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:27955"},"target_publication_author_list":{"type":"LIST_STRING","value":["Giovannucci, Daniele","Josling, Timothy","Kerr, William","O Connor, Bernard","Yeung, May T."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["27955"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Geographical Indications, developing country, marketing, local, traditional, culture, appellation, legal protection, Denomination of Origin"]},"trust":{"type":"FLOAT","value":0.88904995},"target_publication_title":{"type":"STRING","value":"Guide to Geographical Indications: Linking Products and Their Origins (Summary)"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:27955\",\"titles\":[\"Guide to Geographical Indications: Linking Products and Their Origins (Summary)\"],\"abstracts\":[\"Geographical Indications present significant opportunities for differentiating products or services that are uniquely related to their geographic origin. While they can offer many positive economic, social, cultural, and even environmental benefits, they can also be problematic and therefore caution is warranted when pursuing them. The publication distills the relevant lessons that could apply, particularly to developing countries, from a review of more than 200 documents and a number of original Case Studies. It presents a groundwork to better understand the costs and the benefits of undertaking Geographical Indications by outlining the basic processes, covering the pros and cons of different legal instruments, and offering insights into the important factors of success. It reviews and presents current data on the key issues of global GIs such as: economic results, public and private benefits; and market relevance.\"],\"language\":\"und\",\"subjects\":[\"Geographical Indications, developing country, marketing, local, traditional, culture, appellation, legal protection, Denomination of Origin\"],\"creators\":[\"Giovannucci, Daniele\",\"Josling, Timothy\",\"Kerr, William\",\"O Connor, Bernard\",\"Yeung, May T.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/27955/1/MPRA_paper_27955.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/27955/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/27955/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/27955/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:27955\"},\"trust\":0.18515855}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:27955"},"target_publication_author_list":{"type":"LIST_STRING","value":["Giovannucci, Daniele","Josling, Timothy","Kerr, William","O Connor, Bernard","Yeung, May T."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:27955"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Geographical Indications, developing country, marketing, local, traditional, culture, appellation, legal protection, Denomination of Origin"]},"trust":{"type":"FLOAT","value":0.18515855},"target_publication_title":{"type":"STRING","value":"Guide to Geographical Indications: Linking Products and Their Origins (Summary)"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"27955\",\"titles\":[\"Guide to Geographical Indications: Linking Products and Their Origins (Summary)\"],\"abstracts\":[\"Geographical Indications present significant opportunities for differentiating products or services that are uniquely related to their geographic origin. While they can offer many positive economic, social, cultural, and even environmental benefits, they can also be problematic and therefore caution is warranted when pursuing them. The publication distills the relevant lessons that could apply, particularly to developing countries, from a review of more than 200 documents and a number of original Case Studies. It presents a groundwork to better understand the costs and the benefits of undertaking Geographical Indications by outlining the basic processes, covering the pros and cons of different legal instruments, and offering insights into the important factors of success. It reviews and presents current data on the key issues of global GIs such as: economic results, public and private benefits; and market relevance.\"],\"language\":\"eng\",\"subjects\":[\"O1 - Economic Development\",\"F0 - General\",\"Q0 - General\"],\"creators\":[\"Giovannucci, Daniele\",\"Josling, Timothy\",\"Kerr, William\",\"O Connor, Bernard\",\"Yeung, May T.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/27955/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/27955/1/MPRA_paper_27955.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/27955/1/MPRA_paper_27955.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/27955/1/MPRA_paper_27955.pdf\",\"id\":\"oai:RePEc:pra:mprapa:27955\"},\"trust\":0.25528866}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"27955"},"target_publication_author_list":{"type":"LIST_STRING","value":["Giovannucci, Daniele","Josling, Timothy","Kerr, William","O Connor, Bernard","Yeung, May T."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:27955"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["O1 - Economic Development","F0 - General","Q0 - General"]},"trust":{"type":"FLOAT","value":0.25528866},"target_publication_title":{"type":"STRING","value":"Guide to Geographical Indications: Linking Products and Their Origins (Summary)"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"27955\",\"titles\":[\"Guide to Geographical Indications: Linking Products and Their Origins (Summary)\"],\"abstracts\":[\"Geographical Indications present significant opportunities for differentiating products or services that are uniquely related to their geographic origin. While they can offer many positive economic, social, cultural, and even environmental benefits, they can also be problematic and therefore caution is warranted when pursuing them. The publication distills the relevant lessons that could apply, particularly to developing countries, from a review of more than 200 documents and a number of original Case Studies. It presents a groundwork to better understand the costs and the benefits of undertaking Geographical Indications by outlining the basic processes, covering the pros and cons of different legal instruments, and offering insights into the important factors of success. It reviews and presents current data on the key issues of global GIs such as: economic results, public and private benefits; and market relevance.\"],\"language\":\"eng\",\"subjects\":[\"O1 - Economic Development\",\"F0 - General\",\"Q0 - General\"],\"creators\":[\"Giovannucci, Daniele\",\"Josling, Timothy\",\"Kerr, William\",\"O Connor, Bernard\",\"Yeung, May T.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/27955/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/27955/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/27955/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/27955/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:27955\"},\"trust\":0.9135399}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"27955"},"target_publication_author_list":{"type":"LIST_STRING","value":["Giovannucci, Daniele","Josling, Timothy","Kerr, William","O Connor, Bernard","Yeung, May T."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:27955"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["O1 - Economic Development","F0 - General","Q0 - General"]},"trust":{"type":"FLOAT","value":0.9135399},"target_publication_title":{"type":"STRING","value":"Guide to Geographical Indications: Linking Products and Their Origins (Summary)"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:27955\",\"titles\":[\"Guide to Geographical Indications: Linking Products and Their Origins (Summary)\"],\"abstracts\":[\"Geographical Indications present significant opportunities for differentiating products or services that are uniquely related to their geographic origin. While they can offer many positive economic, social, cultural, and even environmental benefits, they can also be problematic and therefore caution is warranted when pursuing them. The publication distills the relevant lessons that could apply, particularly to developing countries, from a review of more than 200 documents and a number of original Case Studies. It presents a groundwork to better understand the costs and the benefits of undertaking Geographical Indications by outlining the basic processes, covering the pros and cons of different legal instruments, and offering insights into the important factors of success. It reviews and presents current data on the key issues of global GIs such as: economic results, public and private benefits; and market relevance.\"],\"language\":\"eng\",\"subjects\":[\"O1 - Economic Development\",\"F0 - General\",\"Q0 - General\"],\"creators\":[\"Giovannucci, Daniele\",\"Josling, Timothy\",\"Kerr, William\",\"O Connor, Bernard\",\"Yeung, May T.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/27955/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/27955/1/MPRA_paper_27955.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/27955/1/MPRA_paper_27955.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/27955/1/MPRA_paper_27955.pdf\",\"id\":\"oai:RePEc:pra:mprapa:27955\"},\"trust\":0.29970813}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:27955"},"target_publication_author_list":{"type":"LIST_STRING","value":["Giovannucci, Daniele","Josling, Timothy","Kerr, William","O Connor, Bernard","Yeung, May T."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:27955"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["O1 - Economic Development","F0 - General","Q0 - General"]},"trust":{"type":"FLOAT","value":0.29970813},"target_publication_title":{"type":"STRING","value":"Guide to Geographical Indications: Linking Products and Their Origins (Summary)"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:27955\",\"titles\":[\"Guide to Geographical Indications: Linking Products and Their Origins (Summary)\"],\"abstracts\":[\"Geographical Indications present significant opportunities for differentiating products or services that are uniquely related to their geographic origin. While they can offer many positive economic, social, cultural, and even environmental benefits, they can also be problematic and therefore caution is warranted when pursuing them. The publication distills the relevant lessons that could apply, particularly to developing countries, from a review of more than 200 documents and a number of original Case Studies. It presents a groundwork to better understand the costs and the benefits of undertaking Geographical Indications by outlining the basic processes, covering the pros and cons of different legal instruments, and offering insights into the important factors of success. It reviews and presents current data on the key issues of global GIs such as: economic results, public and private benefits; and market relevance.\"],\"language\":\"eng\",\"subjects\":[\"O1 - Economic Development\",\"F0 - General\",\"Q0 - General\"],\"creators\":[\"Giovannucci, Daniele\",\"Josling, Timothy\",\"Kerr, William\",\"O Connor, Bernard\",\"Yeung, May T.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/27955/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/27955/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/27955/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/27955/\",\"id\":\"27955\"},\"trust\":0.101314545}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:27955"},"target_publication_author_list":{"type":"LIST_STRING","value":["Giovannucci, Daniele","Josling, Timothy","Kerr, William","O Connor, Bernard","Yeung, May T."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["27955"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["O1 - Economic Development","F0 - General","Q0 - General"]},"trust":{"type":"FLOAT","value":0.101314545},"target_publication_title":{"type":"STRING","value":"Guide to Geographical Indications: Linking Products and Their Origins (Summary)"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00976588v1\",\"titles\":[\"Evidence-based activism: Patients\\u0027, users\\u0027 and activists\\u0027 groups in knowledge society\"],\"abstracts\":[\"International audience\",\"This article proposes the notion of \\u0027evidence-based activism\\u0027 to capture patients\\u0027 and health activists\\u0027 groups\\u0027 focus on knowledge production and knowledge mobilisation in the governance of health issues. It introduces empirical data and analysis on groups active in four countries (France, Ireland, Portugal and the United Kingdom), and in four condition-areas (rare diseases, Alzheimer\\u0027s disease, ADHD - Attention Deficit Hyperactivity Disorder and childbirth). It shows how these groups engage with, and articulate a variety of credentialed knowledge and \\u0027experiential knowledge\\u0027 with a view to explore concerned people\\u0027s situations, to make themselves part and parcel of the networks of expertise on their conditions in their national contexts, and to elaborate evidence on the issues they deem important to address both at an individual and at a collective level. This article argues that in contrast to health movements which contest institutions from the outside, patients\\u0027 and activists\\u0027 groups which embrace \\u0027evidence-based activism\\u0027 work \\u0027from within\\u0027 to imagine new epistemic and political appraisal of their causes and conditions. \\u0027Evidence-based activism\\u0027 entails a collective inquiry associating patients/activists and specialists/professionals in the conjoint fabrics of scientific statements and political claims. From a conceptual standpoint, \\u0027evidence-based activism\\u0027 sheds light on the ongoing co-production of matters of fact and matters of concern in contemporary technological democracies.\"],\"language\":\"eng\",\"subjects\":[\"evidence-based activism\",\"patients\\u0027 and health activists\\u0027 groups\",\"expertise\",\"health-care policies\",\"collective inquiry\",\"technological democracies\",\"[SHS.SOCIO] Humanities and Social Sciences/Sociology\"],\"creators\":[\"Rabeharisoa, Vololona\",\"Moreira, Tiago\",\"Akrich, Madeleine\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"Palgrave Macmillan\",\"embargoenddate\":\"\",\"contributor\":[\"Centre de sociologie de l\\u0027innovation (CSI) ; MINES ParisTech - École nationale supérieure des mines de Paris - CNRS\",\"School of Applied Social Sciences ; Durham University\",\"European Project : 230307, SiS, FP7-SCIENCE-IN-SOCIETY-2008-1, EPOKS(2009)\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1057/biosoc.2014.2\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal-mines-paristech.archives-ouvertes.fr/hal-00976588\",\"license\":\"CLOSED\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00976588\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00976588\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00976588\",\"id\":\"oai:hal-ensmp.archives-ouvertes.fr:hal-00976588\"},\"trust\":0.5400192}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00976588v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rabeharisoa, Vololona","Moreira, Tiago","Akrich, Madeleine"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal-ensmp.archives-ouvertes.fr:hal-00976588"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["evidence-based activism","patients\u0027 and health activists\u0027 groups","expertise","health-care policies","collective inquiry","technological democracies","[SHS.SOCIO] Humanities and Social Sciences/Sociology"]},"trust":{"type":"FLOAT","value":0.5400192},"target_publication_title":{"type":"STRING","value":"Evidence-based activism: Patients\u0027, users\u0027 and activists\u0027 groups in knowledge society"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00976588v1\",\"titles\":[\"Evidence-based activism: Patients\\u0027, users\\u0027 and activists\\u0027 groups in knowledge society\"],\"abstracts\":[\"International audience\",\"This article proposes the notion of \\u0027evidence-based activism\\u0027 to capture patients\\u0027 and health activists\\u0027 groups\\u0027 focus on knowledge production and knowledge mobilisation in the governance of health issues. It introduces empirical data and analysis on groups active in four countries (France, Ireland, Portugal and the United Kingdom), and in four condition-areas (rare diseases, Alzheimer\\u0027s disease, ADHD - Attention Deficit Hyperactivity Disorder and childbirth). It shows how these groups engage with, and articulate a variety of credentialed knowledge and \\u0027experiential knowledge\\u0027 with a view to explore concerned people\\u0027s situations, to make themselves part and parcel of the networks of expertise on their conditions in their national contexts, and to elaborate evidence on the issues they deem important to address both at an individual and at a collective level. This article argues that in contrast to health movements which contest institutions from the outside, patients\\u0027 and activists\\u0027 groups which embrace \\u0027evidence-based activism\\u0027 work \\u0027from within\\u0027 to imagine new epistemic and political appraisal of their causes and conditions. \\u0027Evidence-based activism\\u0027 entails a collective inquiry associating patients/activists and specialists/professionals in the conjoint fabrics of scientific statements and political claims. From a conceptual standpoint, \\u0027evidence-based activism\\u0027 sheds light on the ongoing co-production of matters of fact and matters of concern in contemporary technological democracies.\"],\"language\":\"eng\",\"subjects\":[\"evidence-based activism\",\"patients\\u0027 and health activists\\u0027 groups\",\"expertise\",\"health-care policies\",\"collective inquiry\",\"technological democracies\",\"[SHS.SOCIO] Humanities and Social Sciences/Sociology\"],\"creators\":[\"Rabeharisoa, Vololona\",\"Moreira, Tiago\",\"Akrich, Madeleine\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"Palgrave Macmillan\",\"embargoenddate\":\"\",\"contributor\":[\"Centre de sociologie de l\\u0027innovation (CSI) ; MINES ParisTech - École nationale supérieure des mines de Paris - CNRS\",\"School of Applied Social Sciences ; Durham University\",\"European Project : 230307, SiS, FP7-SCIENCE-IN-SOCIETY-2008-1, EPOKS(2009)\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1057/biosoc.2014.2\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal-mines-paristech.archives-ouvertes.fr/hal-00976588\",\"license\":\"CLOSED\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00976588\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00976588\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00976588\",\"id\":\"oai:hal-ensmp.archives-ouvertes.fr:hal-00976588\"},\"trust\":0.5400192}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00976588v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rabeharisoa, Vololona","Moreira, Tiago","Akrich, Madeleine"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal-ensmp.archives-ouvertes.fr:hal-00976588"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["evidence-based activism","patients\u0027 and health activists\u0027 groups","expertise","health-care policies","collective inquiry","technological democracies","[SHS.SOCIO] Humanities and Social Sciences/Sociology"]},"trust":{"type":"FLOAT","value":0.5400192},"target_publication_title":{"type":"STRING","value":"Evidence-based activism: Patients\u0027, users\u0027 and activists\u0027 groups in knowledge society"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2595261\",\"titles\":[\"Crosstalk between Oxidative Stress and SIRT1: Impact on the Aging Process\"],\"abstracts\":[\"Increased oxidative stress has been associated with the aging process. However, recent studies have revealed that a low-level oxidative stress can even extend the lifespan of organisms. Reactive oxygen species (ROS) are important signaling molecules, e.g., being required for autophagic degradation. SIRT1, a class III protein deacetylase, is a crucial cellular survival protein, which is also involved in combatting oxidative stress. For instance, SIRT1 can stimulate the expression of antioxidants via the FoxO pathways. Moreover, in contrast to ROS, SIRT1 inhibits NF-κB signaling which is a major inducer of inflammatory responses, e.g., with inflammasome pathway. Recent studies have demonstrated that an increased level of ROS can both directly and indirectly control the activity of SIRT1 enzyme. For instance, ROS can inhibit SIRT1 activity by evoking oxidative modifications on its cysteine residues. Decreased activity of SIRT1 enhances the NF-κB signaling, which supports inflammatory responses. This crosstalk between the SIRT1 and ROS signaling provokes in a context-dependent manner a decline in autophagy and a low-grade inflammatory phenotype, both being common hallmarks of ageing. We will review the major mechanisms controlling the signaling balance between the ROS production and SIRT1 activity emphasizing that this crosstalk has a crucial role in the regulation of the aging process.\"],\"language\":\"eng\",\"subjects\":[\"Review\",\"ageing\",\"autophagy\",\"oxidative stress\",\"inflammasome\",\"NF-κB\",\"ROS\",\"SIRT1\"],\"creators\":[\"Salminen, Antero\",\"Kaarniranta, Kai\",\"Kauppinen, Anu\"],\"publicationdate\":\"2013-02-01\",\"publisher\":\"MDPI\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"International Journal of Molecular Sciences\",\"issn\":\"\",\"eissn\":\"1422-0067\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3390/ijms14023834\",\"type\":\"doi\"},{\"value\":\"PMC3588074\",\"type\":\"pmc\"},{\"value\":\"23434668\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3588074\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.mdpi.com/1422-0067/14/2/3834\",\"license\":\"OPEN\",\"hostedby\":\"International Journal of Molecular Sciences\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.mdpi.com/1422-0067/14/2/3834\",\"license\":\"OPEN\",\"hostedby\":\"International Journal of Molecular Sciences\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.mdpi.com/1422-0067/14/2/3834\",\"id\":\"oai:doaj.org/article:c71f5373e1134c9390bccd6aee5ffc40\"},\"trust\":0.22199935}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2595261"},"target_publication_author_list":{"type":"LIST_STRING","value":["Salminen, Antero","Kaarniranta, Kai","Kauppinen, Anu"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:c71f5373e1134c9390bccd6aee5ffc40"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Review","ageing","autophagy","oxidative stress","inflammasome","NF-κB","ROS","SIRT1"]},"trust":{"type":"FLOAT","value":0.22199935},"target_publication_title":{"type":"STRING","value":"Crosstalk between Oxidative Stress and SIRT1: Impact on the Aging Process"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2013-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:doc.utwente.nl:78604\",\"titles\":[\"Generating varied narrative probability exercises\"],\"abstracts\":[\"This paper presents Genpex, a system for automatic generation of narrative probability exercises. Generation of exercises in Genpex is done in two steps. First, the system creates a specification of a solvable probability problem, based on input from the user (a researcher or test developer) who selects a specific question type and a narrative context for the problem. Then, a text expressing the probability problem is generated. The user can tune the generated text by setting the values of some linguistic variation parameters. By varying the mathematical content of the exercise, its narrative context and the linguistic parameter settings, many different exercises can be produced. Here we focus on the natural language generation part of Genpex. After describing how the system works, we briefly present our first evaluation results, and discuss some aspects requiring further investigation.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Theune, Mariët\",\"Boer Rookhuiszen, Roan\",\"Akker, Rieks Op Den\",\"Geerlings, Hanneke\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Association for Computational Linguistics\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit Twente Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://purl.utwente.nl/publications/78604\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://purl.utwente.nl/publications/78604\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://purl.utwente.nl/publications/78604\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://purl.utwente.nl/publications/78604\",\"id\":\"ut:oai:doc.utwente.nl:78604\"},\"trust\":0.33247954}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit Twente Repository"},"target_publication_id":{"type":"STRING","value":"oai:doc.utwente.nl:78604"},"target_publication_author_list":{"type":"LIST_STRING","value":["Theune, Mariët","Boer Rookhuiszen, Roan","Akker, Rieks Op Den","Geerlings, Hanneke"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["ut:oai:doc.utwente.nl:78604"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.33247954},"target_publication_title":{"type":"STRING","value":"Generating varied narrative probability exercises"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8dd48d6a2e2cad213179a3992c0be53c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:arx:papers:cond-mat/0202356\",\"titles\":[\"Tail Dependence of Factor Models\"],\"abstracts\":[\"Using the framework of factor models, we establish the general expression of the coefficient of tail dependence between the market and a stock (i.e., the probability that the stock incurs a large loss, assuming that the market has also undergone a large loss) as a function of the parameters of the underlying factor model and of the tail parameters of the distributions of the factor and of the idiosyncratic noise of each stock. Our formula holds for arbitrary marginal distributions and in addition does not require any parameterization of the multivariate distributions of the market and stocks. The determination of the extreme parameter, which is not accessible by a direct statistical inference, is made possible by the measurement of parameters whose estimation involves a significant part of the data with sufficient statistics. Our empirical tests find a good agreement between the calibration of the tail dependence coefficient and the realized large losses over the period from 1962 to 2000. Nevertheless, a bias is detected which suggests the presence of an outlier in the form of the crash of October 1987.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Malevergne, Y.\",\"Sornette, D.\"],\"publicationdate\":\"2002-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/pdf/cond-mat/0202356\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://arxiv.org/abs/cond-mat/0202356\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/cond-mat/0202356\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/cond-mat/0202356\",\"id\":\"oai:arXiv.org:cond-mat/0202356\"},\"trust\":0.021753669}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:arx:papers:cond-mat/0202356"},"target_publication_author_list":{"type":"LIST_STRING","value":["Malevergne, Y.","Sornette, D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:cond-mat/0202356"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.021753669},"target_publication_title":{"type":"STRING","value":"Tail Dependence of Factor Models"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2002-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:cond-mat/0202356\",\"titles\":[\"Tail Dependence of Factor Models\"],\"abstracts\":[\" Using the framework of factor models, we establish the general expression of\\nthe coefficient of tail dependence between the market and a stock (i.e., the\\nprobability that the stock incurs a large loss, assuming that the market has\\nalso undergone a large loss) as a function of the parameters of the underlying\\nfactor model and of the tail parameters of the distributions of the factor and\\nof the idiosyncratic noise of each stock. Our formula holds for arbitrary\\nmarginal distributions and in addition does not require any parameterization of\\nthe multivariate distributions of the market and stocks. The determination of\\nthe extreme parameter, which is not accessible by a direct statistical\\ninference, is made possible by the measurement of parameters whose estimation\\ninvolves a significant part of the data with sufficient statistics. Our\\nempirical tests find a good agreement between the calibration of the tail\\ndependence coefficient and the realized large losses over the period from 1962\\nto 2000. Nevertheless, a bias is detected which suggests the presence of an\\noutlier in the form of the crash of October 1987.\\n\",\"Comment: Latex document of 29 pages including 10 tables\"],\"language\":\"eng\",\"subjects\":[\"Condensed Matter - Statistical Mechanics\",\"Quantitative Finance - Portfolio Management\"],\"creators\":[\"Malevergne, Y.\",\"Sornette, D.\"],\"publicationdate\":\"2002-02-20\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/cond-mat/0202356\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/pdf/cond-mat/0202356\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/pdf/cond-mat/0202356\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://arxiv.org/pdf/cond-mat/0202356\",\"id\":\"oai:RePEc:arx:papers:cond-mat/0202356\"},\"trust\":0.046791792}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:cond-mat/0202356"},"target_publication_author_list":{"type":"LIST_STRING","value":["Malevergne, Y.","Sornette, D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:arx:papers:cond-mat/0202356"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Condensed Matter - Statistical Mechanics","Quantitative Finance - Portfolio Management"]},"trust":{"type":"FLOAT","value":0.046791792},"target_publication_title":{"type":"STRING","value":"Tail Dependence of Factor Models"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2002-02-20"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dipot.ulb.ac.be:2013/109574\",\"titles\":[\"Stock Returns, Governments and Market Foresight in France, 1871-2008\"],\"abstracts\":[\"This paper analyzes the historical relationship between the political coloration of the government and stock market performance in France between 1871 and 2008. The Left-wing/Right-wing dichotomy, which is ubiquitous in French political discourse, is utilized in order to build a comparative analytical framework. During the 150 months characterized by the appointment of a new government regardless the coloration, we find that the monthly stock return is, on average, three times higher than for other months. The market appreciates in value with all new governments. However, in the long run, the real return of French stocks averages 4.40% per year under Left-wing versus 0.11% under Right-wing governments. This difference, although statistically robust, is not the result of added compensation for higher risk investments, nor is it driven by short special periods. The existence of a more favorable macroeconomic context during the rule of Left-wing governments only explains one third of this difference. A large part of the difference is concentrated during the three months prior to a coloration change. Assuming that the market anticipates coloration changes three months in advance, we move the boundaries: the difference in stock returns becomes insignificant.\",\"info:eu-repo/semantics/published\"],\"language\":\"eng\",\"subjects\":[\"Economie\",\"General Financial Markets: General (includes Measurement and Data)\",\"G10\",\"General Financial Markets: Government Policy and Regulation\",\"G18\",\"Structure and Scope of Government: General\",\"H10\",\"Economic History: Financial Markets and Institutions: Europe: Pre-1913\",\"N23\",\"Economic History: Financial Markets and Institutions: Europe: 1913-\",\"N24\",\"Political puzzle\",\"Political impact\",\"Information uncertainty\",\"Stock returns\",\"19th century\",\"20th century\"],\"creators\":[\"Le Bris, David\"],\"publicationdate\":\"2012-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DI-fusion\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2013/ULB-DIPOT:oai:dipot.ulb.ac.be:2013/109574\",\"license\":\"OPEN\",\"hostedby\":\"DI-fusion\",\"instancetype\":\"Research\"},{\"url\":\"https://dipot.ulb.ac.be/dspace/bitstream/2013/109574/1/wp12007.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://dipot.ulb.ac.be/dspace/bitstream/2013/109574/1/wp12007.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://dipot.ulb.ac.be/dspace/bitstream/2013/109574/1/wp12007.pdf\",\"id\":\"oai:RePEc:sol:wpaper:2013/109574\"},\"trust\":0.50149184}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DI-fusion"},"target_publication_id":{"type":"STRING","value":"oai:dipot.ulb.ac.be:2013/109574"},"target_publication_author_list":{"type":"LIST_STRING","value":["Le Bris, David"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:sol:wpaper:2013/109574"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Economie","General Financial Markets: General (includes Measurement and Data)","G10","General Financial Markets: Government Policy and Regulation","G18","Structure and Scope of Government: General","H10","Economic History: Financial Markets and Institutions: Europe: Pre-1913","N23","Economic History: Financial Markets and Institutions: Europe: 1913-","N24","Political puzzle","Political impact","Information uncertainty","Stock returns","19th century","20th century"]},"trust":{"type":"FLOAT","value":0.50149184},"target_publication_title":{"type":"STRING","value":"Stock Returns, Governments and Market Foresight in France, 1871-2008"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::c5866e93cab1776890fe343c9e7063fb"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:sol:wpaper:2013/109574\",\"titles\":[\"Stock Returns, Governments and Market Foresight in France, 1871-2008\"],\"abstracts\":[\"This paper analyzes the historical relationship between the political coloration of the government and stock market performance in France between 1871 and 2008. The Left-wing/Right-wing dichotomy, which is ubiquitous in French political discourse, is utilized in order to build a comparative analytical framework. During the 150 months characterized by the appointment of a new government regardless the coloration, we find that the monthly stock return is, on average, three times higher than for other months. The market appreciates in value with all new governments. However, in the long run, the real return of French stocks averages 4.40% per year under Left-wing versus 0.11% under Right-wing governments. This difference, although statistically robust, is not the result of added compensation for higher risk investments, nor is it driven by short special periods. The existence of a more favorable macroeconomic context during the rule of Left-wing governments only explains one third of this difference. A large part of the difference is concentrated during the three months prior to a coloration change. Assuming that the market anticipates coloration changes three months in advance, we move the boundaries: the difference in stock returns becomes insignificant.\"],\"language\":\"und\",\"subjects\":[\"Political puzzle; Political impact; Information uncertainty; Stock returns; 19th century; 20th century\"],\"creators\":[\"David Le Bris\"],\"publicationdate\":\"2012-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://dipot.ulb.ac.be/dspace/bitstream/2013/109574/1/wp12007.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/2013/ULB-DIPOT:oai:dipot.ulb.ac.be:2013/109574\",\"license\":\"OPEN\",\"hostedby\":\"DI-fusion\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2013/ULB-DIPOT:oai:dipot.ulb.ac.be:2013/109574\",\"license\":\"OPEN\",\"hostedby\":\"DI-fusion\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"DI-fusion\",\"url\":\"http://hdl.handle.net/2013/ULB-DIPOT:oai:dipot.ulb.ac.be:2013/109574\",\"id\":\"oai:dipot.ulb.ac.be:2013/109574\"},\"trust\":0.46656138}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:sol:wpaper:2013/109574"},"target_publication_author_list":{"type":"LIST_STRING","value":["David Le Bris"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dipot.ulb.ac.be:2013/109574"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::c5866e93cab1776890fe343c9e7063fb"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Political puzzle; Political impact; Information uncertainty; Stock returns; 19th century; 20th century"]},"trust":{"type":"FLOAT","value":0.46656138},"target_publication_title":{"type":"STRING","value":"Stock Returns, Governments and Market Foresight in France, 1871-2008"},"provenance_datasource_name":{"type":"STRING","value":"DI-fusion"},"target_dateofacceptance":{"type":"DATE","value":"2012-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:tel-00528811v1\",\"titles\":[\"De l\\u0027analyse à la conception d\\u0027algorithmes pour une radiosité hiérarchique efficace\"],\"abstracts\":[\"no abstract\"],\"language\":\"fra/fre\",\"subjects\":[\"no keywords\",\"[INFO.INFO-HC] Computer Science/Human-Computer Interaction\"],\"creators\":[\"Turbet, Jérémie\"],\"publicationdate\":\"2002-03-21\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"iMAGIS (IMAG-INRIA Rhône-Alpes / GRAVIR) ; INRIA - Université Joseph Fourier - Grenoble I - Institut National Polytechnique de Grenoble (INPG)\",\"Université Joseph-Fourier - Grenoble I\",\"François Sillion\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://tel.archives-ouvertes.fr/tel-00528811\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://tel.archives-ouvertes.fr/tel-00528811\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00528811\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://tel.archives-ouvertes.fr/tel-00528811\",\"id\":\"oai:tel.archives-ouvertes.fr:tel-00528811\"},\"trust\":0.46929651}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:tel-00528811v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Turbet, Jérémie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:tel.archives-ouvertes.fr:tel-00528811"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["no keywords","[INFO.INFO-HC] Computer Science/Human-Computer Interaction"]},"trust":{"type":"FLOAT","value":0.46929651},"target_publication_title":{"type":"STRING","value":"De l\u0027analyse à la conception d\u0027algorithmes pour une radiosité hiérarchique efficace"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2002-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:tel.archives-ouvertes.fr:tel-00528811\",\"titles\":[\"De l\\u0027analyse à la conception d\\u0027algorithmes pour une radiosité hiérarchique efficace\"],\"abstracts\":[\"no abstract\"],\"language\":\"fra/fre\",\"subjects\":[\"[INFO:INFO_HC] Computer Science/Human-Computer Interaction\",\"[INFO:INFO_HC] Informatique/Interface homme-machine\",\"no keywords\"],\"creators\":[\"Turbet, Jérémie\"],\"publicationdate\":\"2002-03-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00528811\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"https://tel.archives-ouvertes.fr/tel-00528811\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://tel.archives-ouvertes.fr/tel-00528811\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://tel.archives-ouvertes.fr/tel-00528811\",\"id\":\"oai:HAL:tel-00528811v1\"},\"trust\":0.63359666}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:tel.archives-ouvertes.fr:tel-00528811"},"target_publication_author_list":{"type":"LIST_STRING","value":["Turbet, Jérémie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:tel-00528811v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_HC] Computer Science/Human-Computer Interaction","[INFO:INFO_HC] Informatique/Interface homme-machine","no keywords"]},"trust":{"type":"FLOAT","value":0.63359666},"target_publication_title":{"type":"STRING","value":"De l\u0027analyse à la conception d\u0027algorithmes pour une radiosité hiérarchique efficace"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2002-03-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:35772\",\"titles\":[\"Predicting swings in exchange rates with macro fundamentals\"],\"abstracts\":[\"This paper investigates fundamentals-based exchange rate predictability from a different perspective. We focus on predicting currency swings (major trends in depreciation or appreciation) rather than on quantitative changes of exchange rates. Having used a nonparametric approach to identify swings in exchange rates, we examine the links between fundamentals and swings in exchange rates using both in-sample and out-of-sample forecasting tests. We use data from 12 developed countries, and our empirical evidence suggests that the uncovered interest parity fundamentals and Taylor rule model with interest rate smoothing are strong predictors of exchange rate swings.\"],\"language\":\"eng\",\"subjects\":[\"E31 - Price Level; Inflation; Deflation\",\"C22 - Time-Series Models; Dynamic Quantile Regressions; Dynamic Treatment Effect Models\"],\"creators\":[\"Shiu-Sheng, Chen\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/35772/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/35772/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/35772/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/35772/\",\"id\":\"35772\"},\"trust\":0.7424904}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:35772"},"target_publication_author_list":{"type":"LIST_STRING","value":["Shiu-Sheng, Chen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["35772"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["E31 - Price Level; Inflation; Deflation","C22 - Time-Series Models; Dynamic Quantile Regressions; Dynamic Treatment Effect Models"]},"trust":{"type":"FLOAT","value":0.7424904},"target_publication_title":{"type":"STRING","value":"Predicting swings in exchange rates with macro fundamentals"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:35772\",\"titles\":[\"Predicting swings in exchange rates with macro fundamentals\"],\"abstracts\":[\"This paper investigates fundamentals-based exchange rate predictability from a different perspective. We focus on predicting currency swings (major trends in depreciation or appreciation) rather than on quantitative changes of exchange rates. Having used a nonparametric approach to identify swings in exchange rates, we examine the links between fundamentals and swings in exchange rates using both in-sample and out-of-sample forecasting tests. We use data from 12 developed countries, and our empirical evidence suggests that the uncovered interest parity fundamentals and Taylor rule model with interest rate smoothing are strong predictors of exchange rate swings.\"],\"language\":\"eng\",\"subjects\":[\"E31 - Price Level; Inflation; Deflation\",\"C22 - Time-Series Models; Dynamic Quantile Regressions; Dynamic Treatment Effect Models\"],\"creators\":[\"Shiu-Sheng, Chen\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/35772/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/35772/1/MPRA_paper_35772.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/35772/1/MPRA_paper_35772.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/35772/1/MPRA_paper_35772.pdf\",\"id\":\"oai:RePEc:pra:mprapa:35772\"},\"trust\":0.18101239}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:35772"},"target_publication_author_list":{"type":"LIST_STRING","value":["Shiu-Sheng, Chen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:35772"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["E31 - Price Level; Inflation; Deflation","C22 - Time-Series Models; Dynamic Quantile Regressions; Dynamic Treatment Effect Models"]},"trust":{"type":"FLOAT","value":0.18101239},"target_publication_title":{"type":"STRING","value":"Predicting swings in exchange rates with macro fundamentals"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"35772\",\"titles\":[\"Predicting swings in exchange rates with macro fundamentals\"],\"abstracts\":[\"This paper investigates fundamentals-based exchange rate predictability from a different perspective. We focus on predicting currency swings (major trends in depreciation or appreciation) rather than on quantitative changes of exchange rates. Having used a nonparametric approach to identify swings in exchange rates, we examine the links between fundamentals and swings in exchange rates using both in-sample and out-of-sample forecasting tests. We use data from 12 developed countries, and our empirical evidence suggests that the uncovered interest parity fundamentals and Taylor rule model with interest rate smoothing are strong predictors of exchange rate swings.\"],\"language\":\"eng\",\"subjects\":[\"E31 - Price Level ; Inflation ; Deflation\",\"C22 - Time-Series Models ; Dynamic Quantile Regressions ; Dynamic Treatment Effect Models ; Diffusion Processes\"],\"creators\":[\"Shiu-Sheng, Chen\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/35772/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/35772/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/35772/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/35772/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:35772\"},\"trust\":0.5063426}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"35772"},"target_publication_author_list":{"type":"LIST_STRING","value":["Shiu-Sheng, Chen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:35772"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["E31 - Price Level ; Inflation ; Deflation","C22 - Time-Series Models ; Dynamic Quantile Regressions ; Dynamic Treatment Effect Models ; Diffusion Processes"]},"trust":{"type":"FLOAT","value":0.5063426},"target_publication_title":{"type":"STRING","value":"Predicting swings in exchange rates with macro fundamentals"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"35772\",\"titles\":[\"Predicting swings in exchange rates with macro fundamentals\"],\"abstracts\":[\"This paper investigates fundamentals-based exchange rate predictability from a different perspective. We focus on predicting currency swings (major trends in depreciation or appreciation) rather than on quantitative changes of exchange rates. Having used a nonparametric approach to identify swings in exchange rates, we examine the links between fundamentals and swings in exchange rates using both in-sample and out-of-sample forecasting tests. We use data from 12 developed countries, and our empirical evidence suggests that the uncovered interest parity fundamentals and Taylor rule model with interest rate smoothing are strong predictors of exchange rate swings.\"],\"language\":\"eng\",\"subjects\":[\"E31 - Price Level ; Inflation ; Deflation\",\"C22 - Time-Series Models ; Dynamic Quantile Regressions ; Dynamic Treatment Effect Models ; Diffusion Processes\"],\"creators\":[\"Shiu-Sheng, Chen\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/35772/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/35772/1/MPRA_paper_35772.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/35772/1/MPRA_paper_35772.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/35772/1/MPRA_paper_35772.pdf\",\"id\":\"oai:RePEc:pra:mprapa:35772\"},\"trust\":0.6627065}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"35772"},"target_publication_author_list":{"type":"LIST_STRING","value":["Shiu-Sheng, Chen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:35772"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["E31 - Price Level ; Inflation ; Deflation","C22 - Time-Series Models ; Dynamic Quantile Regressions ; Dynamic Treatment Effect Models ; Diffusion Processes"]},"trust":{"type":"FLOAT","value":0.6627065},"target_publication_title":{"type":"STRING","value":"Predicting swings in exchange rates with macro fundamentals"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:35772\",\"titles\":[\"Predicting swings in exchange rates with macro fundamentals\"],\"abstracts\":[\"This paper investigates fundamentals-based exchange rate predictability from a different perspective. We focus on predicting currency swings (major trends in depreciation or appreciation) rather than on quantitative changes of exchange rates. Having used a nonparametric approach to identify swings in exchange rates, we examine the links between fundamentals and swings in exchange rates using both in-sample and out-of-sample forecasting tests. We use data from 12 developed countries, and our empirical evidence suggests that the uncovered interest parity fundamentals and Taylor rule model with interest rate smoothing are strong predictors of exchange rate swings.\"],\"language\":\"und\",\"subjects\":[\"exchange rate swings, fundamentals\"],\"creators\":[\"Shiu-Sheng, Chen\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/35772/1/MPRA_paper_35772.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/35772/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/35772/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/35772/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:35772\"},\"trust\":0.15677333}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:35772"},"target_publication_author_list":{"type":"LIST_STRING","value":["Shiu-Sheng, Chen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:35772"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["exchange rate swings, fundamentals"]},"trust":{"type":"FLOAT","value":0.15677333},"target_publication_title":{"type":"STRING","value":"Predicting swings in exchange rates with macro fundamentals"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:35772\",\"titles\":[\"Predicting swings in exchange rates with macro fundamentals\"],\"abstracts\":[\"This paper investigates fundamentals-based exchange rate predictability from a different perspective. We focus on predicting currency swings (major trends in depreciation or appreciation) rather than on quantitative changes of exchange rates. Having used a nonparametric approach to identify swings in exchange rates, we examine the links between fundamentals and swings in exchange rates using both in-sample and out-of-sample forecasting tests. We use data from 12 developed countries, and our empirical evidence suggests that the uncovered interest parity fundamentals and Taylor rule model with interest rate smoothing are strong predictors of exchange rate swings.\"],\"language\":\"und\",\"subjects\":[\"exchange rate swings, fundamentals\"],\"creators\":[\"Shiu-Sheng, Chen\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/35772/1/MPRA_paper_35772.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/35772/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/35772/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/35772/\",\"id\":\"35772\"},\"trust\":0.6994309}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:35772"},"target_publication_author_list":{"type":"LIST_STRING","value":["Shiu-Sheng, Chen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["35772"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["exchange rate swings, fundamentals"]},"trust":{"type":"FLOAT","value":0.6994309},"target_publication_title":{"type":"STRING","value":"Predicting swings in exchange rates with macro fundamentals"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00249254v1\",\"titles\":[\"Structure atomique interfaciale et atténuation du courant supraconducteur par les joints de grains dans les céramiques YBa2Cu3O7-x\"],\"abstracts\":[\"Nous avons tout d\\u0027abord répertorié les différents types de joints présents dans une céramique polycristalline frittée. On distingue deux types de joints : les plus fréquents sont ceux contenant le plan (ab). L\\u0027exemple le plus caractéristique est donné par le joint ΣQ 3 (c1⊥c2) qui présente une structure atomique remarquablement continue. Le deuxième type de joints ne contient pas le plan (ab). Nous montrons que leur structure atomique interfaciale n\\u0027est perturbée que sur quelques plans atomiques. Elle devient presque parfaite lorsque les grains adjacents présentent une relation de coïncidence. Parallèlement, nous avons effectué des mesures locales d\\u0027atténuation du courant critique sur ces différents types de joints. Nous montrons que seuls certains joints de coïncidence ne contenant pas le plan (ab) atténuent faiblement le courant critique.\"],\"language\":\"fra/fre\",\"subjects\":[\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Laval, J.\",\"Drouet, M.\",\"Swiatnicki, W.\"],\"publicationdate\":\"1994-01-01\",\"publisher\":\"EDP Sciences\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jp3:1994269\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00249254\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00249254\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00249254\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00249254\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00249254\"},\"trust\":0.3442505}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00249254v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Laval, J.","Drouet, M.","Swiatnicki, W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00249254"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.3442505},"target_publication_title":{"type":"STRING","value":"Structure atomique interfaciale et atténuation du courant supraconducteur par les joints de grains dans les céramiques YBa2Cu3O7-x"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1994-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00249254\",\"titles\":[\"Structure atomique interfaciale et atténuation du courant supraconducteur par les joints de grains dans les céramiques YBa2Cu3O7-x\"],\"abstracts\":[\"Nous avons tout d\\u0027abord répertorié les différents types de joints présents dans une céramique polycristalline frittée. On distingue deux types de joints : les plus fréquents sont ceux contenant le plan (ab). L\\u0027exemple le plus caractéristique est donné par le joint ΣQ 3 (c1⊥c2) qui présente une structure atomique remarquablement continue. Le deuxième type de joints ne contient pas le plan (ab). Nous montrons que leur structure atomique interfaciale n\\u0027est perturbée que sur quelques plans atomiques. Elle devient presque parfaite lorsque les grains adjacents présentent une relation de coïncidence. Parallèlement, nous avons effectué des mesures locales d\\u0027atténuation du courant critique sur ces différents types de joints. Nous montrons que seuls certains joints de coïncidence ne contenant pas le plan (ab) atténuent faiblement le courant critique.\"],\"language\":\"fra/fre\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\"],\"creators\":[\"Laval, J.\",\"Drouet, M.\",\"Swiatnicki, W.\"],\"publicationdate\":\"1994-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jp3:1994269\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00249254\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00249254\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00249254\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00249254\",\"id\":\"oai:HAL:jpa-00249254v1\"},\"trust\":0.28218514}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00249254"},"target_publication_author_list":{"type":"LIST_STRING","value":["Laval, J.","Drouet, M.","Swiatnicki, W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00249254v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens"]},"trust":{"type":"FLOAT","value":0.28218514},"target_publication_title":{"type":"STRING","value":"Structure atomique interfaciale et atténuation du courant supraconducteur par les joints de grains dans les céramiques YBa2Cu3O7-x"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1994-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:unm:unumer:2009007\",\"titles\":[\"Remittances, lagged dependent variables and migration stocks as determinants of migration from developing countries\"],\"abstracts\":[\"In regressions for net immigration flows of developing countries we show that (i) savings finance emigration and worker remittances serve to make staying rather than migrating possible until a certain value, beyond which the opposite holds; (ii) lagged dependent migration flows have a negative sign even in the presence of migration stock variables; (iii) migration stocks have S-shaped effects: at sufficiently low values higher migration stocks support emigration; beyond a threshold value they support net immigration before they possibly support emigration again after a second threshold value.\"],\"language\":\"und\",\"subjects\":[\"migration, remittances\"],\"creators\":[\"Ziesemer, Thomas\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.merit.unu.edu/publications/wppdf/2009/wp2009-007.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14888\",\"license\":\"OPEN\",\"hostedby\":\"UM Publications\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14888\",\"license\":\"OPEN\",\"hostedby\":\"UM Publications\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"UM Publications\",\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14888\",\"id\":\"oai:dare:18523\"},\"trust\":0.53470457}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:unm:unumer:2009007"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ziesemer, Thomas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dare:18523"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::fe9fc289c3ff0af142b6d3bead98a923"},"target_publication_subject_list":{"type":"LIST_STRING","value":["migration, remittances"]},"trust":{"type":"FLOAT","value":0.53470457},"target_publication_title":{"type":"STRING","value":"Remittances, lagged dependent variables and migration stocks as determinants of migration from developing countries"},"provenance_datasource_name":{"type":"STRING","value":"UM Publications"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dare:18523\",\"titles\":[\"Remittances, lagged dependent variables and migration stocks as determinants of migration from developing countries\"],\"abstracts\":[\"In regressions for net immigration flows of developing countries we show that (i) savings finance emigration and worker remittances serve to make staying rather than migrating possible until a certain value, beyond which the opposite holds; (ii) lagged dependent migration flows have a negative sign even in the presence of migration stock variables; (iii) migration stocks have S-shaped effects: at sufficiently low values higher migration stocks support emigration; beyond a threshold value they support net immigration before they possibly support emigration again after a second threshold value.\"],\"language\":\"und\",\"subjects\":[\"Migration\",\"Remittances\"],\"creators\":[\"Ziesemer, Thomas\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"UNU-MERIT\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UM Publications\"],\"pids\":[],\"instances\":[{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14888\",\"license\":\"OPEN\",\"hostedby\":\"UM Publications\",\"instancetype\":\"Research\"},{\"url\":\"http://www.merit.unu.edu/publications/wppdf/2009/wp2009-007.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.merit.unu.edu/publications/wppdf/2009/wp2009-007.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.merit.unu.edu/publications/wppdf/2009/wp2009-007.pdf\",\"id\":\"oai:RePEc:unm:unumer:2009007\"},\"trust\":0.50042003}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UM Publications"},"target_publication_id":{"type":"STRING","value":"oai:dare:18523"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ziesemer, Thomas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:unm:unumer:2009007"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Migration","Remittances"]},"trust":{"type":"FLOAT","value":0.50042003},"target_publication_title":{"type":"STRING","value":"Remittances, lagged dependent variables and migration stocks as determinants of migration from developing countries"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::fe9fc289c3ff0af142b6d3bead98a923"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/403530\",\"titles\":[\"Phase toxicity of dodecane on the microalga Dunaliella salina\"],\"abstracts\":[\"In the so-called milking process of Dunaliella salina carotenoids are extracted and simultaneously produced by the culture, whilst the biomass concentration remains constant. Different theories exist about the extraction mechanisms although none have been proven yet. In this research, direct contact between dodecane and cells during the extraction process was studied microscopically and effects of direct contact were determined during in situ extraction experiments. Our results showed that water– solvent interphase contact resulted in cell death. This cell death and consequent cell rupture resulted in the release and concomitant extraction of the carotenoids. Furthermore, it has been suggested to add a small amount of dichloromethane to the biocompatible dodecane to create an organic phase with more extraction capacity. Our results showed that the addition of dichloromethane resulted in increased cell death and consequently the extraction rate increased. The improved solubility of carotenoids in an organic phase with dichloromethane did not significantly increase the extraction rate.\"],\"language\":\"eng\",\"subjects\":[\"beta-carotene production\",\"2-phase bioreactors\",\"extraction\",\"system\"],\"creators\":[\"Kleinegris, D. M. M.\",\"Es, M.\",\"Janssen, M. G. J.\",\"Brandenburg, W. A.\",\"Wijffels, R. H.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/162414\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/403530\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/403530\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/403530\",\"id\":\"wur:oai:library.wur.nl:wurpubs/403530\"},\"trust\":0.9081711}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/403530"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kleinegris, D. M. M.","Es, M.","Janssen, M. G. J.","Brandenburg, W. A.","Wijffels, R. H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/403530"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["beta-carotene production","2-phase bioreactors","extraction","system"]},"trust":{"type":"FLOAT","value":0.9081711},"target_publication_title":{"type":"STRING","value":"Phase toxicity of dodecane on the microalga Dunaliella salina"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/403530\",\"titles\":[\"Phase toxicity of dodecane on the microalga Dunaliella salina\"],\"abstracts\":[\"In the so-called milking process of Dunaliella salina carotenoids are extracted and simultaneously produced by the culture, whilst the biomass concentration remains constant. Different theories exist about the extraction mechanisms although none have been proven yet. In this research, direct contact between dodecane and cells during the extraction process was studied microscopically and effects of direct contact were determined during in situ extraction experiments. Our results showed that water– solvent interphase contact resulted in cell death. This cell death and consequent cell rupture resulted in the release and concomitant extraction of the carotenoids. Furthermore, it has been suggested to add a small amount of dichloromethane to the biocompatible dodecane to create an organic phase with more extraction capacity. Our results showed that the addition of dichloromethane resulted in increased cell death and consequently the extraction rate increased. The improved solubility of carotenoids in an organic phase with dichloromethane did not significantly increase the extraction rate.\"],\"language\":\"eng\",\"subjects\":[\"beta-carotene production\",\"2-phase bioreactors\",\"extraction\",\"system\"],\"creators\":[\"Kleinegris, D. M. M.\",\"Es, M.\",\"Janssen, M. G. J.\",\"Brandenburg, W. A.\",\"Wijffels, R. H.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[{\"value\":\"10.1007/s10811-010-9615-6\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://edepot.wur.nl/162414\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s10811-010-9615-6\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3210367\",\"id\":\"oai:europepmc.org:2224001\"},\"trust\":0.85249805}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/403530"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kleinegris, D. M. M.","Es, M.","Janssen, M. G. J.","Brandenburg, W. A.","Wijffels, R. H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2224001"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["beta-carotene production","2-phase bioreactors","extraction","system"]},"trust":{"type":"FLOAT","value":0.85249805},"target_publication_title":{"type":"STRING","value":"Phase toxicity of dodecane on the microalga Dunaliella salina"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/403530\",\"titles\":[\"Phase toxicity of dodecane on the microalga Dunaliella salina\"],\"abstracts\":[\"In the so-called milking process of Dunaliella salina carotenoids are extracted and simultaneously produced by the culture, whilst the biomass concentration remains constant. Different theories exist about the extraction mechanisms although none have been proven yet. In this research, direct contact between dodecane and cells during the extraction process was studied microscopically and effects of direct contact were determined during in situ extraction experiments. Our results showed that water– solvent interphase contact resulted in cell death. This cell death and consequent cell rupture resulted in the release and concomitant extraction of the carotenoids. Furthermore, it has been suggested to add a small amount of dichloromethane to the biocompatible dodecane to create an organic phase with more extraction capacity. Our results showed that the addition of dichloromethane resulted in increased cell death and consequently the extraction rate increased. The improved solubility of carotenoids in an organic phase with dichloromethane did not significantly increase the extraction rate.\"],\"language\":\"eng\",\"subjects\":[\"beta-carotene production\",\"2-phase bioreactors\",\"extraction\",\"system\"],\"creators\":[\"Kleinegris, D. M. M.\",\"Es, M.\",\"Janssen, M. G. J.\",\"Brandenburg, W. A.\",\"Wijffels, R. H.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[{\"value\":\"PMC3210367\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://edepot.wur.nl/162414\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3210367\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3210367\",\"id\":\"oai:europepmc.org:2224001\"},\"trust\":0.85249805}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/403530"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kleinegris, D. M. M.","Es, M.","Janssen, M. G. J.","Brandenburg, W. A.","Wijffels, R. H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2224001"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["beta-carotene production","2-phase bioreactors","extraction","system"]},"trust":{"type":"FLOAT","value":0.85249805},"target_publication_title":{"type":"STRING","value":"Phase toxicity of dodecane on the microalga Dunaliella salina"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/403530\",\"titles\":[\"Phase toxicity of dodecane on the microalga Dunaliella salina\"],\"abstracts\":[\"In the so-called milking process of Dunaliella salina carotenoids are extracted and simultaneously produced by the culture, whilst the biomass concentration remains constant. Different theories exist about the extraction mechanisms although none have been proven yet. In this research, direct contact between dodecane and cells during the extraction process was studied microscopically and effects of direct contact were determined during in situ extraction experiments. Our results showed that water– solvent interphase contact resulted in cell death. This cell death and consequent cell rupture resulted in the release and concomitant extraction of the carotenoids. Furthermore, it has been suggested to add a small amount of dichloromethane to the biocompatible dodecane to create an organic phase with more extraction capacity. Our results showed that the addition of dichloromethane resulted in increased cell death and consequently the extraction rate increased. The improved solubility of carotenoids in an organic phase with dichloromethane did not significantly increase the extraction rate.\"],\"language\":\"eng\",\"subjects\":[\"beta-carotene production\",\"2-phase bioreactors\",\"extraction\",\"system\"],\"creators\":[\"Kleinegris, D. M. M.\",\"Es, M.\",\"Janssen, M. G. J.\",\"Brandenburg, W. A.\",\"Wijffels, R. H.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[{\"value\":\"22131645\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://edepot.wur.nl/162414\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"22131645\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3210367\",\"id\":\"oai:europepmc.org:2224001\"},\"trust\":0.85249805}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/403530"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kleinegris, D. M. M.","Es, M.","Janssen, M. G. J.","Brandenburg, W. A.","Wijffels, R. H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2224001"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["beta-carotene production","2-phase bioreactors","extraction","system"]},"trust":{"type":"FLOAT","value":0.85249805},"target_publication_title":{"type":"STRING","value":"Phase toxicity of dodecane on the microalga Dunaliella salina"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/403530\",\"titles\":[\"Phase toxicity of dodecane on the microalga Dunaliella salina\"],\"abstracts\":[\"In the so-called milking process of Dunaliella salina carotenoids are extracted and simultaneously produced by the culture, whilst the biomass concentration remains constant. Different theories exist about the extraction mechanisms although none have been proven yet. In this research, direct contact between dodecane and cells during the extraction process was studied microscopically and effects of direct contact were determined during in situ extraction experiments. Our results showed that water– solvent interphase contact resulted in cell death. This cell death and consequent cell rupture resulted in the release and concomitant extraction of the carotenoids. Furthermore, it has been suggested to add a small amount of dichloromethane to the biocompatible dodecane to create an organic phase with more extraction capacity. Our results showed that the addition of dichloromethane resulted in increased cell death and consequently the extraction rate increased. The improved solubility of carotenoids in an organic phase with dichloromethane did not significantly increase the extraction rate.\"],\"language\":\"eng\",\"subjects\":[\"beta-carotene production\",\"2-phase bioreactors\",\"extraction\",\"system\"],\"creators\":[\"Kleinegris, D. M. M.\",\"Es, M.\",\"Janssen, M. G. J.\",\"Brandenburg, W. A.\",\"Wijffels, R. H.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[{\"value\":\"10.1007/s10811-010-9615-6\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://edepot.wur.nl/162414\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s10811-010-9615-6\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3210367\",\"id\":\"oai:europepmc.org:2224001\"},\"trust\":0.85249805}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/403530"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kleinegris, D. M. M.","Es, M.","Janssen, M. G. J.","Brandenburg, W. A.","Wijffels, R. H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2224001"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["beta-carotene production","2-phase bioreactors","extraction","system"]},"trust":{"type":"FLOAT","value":0.85249805},"target_publication_title":{"type":"STRING","value":"Phase toxicity of dodecane on the microalga Dunaliella salina"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/403530\",\"titles\":[\"Phase toxicity of dodecane on the microalga Dunaliella salina\"],\"abstracts\":[\"In the so-called milking process of Dunaliella salina carotenoids are extracted and simultaneously produced by the culture, whilst the biomass concentration remains constant. Different theories exist about the extraction mechanisms although none have been proven yet. In this research, direct contact between dodecane and cells during the extraction process was studied microscopically and effects of direct contact were determined during in situ extraction experiments. Our results showed that water– solvent interphase contact resulted in cell death. This cell death and consequent cell rupture resulted in the release and concomitant extraction of the carotenoids. Furthermore, it has been suggested to add a small amount of dichloromethane to the biocompatible dodecane to create an organic phase with more extraction capacity. Our results showed that the addition of dichloromethane resulted in increased cell death and consequently the extraction rate increased. The improved solubility of carotenoids in an organic phase with dichloromethane did not significantly increase the extraction rate.\"],\"language\":\"eng\",\"subjects\":[\"beta-carotene production\",\"2-phase bioreactors\",\"extraction\",\"system\"],\"creators\":[\"Kleinegris, D. M. M.\",\"Es, M.\",\"Janssen, M. G. J.\",\"Brandenburg, W. A.\",\"Wijffels, R. H.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[{\"value\":\"PMC3210367\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://edepot.wur.nl/162414\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3210367\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3210367\",\"id\":\"oai:europepmc.org:2224001\"},\"trust\":0.85249805}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/403530"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kleinegris, D. M. M.","Es, M.","Janssen, M. G. J.","Brandenburg, W. A.","Wijffels, R. H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2224001"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["beta-carotene production","2-phase bioreactors","extraction","system"]},"trust":{"type":"FLOAT","value":0.85249805},"target_publication_title":{"type":"STRING","value":"Phase toxicity of dodecane on the microalga Dunaliella salina"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/403530\",\"titles\":[\"Phase toxicity of dodecane on the microalga Dunaliella salina\"],\"abstracts\":[\"In the so-called milking process of Dunaliella salina carotenoids are extracted and simultaneously produced by the culture, whilst the biomass concentration remains constant. Different theories exist about the extraction mechanisms although none have been proven yet. In this research, direct contact between dodecane and cells during the extraction process was studied microscopically and effects of direct contact were determined during in situ extraction experiments. Our results showed that water– solvent interphase contact resulted in cell death. This cell death and consequent cell rupture resulted in the release and concomitant extraction of the carotenoids. Furthermore, it has been suggested to add a small amount of dichloromethane to the biocompatible dodecane to create an organic phase with more extraction capacity. Our results showed that the addition of dichloromethane resulted in increased cell death and consequently the extraction rate increased. The improved solubility of carotenoids in an organic phase with dichloromethane did not significantly increase the extraction rate.\"],\"language\":\"eng\",\"subjects\":[\"beta-carotene production\",\"2-phase bioreactors\",\"extraction\",\"system\"],\"creators\":[\"Kleinegris, D. M. M.\",\"Es, M.\",\"Janssen, M. G. J.\",\"Brandenburg, W. A.\",\"Wijffels, R. H.\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[{\"value\":\"22131645\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://edepot.wur.nl/162414\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"22131645\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3210367\",\"id\":\"oai:europepmc.org:2224001\"},\"trust\":0.85249805}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/403530"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kleinegris, D. M. M.","Es, M.","Janssen, M. G. J.","Brandenburg, W. A.","Wijffels, R. H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2224001"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["beta-carotene production","2-phase bioreactors","extraction","system"]},"trust":{"type":"FLOAT","value":0.85249805},"target_publication_title":{"type":"STRING","value":"Phase toxicity of dodecane on the microalga Dunaliella salina"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2224001\",\"titles\":[\"Phase toxicity of dodecane on the microalga Dunaliella salina\"],\"abstracts\":[\"In the so-called milking process of Dunaliella salina carotenoids are extracted and simultaneously produced by the culture, whilst the biomass concentration remains constant. Different theories exist about the extraction mechanisms although none have been proven yet. In this research, direct contact between dodecane and cells during the extraction process was studied microscopically and effects of direct contact were determined during in situ extraction experiments. Our results showed that water–solvent interphase contact resulted in cell death. This cell death and consequent cell rupture resulted in the release and concomitant extraction of the carotenoids. Furthermore, it has been suggested to add a small amount of dichloromethane to the biocompatible dodecane to create an organic phase with more extraction capacity. Our results showed that the addition of dichloromethane resulted in increased cell death and consequently the extraction rate increased. The improved solubility of carotenoids in an organic phase with dichloromethane did not significantly increase the extraction rate.\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"β-carotene\",\"Dichloromethane\",\"Dodecane\",\"Dunaliella salina\",\"Extraction\",\"Organic phase\"],\"creators\":[\"Kleinegris, Dorinde M. M.\",\"Es, Marjon A.\",\"Janssen, Marcel\",\"Brandenburg, Willem A.\",\"Wijffels, René H.\"],\"publicationdate\":\"2010-11-01\",\"publisher\":\"Springer Netherlands\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Applied Phycology\",\"issn\":\"0921-8971\",\"eissn\":\"1573-5176\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1007/s10811-010-9615-6\",\"type\":\"doi\"},{\"value\":\"PMC3210367\",\"type\":\"pmc\"},{\"value\":\"22131645\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3210367\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/403530\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/403530\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/403530\",\"id\":\"wur:oai:library.wur.nl:wurpubs/403530\"},\"trust\":0.8270028}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2224001"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kleinegris, Dorinde M. M.","Es, Marjon A.","Janssen, Marcel","Brandenburg, Willem A.","Wijffels, René H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/403530"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","β-carotene","Dichloromethane","Dodecane","Dunaliella salina","Extraction","Organic phase"]},"trust":{"type":"FLOAT","value":0.8270028},"target_publication_title":{"type":"STRING","value":"Phase toxicity of dodecane on the microalga Dunaliella salina"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2010-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2224001\",\"titles\":[\"Phase toxicity of dodecane on the microalga Dunaliella salina\"],\"abstracts\":[\"In the so-called milking process of Dunaliella salina carotenoids are extracted and simultaneously produced by the culture, whilst the biomass concentration remains constant. Different theories exist about the extraction mechanisms although none have been proven yet. In this research, direct contact between dodecane and cells during the extraction process was studied microscopically and effects of direct contact were determined during in situ extraction experiments. Our results showed that water–solvent interphase contact resulted in cell death. This cell death and consequent cell rupture resulted in the release and concomitant extraction of the carotenoids. Furthermore, it has been suggested to add a small amount of dichloromethane to the biocompatible dodecane to create an organic phase with more extraction capacity. Our results showed that the addition of dichloromethane resulted in increased cell death and consequently the extraction rate increased. The improved solubility of carotenoids in an organic phase with dichloromethane did not significantly increase the extraction rate.\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"β-carotene\",\"Dichloromethane\",\"Dodecane\",\"Dunaliella salina\",\"Extraction\",\"Organic phase\"],\"creators\":[\"Kleinegris, Dorinde M. M.\",\"Es, Marjon A.\",\"Janssen, Marcel\",\"Brandenburg, Willem A.\",\"Wijffels, René H.\"],\"publicationdate\":\"2010-11-01\",\"publisher\":\"Springer Netherlands\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Applied Phycology\",\"issn\":\"0921-8971\",\"eissn\":\"1573-5176\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1007/s10811-010-9615-6\",\"type\":\"doi\"},{\"value\":\"PMC3210367\",\"type\":\"pmc\"},{\"value\":\"22131645\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3210367\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://edepot.wur.nl/162414\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://edepot.wur.nl/162414\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Wageningen Yield\",\"url\":\"http://edepot.wur.nl/162414\",\"id\":\"oai:library.wur.nl:wurpubs/403530\"},\"trust\":0.5794875}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2224001"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kleinegris, Dorinde M. M.","Es, Marjon A.","Janssen, Marcel","Brandenburg, Willem A.","Wijffels, René H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:library.wur.nl:wurpubs/403530"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","β-carotene","Dichloromethane","Dodecane","Dunaliella salina","Extraction","Organic phase"]},"trust":{"type":"FLOAT","value":0.5794875},"target_publication_title":{"type":"STRING","value":"Phase toxicity of dodecane on the microalga Dunaliella salina"},"provenance_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_dateofacceptance":{"type":"DATE","value":"2010-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fdi:wpaper:1211\",\"titles\":[\"Quels sont les obstacles à l’accélération des déboursements ? La capacité d’absorption de l’aide et l’efficacité de l’aide dépendent de ses modalités\"],\"abstracts\":[\"Le sentiment de nombreux dirigeants des pays en développement est que les engagements d’aide des pays industrialisés vis-à-vis des pays en développement mettent plusieurs années à se concrétiser par des dépenses. Or des délais longs et variables rendent imprévisibles les flux d’aide et difficile la mise en oeuvre de la politique économique, particulièrement de la politique budgétaire. C’est pourquoi la « Déclaration de Paris a prévu d’améliorer la prévisibilité de l’aide. Mais les progrès ont été faibles (CAD 2008) puisque la proportion de l’aide versée au cours de l’exercice budgétaire pour lequel elle est programmée est passée en moyenne de 41% à 46%.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Guillaumont Jeanneney, Sylviane\"],\"publicationdate\":\"2008-10-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ferdi.fr/sites/www.ferdi.fr/files/publication/fichiers/p3_guillaumont_jeanneney_web.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.ferdi.fr/sites/www.ferdi.fr/files/publication/fichiers/p3_guillaumont_jeanneney_web.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ferdi.fr/sites/www.ferdi.fr/files/publication/fichiers/p3_guillaumont_jeanneney_web.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.ferdi.fr/sites/www.ferdi.fr/files/publication/fichiers/p3_guillaumont_jeanneney_web.pdf\",\"id\":\"oai:RePEc:fdi:wpaper:1210\"},\"trust\":0.42287576}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fdi:wpaper:1211"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guillaumont Jeanneney, Sylviane"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fdi:wpaper:1210"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.42287576},"target_publication_title":{"type":"STRING","value":"Quels sont les obstacles à l’accélération des déboursements ? La capacité d’absorption de l’aide et l’efficacité de l’aide dépendent de ses modalités"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fdi:wpaper:1210\",\"titles\":[\"Quels sont les obstacles à l’accélération des déboursements ? La capacité d’absorption de l’aide et l’efficacité de l’aide dépendent de ses modalités\"],\"abstracts\":[\"Le sentiment de nombreux dirigeants des pays en développement est que les engagements d’aide des pays industrialisés vis-à-vis des pays en développement mettent plusieurs années à se concrétiser par des dépenses. Or des délais longs et variables rendent imprévisibles les flux d’aide et difficile la mise en oeuvre de la politique économique, particulièrement de la politique budgétaire. C’est pourquoi la « Déclaration de Paris a prévu d’améliorer la prévisibilité de l’aide. Mais les progrès ont été faibles (CAD 2008) puisque la proportion de l’aide versée au cours de l’exercice budgétaire pour lequel elle est programmée est passée en moyenne de 41% à 46%.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Guillaumont Jeanneney, Sylviane\"],\"publicationdate\":\"2008-10-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ferdi.fr/sites/www.ferdi.fr/files/publication/fichiers/p3_guillaumont_jeanneney_web.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.ferdi.fr/sites/www.ferdi.fr/files/publication/fichiers/p3_guillaumont_jeanneney_web.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ferdi.fr/sites/www.ferdi.fr/files/publication/fichiers/p3_guillaumont_jeanneney_web.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.ferdi.fr/sites/www.ferdi.fr/files/publication/fichiers/p3_guillaumont_jeanneney_web.pdf\",\"id\":\"oai:RePEc:fdi:wpaper:1211\"},\"trust\":0.20357996}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fdi:wpaper:1210"},"target_publication_author_list":{"type":"LIST_STRING","value":["Guillaumont Jeanneney, Sylviane"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fdi:wpaper:1211"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.20357996},"target_publication_title":{"type":"STRING","value":"Quels sont les obstacles à l’accélération des déboursements ? La capacité d’absorption de l’aide et l’efficacité de l’aide dépendent de ses modalités"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:doc.utwente.nl:99042\",\"titles\":[\"Stairwalker user manual\"],\"abstracts\":[\"Geographical data are typically visualized using various information layers that are displayed over a map. Interactive exploration by zooming and panning actions needs real-time re-calculation. A common operation in calculating with multidimensional data is the computation of aggregates. For layers containing aggregated information derived from voluminous data sets, such real-time exploration is impossible using standard database technology. Calculations require too much time.\\n\\nThe University of Twente has developed “Stairwalker”: database technology that accurately aggregates data so that they can geographically be explored in real-time. The technology is a plug-in to common open source technology.\\n\\nIts core is the pre-aggregate index: a database index that cleverly precalculates aggregation values such that it can obtain exact aggregation results from voluminous data with high performance. A fast calculation allows to fully recalculate the result for even the slightest movement of the map, such as a panning or zooming action, without loss of accuracy. Thanks to this indexing mechanism, we can provide a scalable real-time calculation: an order of magnitude larger dataset requires only one additional aggregation level.\\n\\nIn geo data visualization, the ability to quickly develop new information layers is important. Although many solutions exist, there is a niche: the combination of visualizing aggregation information, interactive data exploration in real-time, Big Data, calculating exact numbers instead of approximations, and doing so with common open source technology. Our technology for the first time integrates all these features.\\n\\nOur research partners are the companies Arcadis and Nspyre. They both have struggled with this combination of requirements in many of their projects. Our database index technology is not specific to geographical data. It can be used with all types of multidimensional data. Visualization in business intelligence or eScience can also benefit from it.\\n\\nThe company Arcadis developed an application for the DCMR Milieudienst Rijnmond based on the Stairwalk technology to investigate whether people send tweets about unpleasant odors as a possible signal of danger. This turns out not to be the case, probably because people think that nobody reads the tweets anyway. But if people have the idea that their complaining tweets are read, then tweets might be much more convenient than the reporting of unpleasant odors by telephone.\\n\\nThis manual explains how to use Stairwalker. We first explain in Section 2 how to install the required components in order to have a basic running system. We then explain in Section 3 how to add databases and different kinds of datatypes to Geoserver, an open source server for sharing geospatial data.1 It is explained how to show and customize layers and views, but also how to adjust the system, for example, how to add dimensions or use different dimension types such as median. Finally, Section 4 explains how to extend the system.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Muller, Dennis\",\"Elsinga, Jochem\",\"Keulen, Maurice\"],\"publicationdate\":\"2015-01-01\",\"publisher\":\"University of Twente, Centre for Telematics and Information Technology (CTIT)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit Twente Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://purl.utwente.nl/publications/99042\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Report\"},{\"url\":\"http://purl.utwente.nl/publications/99042\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://purl.utwente.nl/publications/99042\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://purl.utwente.nl/publications/99042\",\"id\":\"ut:oai:doc.utwente.nl:99042\"},\"trust\":0.075448334}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit Twente Repository"},"target_publication_id":{"type":"STRING","value":"oai:doc.utwente.nl:99042"},"target_publication_author_list":{"type":"LIST_STRING","value":["Muller, Dennis","Elsinga, Jochem","Keulen, Maurice"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["ut:oai:doc.utwente.nl:99042"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.075448334},"target_publication_title":{"type":"STRING","value":"Stairwalker user manual"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2015-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8dd48d6a2e2cad213179a3992c0be53c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:31443\",\"titles\":[\"Adverse selection and moral hazard among the poor: evidence from a randomized experiment\"],\"abstracts\":[\"Not only does economic theory predict high-risk individuals to be more likely to purchase insurance, but insurance coverage is also thought to crowd out precautionary activities. In spite of stark theoretical predictions, there is conflicting empirical evidence on adverse selection, and evidence on ex ante moral hazard is very scarce. Using data from the Seguro Popular Experiment in Mexico, this paper documents patterns of adverse selection into health insurance as well as the existence of non-negligible ex ante moral hazard. More specifically, the findings indicate that (i) agents in poor self-assessed health prior to the intervention have, all else equal, a higher propensity to take up insurance; and (ii) insurance coverage reduces the demand for self-protection in the form of preventive care. Curiously, however, individuals do not sort based on objective measures of their health.\"],\"language\":\"und\",\"subjects\":[\"health insurance, adverse selection, moral hazard\"],\"creators\":[\"Spenkch, Jörg L.\"],\"publicationdate\":\"2011-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/31443/1/MPRA_paper_31443.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/31443/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/31443/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/31443/\",\"id\":\"31443\"},\"trust\":0.81476486}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:31443"},"target_publication_author_list":{"type":"LIST_STRING","value":["Spenkch, Jörg L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["31443"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["health insurance, adverse selection, moral hazard"]},"trust":{"type":"FLOAT","value":0.81476486},"target_publication_title":{"type":"STRING","value":"Adverse selection and moral hazard among the poor: evidence from a randomized experiment"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:31443\",\"titles\":[\"Adverse selection and moral hazard among the poor: evidence from a randomized experiment\"],\"abstracts\":[\"Not only does economic theory predict high-risk individuals to be more likely to purchase insurance, but insurance coverage is also thought to crowd out precautionary activities. In spite of stark theoretical predictions, there is conflicting empirical evidence on adverse selection, and evidence on ex ante moral hazard is very scarce. Using data from the Seguro Popular Experiment in Mexico, this paper documents patterns of adverse selection into health insurance as well as the existence of non-negligible ex ante moral hazard. More specifically, the findings indicate that (i) agents in poor self-assessed health prior to the intervention have, all else equal, a higher propensity to take up insurance; and (ii) insurance coverage reduces the demand for self-protection in the form of preventive care. Curiously, however, individuals do not sort based on objective measures of their health.\"],\"language\":\"und\",\"subjects\":[\"health insurance, adverse selection, moral hazard\"],\"creators\":[\"Spenkch, Jörg L.\"],\"publicationdate\":\"2011-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/31443/1/MPRA_paper_31443.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/31443/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/31443/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/31443/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:31443\"},\"trust\":0.6854122}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:31443"},"target_publication_author_list":{"type":"LIST_STRING","value":["Spenkch, Jörg L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:31443"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["health insurance, adverse selection, moral hazard"]},"trust":{"type":"FLOAT","value":0.6854122},"target_publication_title":{"type":"STRING","value":"Adverse selection and moral hazard among the poor: evidence from a randomized experiment"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"31443\",\"titles\":[\"Adverse selection and moral hazard among the poor: evidence from a randomized experiment\"],\"abstracts\":[\"Not only does economic theory predict high-risk individuals to be more likely to purchase insurance, but insurance coverage is also thought to crowd out precautionary activities. In spite of stark theoretical predictions, there is conflicting empirical evidence on adverse selection, and evidence on ex ante moral hazard is very scarce. Using data from the Seguro Popular Experiment in Mexico, this paper documents patterns of adverse selection into health insurance as well as the existence of non-negligible ex ante moral hazard. More specifically, the findings indicate that (i) agents in poor self-assessed health prior to the intervention have, all else equal, a higher propensity to take up insurance; and (ii) insurance coverage reduces the demand for self-protection in the form of preventive care. Curiously, however, individuals do not sort based on objective measures of their health.\"],\"language\":\"eng\",\"subjects\":[\"I11 - Analysis of Health Care Markets\",\"D82 - Asymmetric and Private Information ; Mechanism Design\",\"I10 - General\"],\"creators\":[\"Spenkch, Jörg L.\"],\"publicationdate\":\"2011-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/31443/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/31443/1/MPRA_paper_31443.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/31443/1/MPRA_paper_31443.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/31443/1/MPRA_paper_31443.pdf\",\"id\":\"oai:RePEc:pra:mprapa:31443\"},\"trust\":0.5941712}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"31443"},"target_publication_author_list":{"type":"LIST_STRING","value":["Spenkch, Jörg L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:31443"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I11 - Analysis of Health Care Markets","D82 - Asymmetric and Private Information ; Mechanism Design","I10 - General"]},"trust":{"type":"FLOAT","value":0.5941712},"target_publication_title":{"type":"STRING","value":"Adverse selection and moral hazard among the poor: evidence from a randomized experiment"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"31443\",\"titles\":[\"Adverse selection and moral hazard among the poor: evidence from a randomized experiment\"],\"abstracts\":[\"Not only does economic theory predict high-risk individuals to be more likely to purchase insurance, but insurance coverage is also thought to crowd out precautionary activities. In spite of stark theoretical predictions, there is conflicting empirical evidence on adverse selection, and evidence on ex ante moral hazard is very scarce. Using data from the Seguro Popular Experiment in Mexico, this paper documents patterns of adverse selection into health insurance as well as the existence of non-negligible ex ante moral hazard. More specifically, the findings indicate that (i) agents in poor self-assessed health prior to the intervention have, all else equal, a higher propensity to take up insurance; and (ii) insurance coverage reduces the demand for self-protection in the form of preventive care. Curiously, however, individuals do not sort based on objective measures of their health.\"],\"language\":\"eng\",\"subjects\":[\"I11 - Analysis of Health Care Markets\",\"D82 - Asymmetric and Private Information ; Mechanism Design\",\"I10 - General\"],\"creators\":[\"Spenkch, Jörg L.\"],\"publicationdate\":\"2011-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/31443/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/31443/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/31443/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/31443/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:31443\"},\"trust\":0.68080944}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"31443"},"target_publication_author_list":{"type":"LIST_STRING","value":["Spenkch, Jörg L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:31443"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I11 - Analysis of Health Care Markets","D82 - Asymmetric and Private Information ; Mechanism Design","I10 - General"]},"trust":{"type":"FLOAT","value":0.68080944},"target_publication_title":{"type":"STRING","value":"Adverse selection and moral hazard among the poor: evidence from a randomized experiment"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:31443\",\"titles\":[\"Adverse selection and moral hazard among the poor: evidence from a randomized experiment\"],\"abstracts\":[\"Not only does economic theory predict high-risk individuals to be more likely to purchase insurance, but insurance coverage is also thought to crowd out precautionary activities. In spite of stark theoretical predictions, there is conflicting empirical evidence on adverse selection, and evidence on ex ante moral hazard is very scarce. Using data from the Seguro Popular Experiment in Mexico, this paper documents patterns of adverse selection into health insurance as well as the existence of non-negligible ex ante moral hazard. More specifically, the findings indicate that (i) agents in poor self-assessed health prior to the intervention have, all else equal, a higher propensity to take up insurance; and (ii) insurance coverage reduces the demand for self-protection in the form of preventive care. Curiously, however, individuals do not sort based on objective measures of their health.\"],\"language\":\"eng\",\"subjects\":[\"I11 - Analysis of Health Care Markets\",\"D82 - Asymmetric and Private Information; Mechanism Design\",\"I10 - General\"],\"creators\":[\"Spenkch, Jörg L.\"],\"publicationdate\":\"2011-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/31443/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/31443/1/MPRA_paper_31443.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/31443/1/MPRA_paper_31443.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/31443/1/MPRA_paper_31443.pdf\",\"id\":\"oai:RePEc:pra:mprapa:31443\"},\"trust\":0.2373293}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:31443"},"target_publication_author_list":{"type":"LIST_STRING","value":["Spenkch, Jörg L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:31443"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I11 - Analysis of Health Care Markets","D82 - Asymmetric and Private Information; Mechanism Design","I10 - General"]},"trust":{"type":"FLOAT","value":0.2373293},"target_publication_title":{"type":"STRING","value":"Adverse selection and moral hazard among the poor: evidence from a randomized experiment"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:31443\",\"titles\":[\"Adverse selection and moral hazard among the poor: evidence from a randomized experiment\"],\"abstracts\":[\"Not only does economic theory predict high-risk individuals to be more likely to purchase insurance, but insurance coverage is also thought to crowd out precautionary activities. In spite of stark theoretical predictions, there is conflicting empirical evidence on adverse selection, and evidence on ex ante moral hazard is very scarce. Using data from the Seguro Popular Experiment in Mexico, this paper documents patterns of adverse selection into health insurance as well as the existence of non-negligible ex ante moral hazard. More specifically, the findings indicate that (i) agents in poor self-assessed health prior to the intervention have, all else equal, a higher propensity to take up insurance; and (ii) insurance coverage reduces the demand for self-protection in the form of preventive care. Curiously, however, individuals do not sort based on objective measures of their health.\"],\"language\":\"eng\",\"subjects\":[\"I11 - Analysis of Health Care Markets\",\"D82 - Asymmetric and Private Information; Mechanism Design\",\"I10 - General\"],\"creators\":[\"Spenkch, Jörg L.\"],\"publicationdate\":\"2011-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/31443/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/31443/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/31443/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/31443/\",\"id\":\"31443\"},\"trust\":0.6378714}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:31443"},"target_publication_author_list":{"type":"LIST_STRING","value":["Spenkch, Jörg L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["31443"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I11 - Analysis of Health Care Markets","D82 - Asymmetric and Private Information; Mechanism Design","I10 - General"]},"trust":{"type":"FLOAT","value":0.6378714},"target_publication_title":{"type":"STRING","value":"Adverse selection and moral hazard among the poor: evidence from a randomized experiment"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3088524\",\"titles\":[\"Safety and efficacy of multipolar pulmonary vein ablation catheter vs. irrigated radiofrequency ablation for paroxysmal atrial fibrillation: a randomized multicentre trial\"],\"abstracts\":[\"Aims The current challenge in atrial fibrillation (AF) treatment is to develop effective, efficient, and safe ablation strategies. This randomized controlled trial assesses the medium-term efficacy of duty-cycled radiofrequency ablation via the circular pulmonary vein ablation catheter (PVAC) vs. conventional electro-anatomically guided wide-area circumferential ablation (WACA). Methods and results One hundred and eighty-eight patients (mean age 62 ± 12 years, 116 M : 72 F) with paroxysmal AF were prospectively randomized to PVAC or WACA strategies and sequentially followed for 12 months. The primary endpoint was freedom from symptomatic or documented \\u003e30 s AF off medications for 7 days at 12 months post-procedure. One hundred and eighty-three patients completed 12 m follow-up. Ninety-four patients underwent PVAC PV isolation with 372 of 376 pulmonary veins (PVs) successfully isolated and all PVs isolated in 92 WACA patients. Three WACA and no PVAC patients developed tamponade. Fifty-six percent of WACA and 60% of PVAC patients were free of AF at 12 months post-procedure (P \\u003d ns) with a significant attrition rate from 77 to 78%, respectively, at 6 months. The mean procedure (140 ± 43 vs. 167 ± 42 min, P\\u003c0.0001), fluoroscopy (35 ± 16 vs. 42 ± 20 min, P\\u003c0.05) times were significantly shorter for PVAC than for WACA. Two patients developed strokes within 72 h of the procedure in the PVAC group, one possibly related directly to PVAC ablation in a high-risk patient and none in the WACA group (P \\u003d ns). Two of the 47 patients in the PVAC group who underwent repeat ablation had sub-clinical mild PV stenoses of 25–50% and 1 WACA patient developed delayed severe PV stenosis requiring venoplasty. Conclusion The pulmonary vein ablation catheter is equivalent in efficacy to WACA with reduced procedural and fluoroscopy times. However, there is a risk of thrombo-embolic and pulmonary stenosis complications which needs to be addressed and prospectively monitored. ClinicalTrials.gov Identifier NCT00678340.\"],\"language\":\"eng\",\"subjects\":[\"Clinical Research\",\"Ablation for Atrial Fibrillation\",\"Electrophysiology\",\"Ablation\",\"Atrial fibrillation\",\"Duty-cycled bipolar and unipolar radiofrequency\"],\"creators\":[\"Mccready, J.\",\"Chow, A. W.\",\"Lowe, M. D.\",\"Segal, O. R.\",\"Ahsan, S.\",\"Bono, J.\",\"Dhaliwal, M.\",\"Mfuko, C.\",\"Ng, A.\",\"Rowland, E. R.\"],\"publicationdate\":\"2014-05-01\",\"publisher\":\"Oxford University Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Europace\",\"issn\":\"1099-5129\",\"eissn\":\"1532-2092\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1093/europace/euu064\",\"type\":\"doi\"},{\"value\":\"PMC4114331\",\"type\":\"pmc\"},{\"value\":\"24843051\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4114331\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://discovery.ucl.ac.uk/1446936/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1446936/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"UCL Discovery\",\"url\":\"http://discovery.ucl.ac.uk/1446936/\",\"id\":\"oai:eprints.ucl.ac.uk.OAI2:1446936\"},\"trust\":0.3058204}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3088524"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mccready, J.","Chow, A. W.","Lowe, M. D.","Segal, O. R.","Ahsan, S.","Bono, J.","Dhaliwal, M.","Mfuko, C.","Ng, A.","Rowland, E. R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.ucl.ac.uk.OAI2:1446936"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Clinical Research","Ablation for Atrial Fibrillation","Electrophysiology","Ablation","Atrial fibrillation","Duty-cycled bipolar and unipolar radiofrequency"]},"trust":{"type":"FLOAT","value":0.3058204},"target_publication_title":{"type":"STRING","value":"Safety and efficacy of multipolar pulmonary vein ablation catheter vs. irrigated radiofrequency ablation for paroxysmal atrial fibrillation: a randomized multicentre trial"},"provenance_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_dateofacceptance":{"type":"DATE","value":"2014-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1446936\",\"titles\":[\"Safety and efficacy of multipolar pulmonary vein ablation catheter vs. irrigated radiofrequency ablation for paroxysmal atrial fibrillation: a randomized multicentre trial.\"],\"abstracts\":[\"The current challenge in atrial fibrillation (AF) treatment is to develop effective, efficient, and safe ablation strategies. This randomized controlled trial assesses the medium-term efficacy of duty-cycled radiofrequency ablation via the circular pulmonary vein ablation catheter (PVAC) vs. conventional electro-anatomically guided wide-area circumferential ablation (WACA).\"],\"language\":\"und\",\"subjects\":[\"Ablation, Atrial fibrillation, Duty-cycled bipolar and unipolar radiofrequency, Electrophysiology\"],\"creators\":[\"Mccready, J.\",\"Chow, A. W.\",\"Lowe, M. D.\",\"Segal, O. R.\",\"Ahsan, S.\",\"Bono, J.\",\"Dhaliwal, M.\",\"Mfuko, C.\",\"Ng, A.\",\"Rowland, E. R.\"],\"publicationdate\":\"2014-05-19\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"10.1093/europace/euu064\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1446936/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1093/europace/euu064\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4114331\",\"id\":\"oai:europepmc.org:3088524\"},\"trust\":0.74694586}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1446936"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mccready, J.","Chow, A. W.","Lowe, M. D.","Segal, O. R.","Ahsan, S.","Bono, J.","Dhaliwal, M.","Mfuko, C.","Ng, A.","Rowland, E. R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3088524"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Ablation, Atrial fibrillation, Duty-cycled bipolar and unipolar radiofrequency, Electrophysiology"]},"trust":{"type":"FLOAT","value":0.74694586},"target_publication_title":{"type":"STRING","value":"Safety and efficacy of multipolar pulmonary vein ablation catheter vs. irrigated radiofrequency ablation for paroxysmal atrial fibrillation: a randomized multicentre trial."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-05-19"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1446936\",\"titles\":[\"Safety and efficacy of multipolar pulmonary vein ablation catheter vs. irrigated radiofrequency ablation for paroxysmal atrial fibrillation: a randomized multicentre trial.\"],\"abstracts\":[\"The current challenge in atrial fibrillation (AF) treatment is to develop effective, efficient, and safe ablation strategies. This randomized controlled trial assesses the medium-term efficacy of duty-cycled radiofrequency ablation via the circular pulmonary vein ablation catheter (PVAC) vs. conventional electro-anatomically guided wide-area circumferential ablation (WACA).\"],\"language\":\"und\",\"subjects\":[\"Ablation, Atrial fibrillation, Duty-cycled bipolar and unipolar radiofrequency, Electrophysiology\"],\"creators\":[\"Mccready, J.\",\"Chow, A. W.\",\"Lowe, M. D.\",\"Segal, O. R.\",\"Ahsan, S.\",\"Bono, J.\",\"Dhaliwal, M.\",\"Mfuko, C.\",\"Ng, A.\",\"Rowland, E. R.\"],\"publicationdate\":\"2014-05-19\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"PMC4114331\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1446936/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC4114331\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4114331\",\"id\":\"oai:europepmc.org:3088524\"},\"trust\":0.74694586}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1446936"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mccready, J.","Chow, A. W.","Lowe, M. D.","Segal, O. R.","Ahsan, S.","Bono, J.","Dhaliwal, M.","Mfuko, C.","Ng, A.","Rowland, E. R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3088524"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Ablation, Atrial fibrillation, Duty-cycled bipolar and unipolar radiofrequency, Electrophysiology"]},"trust":{"type":"FLOAT","value":0.74694586},"target_publication_title":{"type":"STRING","value":"Safety and efficacy of multipolar pulmonary vein ablation catheter vs. irrigated radiofrequency ablation for paroxysmal atrial fibrillation: a randomized multicentre trial."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-05-19"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1446936\",\"titles\":[\"Safety and efficacy of multipolar pulmonary vein ablation catheter vs. irrigated radiofrequency ablation for paroxysmal atrial fibrillation: a randomized multicentre trial.\"],\"abstracts\":[\"The current challenge in atrial fibrillation (AF) treatment is to develop effective, efficient, and safe ablation strategies. This randomized controlled trial assesses the medium-term efficacy of duty-cycled radiofrequency ablation via the circular pulmonary vein ablation catheter (PVAC) vs. conventional electro-anatomically guided wide-area circumferential ablation (WACA).\"],\"language\":\"und\",\"subjects\":[\"Ablation, Atrial fibrillation, Duty-cycled bipolar and unipolar radiofrequency, Electrophysiology\"],\"creators\":[\"Mccready, J.\",\"Chow, A. W.\",\"Lowe, M. D.\",\"Segal, O. R.\",\"Ahsan, S.\",\"Bono, J.\",\"Dhaliwal, M.\",\"Mfuko, C.\",\"Ng, A.\",\"Rowland, E. R.\"],\"publicationdate\":\"2014-05-19\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"24843051\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1446936/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"24843051\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4114331\",\"id\":\"oai:europepmc.org:3088524\"},\"trust\":0.74694586}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1446936"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mccready, J.","Chow, A. W.","Lowe, M. D.","Segal, O. R.","Ahsan, S.","Bono, J.","Dhaliwal, M.","Mfuko, C.","Ng, A.","Rowland, E. R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3088524"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Ablation, Atrial fibrillation, Duty-cycled bipolar and unipolar radiofrequency, Electrophysiology"]},"trust":{"type":"FLOAT","value":0.74694586},"target_publication_title":{"type":"STRING","value":"Safety and efficacy of multipolar pulmonary vein ablation catheter vs. irrigated radiofrequency ablation for paroxysmal atrial fibrillation: a randomized multicentre trial."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-05-19"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1446936\",\"titles\":[\"Safety and efficacy of multipolar pulmonary vein ablation catheter vs. irrigated radiofrequency ablation for paroxysmal atrial fibrillation: a randomized multicentre trial.\"],\"abstracts\":[\"The current challenge in atrial fibrillation (AF) treatment is to develop effective, efficient, and safe ablation strategies. This randomized controlled trial assesses the medium-term efficacy of duty-cycled radiofrequency ablation via the circular pulmonary vein ablation catheter (PVAC) vs. conventional electro-anatomically guided wide-area circumferential ablation (WACA).\"],\"language\":\"und\",\"subjects\":[\"Ablation, Atrial fibrillation, Duty-cycled bipolar and unipolar radiofrequency, Electrophysiology\"],\"creators\":[\"Mccready, J.\",\"Chow, A. W.\",\"Lowe, M. D.\",\"Segal, O. R.\",\"Ahsan, S.\",\"Bono, J.\",\"Dhaliwal, M.\",\"Mfuko, C.\",\"Ng, A.\",\"Rowland, E. R.\"],\"publicationdate\":\"2014-05-19\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"10.1093/europace/euu064\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1446936/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1093/europace/euu064\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4114331\",\"id\":\"oai:europepmc.org:3088524\"},\"trust\":0.74694586}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1446936"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mccready, J.","Chow, A. W.","Lowe, M. D.","Segal, O. R.","Ahsan, S.","Bono, J.","Dhaliwal, M.","Mfuko, C.","Ng, A.","Rowland, E. R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3088524"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Ablation, Atrial fibrillation, Duty-cycled bipolar and unipolar radiofrequency, Electrophysiology"]},"trust":{"type":"FLOAT","value":0.74694586},"target_publication_title":{"type":"STRING","value":"Safety and efficacy of multipolar pulmonary vein ablation catheter vs. irrigated radiofrequency ablation for paroxysmal atrial fibrillation: a randomized multicentre trial."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-05-19"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1446936\",\"titles\":[\"Safety and efficacy of multipolar pulmonary vein ablation catheter vs. irrigated radiofrequency ablation for paroxysmal atrial fibrillation: a randomized multicentre trial.\"],\"abstracts\":[\"The current challenge in atrial fibrillation (AF) treatment is to develop effective, efficient, and safe ablation strategies. This randomized controlled trial assesses the medium-term efficacy of duty-cycled radiofrequency ablation via the circular pulmonary vein ablation catheter (PVAC) vs. conventional electro-anatomically guided wide-area circumferential ablation (WACA).\"],\"language\":\"und\",\"subjects\":[\"Ablation, Atrial fibrillation, Duty-cycled bipolar and unipolar radiofrequency, Electrophysiology\"],\"creators\":[\"Mccready, J.\",\"Chow, A. W.\",\"Lowe, M. D.\",\"Segal, O. R.\",\"Ahsan, S.\",\"Bono, J.\",\"Dhaliwal, M.\",\"Mfuko, C.\",\"Ng, A.\",\"Rowland, E. R.\"],\"publicationdate\":\"2014-05-19\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"PMC4114331\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1446936/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC4114331\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4114331\",\"id\":\"oai:europepmc.org:3088524\"},\"trust\":0.74694586}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1446936"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mccready, J.","Chow, A. W.","Lowe, M. D.","Segal, O. R.","Ahsan, S.","Bono, J.","Dhaliwal, M.","Mfuko, C.","Ng, A.","Rowland, E. R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3088524"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Ablation, Atrial fibrillation, Duty-cycled bipolar and unipolar radiofrequency, Electrophysiology"]},"trust":{"type":"FLOAT","value":0.74694586},"target_publication_title":{"type":"STRING","value":"Safety and efficacy of multipolar pulmonary vein ablation catheter vs. irrigated radiofrequency ablation for paroxysmal atrial fibrillation: a randomized multicentre trial."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-05-19"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1446936\",\"titles\":[\"Safety and efficacy of multipolar pulmonary vein ablation catheter vs. irrigated radiofrequency ablation for paroxysmal atrial fibrillation: a randomized multicentre trial.\"],\"abstracts\":[\"The current challenge in atrial fibrillation (AF) treatment is to develop effective, efficient, and safe ablation strategies. This randomized controlled trial assesses the medium-term efficacy of duty-cycled radiofrequency ablation via the circular pulmonary vein ablation catheter (PVAC) vs. conventional electro-anatomically guided wide-area circumferential ablation (WACA).\"],\"language\":\"und\",\"subjects\":[\"Ablation, Atrial fibrillation, Duty-cycled bipolar and unipolar radiofrequency, Electrophysiology\"],\"creators\":[\"Mccready, J.\",\"Chow, A. W.\",\"Lowe, M. D.\",\"Segal, O. R.\",\"Ahsan, S.\",\"Bono, J.\",\"Dhaliwal, M.\",\"Mfuko, C.\",\"Ng, A.\",\"Rowland, E. R.\"],\"publicationdate\":\"2014-05-19\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"24843051\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1446936/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"24843051\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4114331\",\"id\":\"oai:europepmc.org:3088524\"},\"trust\":0.74694586}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1446936"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mccready, J.","Chow, A. W.","Lowe, M. D.","Segal, O. R.","Ahsan, S.","Bono, J.","Dhaliwal, M.","Mfuko, C.","Ng, A.","Rowland, E. R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3088524"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Ablation, Atrial fibrillation, Duty-cycled bipolar and unipolar radiofrequency, Electrophysiology"]},"trust":{"type":"FLOAT","value":0.74694586},"target_publication_title":{"type":"STRING","value":"Safety and efficacy of multipolar pulmonary vein ablation catheter vs. irrigated radiofrequency ablation for paroxysmal atrial fibrillation: a randomized multicentre trial."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-05-19"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2044578\",\"titles\":[\"Clustering of sebaceous gland carcinoma, papillary thyroid carcinoma and breast cancer in a woman as a new cancer susceptibility disorder: a case report\"],\"abstracts\":[\"Introduction Multiple distinct tumors arising in a single individual or within members of a family raise the suspicion of a genetic susceptibility disorder. Case presentation We present the case of a 52-year-old Caucasian woman diagnosed with sebaceous gland carcinoma of the eyelid, followed several years later with subsequent diagnoses of breast cancer and papillary carcinoma of the thyroid. Although the patient was also exposed to radiation from a pipe used in the oil field industry, the constellation of neoplasms in this patient suggests the manifestation of a known hereditary susceptibility cancer syndrome. However, testing for the most likely candidates such as Muir-Torre and Cowden syndrome proved negative. Conclusion We propose that our patient\\u0027s clustering of neoplasms either represents a novel cancer susceptibility disorder, of which sebaceous gland carcinoma is a characteristic feature, or is a variant of the Muir-Torre syndrome.\"],\"language\":\"eng\",\"subjects\":[\"Case report\"],\"creators\":[\"Newman, Brian D.\",\"Maher, Joseph F.\",\"Subauste, Jose S.\",\"Uwaifo, Gabriel I.\",\"Bigler, Steven A.\",\"Koch, Christian A.\"],\"publicationdate\":\"2009-07-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Medical Case Reports\",\"issn\":\"\",\"eissn\":\"1752-1947\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4076/1752-1947-3-6905\",\"type\":\"doi\"},{\"value\":\"PMC2759639\",\"type\":\"pmc\"},{\"value\":\"19830129\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2759639\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.jmedicalcasereports.com/content/3/1/6905\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Medical Case Reports\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.jmedicalcasereports.com/content/3/1/6905\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Medical Case Reports\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.jmedicalcasereports.com/content/3/1/6905\",\"id\":\"oai:doaj.org/article:87b74d2afca545629a919424b50f828d\"},\"trust\":0.25690937}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2044578"},"target_publication_author_list":{"type":"LIST_STRING","value":["Newman, Brian D.","Maher, Joseph F.","Subauste, Jose S.","Uwaifo, Gabriel I.","Bigler, Steven A.","Koch, Christian A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:87b74d2afca545629a919424b50f828d"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Case report"]},"trust":{"type":"FLOAT","value":0.25690937},"target_publication_title":{"type":"STRING","value":"Clustering of sebaceous gland carcinoma, papillary thyroid carcinoma and breast cancer in a woman as a new cancer susceptibility disorder: a case report"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3427022\",\"titles\":[\"Single intramuscular injection of diclofenac sodium in febrile pediatric patients\"],\"abstracts\":[\"Objectives: There are few reports on the effectiveness and safety of intramuscular (IM) antipyretic injections in pediatric patients. This study reports the efficacy and adverse effects of a single IM injection of diclofenac sodium in pediatric patients. Materials and Methods: This was an observational study in which records of febrile pediatric patients presenting to the emergency department were analyzed. Subjects included pediatric patients presenting to the emergency department with a temperature of 38°C or higher. Infants under 12 months of age were excluded. Patients were excluded if they received antipyretics within 4 h prior to presenting to the emergency department. Body temperature was measured at 30–60 min intervals following diclofenac sodium injections. Fever alleviation was defined as the temperature decline to 1°C below the temperature at presentation. Patients who received diclofenac sodium twice or more on different days were observed for side effects such as allergic reaction. Records from the emergency department and outpatient clinics were analyzed. Results: The dose of diclofenac sodium injected was approximately 2 mg/kg. The average time elapsed until antipyresis was 69.1 ± 23.8 min. The average temperature reduction after 1 h was 1.1 ± 0.6°C. The average proportion of temperature change after 1 h was 40.6 ± 22.2%. During the period at the emergency department, there were no reported serious side effects. Conclusions: A single dose of diclofenac sodium provided effective antipyresis in pediatric patients. Serious side effects were not observed.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\",\"Antipyretics\",\"diclofenac sodium\",\"intramuscular\",\"pediatric\",\"side effects\"],\"creators\":[\"Lee, Jun Yeol\",\"Cho, Jun Hwi\",\"Shin, Myoung Cheol\",\"Ohk, Taek Geun\",\"Lee, Hui Young\",\"Park, Chan Woo\"],\"publicationdate\":\"2015-01-01\",\"publisher\":\"Medknow Publications \\u0026 Media Pvt Ltd\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Indian Journal of Pharmacology\",\"issn\":\"0253-7613\",\"eissn\":\"1998-3751\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4103/0253-7613.157122\",\"type\":\"doi\"},{\"value\":\"PMC4450552\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4450552\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.ijp-online.com/article.asp?issn\\u003d0253-7613;year\\u003d2015;volume\\u003d47;issue\\u003d3;spage\\u003d275;epage\\u003d279;aulast\\u003dLee\",\"license\":\"OPEN\",\"hostedby\":\"Indian Journal of Pharmacology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ijp-online.com/article.asp?issn\\u003d0253-7613;year\\u003d2015;volume\\u003d47;issue\\u003d3;spage\\u003d275;epage\\u003d279;aulast\\u003dLee\",\"license\":\"OPEN\",\"hostedby\":\"Indian Journal of Pharmacology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.ijp-online.com/article.asp?issn\\u003d0253-7613;year\\u003d2015;volume\\u003d47;issue\\u003d3;spage\\u003d275;epage\\u003d279;aulast\\u003dLee\",\"id\":\"oai:doaj.org/article:4751cf75ba2d49d789324978c617fb49\"},\"trust\":0.103544414}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3427022"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lee, Jun Yeol","Cho, Jun Hwi","Shin, Myoung Cheol","Ohk, Taek Geun","Lee, Hui Young","Park, Chan Woo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:4751cf75ba2d49d789324978c617fb49"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article","Antipyretics","diclofenac sodium","intramuscular","pediatric","side effects"]},"trust":{"type":"FLOAT","value":0.103544414},"target_publication_title":{"type":"STRING","value":"Single intramuscular injection of diclofenac sodium in febrile pediatric patients"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2015-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.ubn.ru.nl:2066/15434\",\"titles\":[\"Dichoptic brightness combinations for unequally coloured lights\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Weert, C. M. M.\",\"Levelt, W. J. M.\"],\"publicationdate\":\"1976-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Radboud Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2066/15434\",\"license\":\"OPEN\",\"hostedby\":\"Radboud Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://repository.ubn.ru.nl/handle/2066/15434\",\"license\":\"OPEN\",\"hostedby\":\"Radboud Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.ubn.ru.nl/handle/2066/15434\",\"license\":\"OPEN\",\"hostedby\":\"Radboud Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.ubn.ru.nl/handle/2066/15434\",\"id\":\"ru:oai:repository.ubn.ru.nl:2066/15434\"},\"trust\":0.040718257}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Radboud Repository"},"target_publication_id":{"type":"STRING","value":"oai:repository.ubn.ru.nl:2066/15434"},"target_publication_author_list":{"type":"LIST_STRING","value":["Weert, C. M. M.","Levelt, W. J. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["ru:oai:repository.ubn.ru.nl:2066/15434"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.040718257},"target_publication_title":{"type":"STRING","value":"Dichoptic brightness combinations for unequally coloured lights"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1976-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7bccfde7714a1ebadf06c5f4cea752c1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:lev:levppb:7\",\"titles\":[\"\\\"Immigration Policy: A Tool of Labor Economics? Immigration and the U.S. Labor Market: Public Policy Gone Awry\\\"\"],\"abstracts\":[\"According to Briggs, while mass immigration in the past was consistent with then-existing labor market needs, today it is incompatible with the nation\\u0027s economic development trends and labor force requirements. Briggs concludes that it is important to shift the emphasis of the legal immigration admission system away from the politically popular family reunification program to one that is designed primarily to serve economic purposes. With an abundant domestic stock of unskilled and undereducated workers, the nation must recognize the long-term economic consequences of unmitigated entry of individuals lacking the human capital attributes that are needed in the domestic labor market.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Briggs Jr, Vernon M.\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.levyinstitute.org/pubs/ppb7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/54231\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/54231\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/54231\",\"id\":\"oai:econstor.eu:10419/54231\"},\"trust\":0.48463237}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:lev:levppb:7"},"target_publication_author_list":{"type":"LIST_STRING","value":["Briggs Jr, Vernon M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/54231"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"trust":{"type":"FLOAT","value":0.48463237},"target_publication_title":{"type":"STRING","value":"\"Immigration Policy: A Tool of Labor Economics? Immigration and the U.S. Labor Market: Public Policy Gone Awry\""},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:lev:levppb:7\",\"titles\":[\"\\\"Immigration Policy: A Tool of Labor Economics? Immigration and the U.S. Labor Market: Public Policy Gone Awry\\\"\"],\"abstracts\":[\"According to Briggs, while mass immigration in the past was consistent with then-existing labor market needs, today it is incompatible with the nation\\u0027s economic development trends and labor force requirements. Briggs concludes that it is important to shift the emphasis of the legal immigration admission system away from the politically popular family reunification program to one that is designed primarily to serve economic purposes. With an abundant domestic stock of unskilled and undereducated workers, the nation must recognize the long-term economic consequences of unmitigated entry of individuals lacking the human capital attributes that are needed in the domestic labor market.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Briggs Jr, Vernon M.\"],\"publicationdate\":\"1993-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.levyinstitute.org/pubs/ppb7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"1993-01-01\"},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/54231\",\"id\":\"oai:econstor.eu:10419/54231\"},\"trust\":0.2710269}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:lev:levppb:7"},"target_publication_author_list":{"type":"LIST_STRING","value":["Briggs Jr, Vernon M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/54231"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"trust":{"type":"FLOAT","value":0.2710269},"target_publication_title":{"type":"STRING","value":"\"Immigration Policy: A Tool of Labor Economics? Immigration and the U.S. Labor Market: Public Policy Gone Awry\""},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"1993-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/54231\",\"titles\":[\"Immigration policy: A tool of labor economics? - Immigration and the US labor market: Public policy gone awry\"],\"abstracts\":[\"Vernon M. Briggs argues that, while mass immigration in the past was consistent with then-existing labor market needs, today it is incompatible with the nation\\u0027s economic development trends and labor force requirements. He concludes that it is important to shift the emphasis of the legal immigration admission system away from the politically popular family reunification program to one that is designed primarily to serve economic purposes. With an abundant domestic stock of unskilled and undereducated workers, the nation must recognize the long-term economic consequences of unmitigated entry of individuals lacking the human capital attributes that are needed in the domestic labor market.\"],\"language\":\"eng\",\"subjects\":[\"ddc:330\"],\"creators\":[\"Briggs, Vernon M.\"],\"publicationdate\":\"1993-01-01\",\"publisher\":\"Levy Economics Institute of Bard College Annandale-on-Hudson, NY\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/54231\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Report\"},{\"url\":\"http://www.levyinstitute.org/pubs/ppb7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.levyinstitute.org/pubs/ppb7.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.levyinstitute.org/pubs/ppb7.pdf\",\"id\":\"oai:RePEc:lev:levppb:7\"},\"trust\":0.143754}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/54231"},"target_publication_author_list":{"type":"LIST_STRING","value":["Briggs, Vernon M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:lev:levppb:7"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330"]},"trust":{"type":"FLOAT","value":0.143754},"target_publication_title":{"type":"STRING","value":"Immigration policy: A tool of labor economics? - Immigration and the US labor market: Public policy gone awry"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1993-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ega:capitu:201201\",\"titles\":[\"Distributive effects of the 2010 tax reform in Mexico: A microsimulation analysis\"],\"abstracts\":[\"This chapter starts with a description of the main features of the current Mexican tax system and of a (minor) tax reform that took place in 2010, when the government tried to correct for a drastic fall in its revenues because of the economic collapse in 2009. It then describes in a detailed way a microsimulation model, which is made of three modules: for direct taxes, for indirect taxes, and for welfare indexes. Subsequently, it exemplifies the use of the model by examining the welfare and revenue impacts of the 2010 reform.\"],\"language\":\"und\",\"subjects\":[\"Mexico, microsimulation models, tax reforms, incidence, social welfare, inequality\"],\"creators\":[\"Absalón, Carlos\",\"Urzúa, Carlos M.\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/CAP-2012-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"},{\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/EGAP-2011-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/EGAP-2011-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/EGAP-2011-01.pdf\",\"id\":\"oai:RePEc:ega:docume:201101\"},\"trust\":0.7997528}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ega:capitu:201201"},"target_publication_author_list":{"type":"LIST_STRING","value":["Absalón, Carlos","Urzúa, Carlos M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ega:docume:201101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mexico, microsimulation models, tax reforms, incidence, social welfare, inequality"]},"trust":{"type":"FLOAT","value":0.7997528},"target_publication_title":{"type":"STRING","value":"Distributive effects of the 2010 tax reform in Mexico: A microsimulation analysis"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ega:capitu:201201\",\"titles\":[\"Distributive effects of the 2010 tax reform in Mexico: A microsimulation analysis\"],\"abstracts\":[\"This chapter starts with a description of the main features of the current Mexican tax system and of a (minor) tax reform that took place in 2010, when the government tried to correct for a drastic fall in its revenues because of the economic collapse in 2009. It then describes in a detailed way a microsimulation model, which is made of three modules: for direct taxes, for indirect taxes, and for welfare indexes. Subsequently, it exemplifies the use of the model by examining the welfare and revenue impacts of the 2010 reform.\"],\"language\":\"und\",\"subjects\":[\"Mexico, microsimulation models, tax reforms, incidence, social welfare, inequality\"],\"creators\":[\"Absalón, Carlos\",\"Urzúa, Carlos M.\"],\"publicationdate\":\"2011-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/CAP-2012-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"2011-06-01\"},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/EGAP-2011-01.pdf\",\"id\":\"oai:RePEc:ega:docume:201101\"},\"trust\":0.80958533}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ega:capitu:201201"},"target_publication_author_list":{"type":"LIST_STRING","value":["Absalón, Carlos","Urzúa, Carlos M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ega:docume:201101"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mexico, microsimulation models, tax reforms, incidence, social welfare, inequality"]},"trust":{"type":"FLOAT","value":0.80958533},"target_publication_title":{"type":"STRING","value":"Distributive effects of the 2010 tax reform in Mexico: A microsimulation analysis"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ega:docume:201101\",\"titles\":[\"Distributive effects of the 2010 tax reform in Mexico: A microsimulation analysis\"],\"abstracts\":[\"This paper starts with a description of the main features of the current Mexican tax system and of a (minor) tax reform that took place in 2010, when the government tried to correct for a drastic fall in its revenues because of the economic collapse in 2009. It then describes in a detailed way a microsimulation model, which is made of three modules: for direct taxes, for indirect taxes, and for welfare indexes. Subsequently, it exemplifies the use of the model by examining the welfare and revenue impacts of the 2010 reform.\"],\"language\":\"und\",\"subjects\":[\"Mexico, microsimulation models, tax reforms, incidence, social welfare, inequality\"],\"creators\":[\"Absalón, Carlos\",\"Urzúa, Carlos M.\"],\"publicationdate\":\"2011-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/EGAP-2011-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/CAP-2012-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/CAP-2012-01.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://alejandria.ccm.itesm.mx/egap/documentos/CAP-2012-01.pdf\",\"id\":\"oai:RePEc:ega:capitu:201201\"},\"trust\":0.35311377}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ega:docume:201101"},"target_publication_author_list":{"type":"LIST_STRING","value":["Absalón, Carlos","Urzúa, Carlos M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ega:capitu:201201"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mexico, microsimulation models, tax reforms, incidence, social welfare, inequality"]},"trust":{"type":"FLOAT","value":0.35311377},"target_publication_title":{"type":"STRING","value":"Distributive effects of the 2010 tax reform in Mexico: A microsimulation analysis"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:doc.utwente.nl:60084\",\"titles\":[\"Bekostigingstarieven in het hoger onderwijs : een vergelijking tussen zeven landen\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Deen, Jarno\",\"Jongbloed, Ben\",\"Vossensteyn, Hans\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"Universiteit Twente, CHEPS\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit Twente Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://purl.utwente.nl/publications/60084\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Report\"},{\"url\":\"http://purl.utwente.nl/publications/60084\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://purl.utwente.nl/publications/60084\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://purl.utwente.nl/publications/60084\",\"id\":\"ut:oai:doc.utwente.nl:60084\"},\"trust\":0.92760044}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit Twente Repository"},"target_publication_id":{"type":"STRING","value":"oai:doc.utwente.nl:60084"},"target_publication_author_list":{"type":"LIST_STRING","value":["Deen, Jarno","Jongbloed, Ben","Vossensteyn, Hans"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["ut:oai:doc.utwente.nl:60084"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.92760044},"target_publication_title":{"type":"STRING","value":"Bekostigingstarieven in het hoger onderwijs : een vergelijking tussen zeven landen"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8dd48d6a2e2cad213179a3992c0be53c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.tue.nl:667742\",\"titles\":[\"Measuring voter-controlled privacy\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Jonker, Hl\",\"Mauw, S.\",\"Pang, J.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"IEEE Computer Society\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repository TU/e\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.tue.nl/667742\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"\"},{\"url\":\"http://repository.tue.nl/667742\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.tue.nl/667742\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.tue.nl/667742\",\"id\":\"tue:oai:library.tue.nl:667742\"},\"trust\":0.31744832}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repository TU/e"},"target_publication_id":{"type":"STRING","value":"oai:library.tue.nl:667742"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jonker, Hl","Mauw, S.","Pang, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tue:oai:library.tue.nl:667742"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.31744832},"target_publication_title":{"type":"STRING","value":"Measuring voter-controlled privacy"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::99c5e07b4d5de9d18c350cdf64c5aa3d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:sae:jospec:v:8:y:2007:i:2:p:202-213\",\"titles\":[\"Explaining International Soccer Rankings\"],\"abstracts\":[\"Existing research on the determinants of FIFA\\u0027s international soccer rankings suffers from serious statistical problems, particularly sample selection bias and nonnormal errors. The authors correct for this by extending the data set by an additional 100 countries. Furthermore, they find important roles for new variables in the form of the size of population and a long history of international soccer in explaining world football rankings. The authors also investigate the determinants of an alternative ranking measure to that constructed by FIFA.\"],\"language\":\"und\",\"subjects\":[\"international football rankings; history\"],\"creators\":[\"Peter Macmillan\",\"Ian Smith\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Sports Economics\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://jse.sagepub.com/content/8/2/202.abstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.st-andrews.ac.uk/~www_crieff/papers/dp0612.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.st-andrews.ac.uk/~www_crieff/papers/dp0612.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.st-andrews.ac.uk/~www_crieff/papers/dp0612.pdf\",\"id\":\"oai:RePEc:san:crieff:0612\"},\"trust\":0.9906314}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:sae:jospec:v:8:y:2007:i:2:p:202-213"},"target_publication_author_list":{"type":"LIST_STRING","value":["Peter Macmillan","Ian Smith"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:san:crieff:0612"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["international football rankings; history"]},"trust":{"type":"FLOAT","value":0.9906314},"target_publication_title":{"type":"STRING","value":"Explaining International Soccer Rankings"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:san:crieff:0612\",\"titles\":[\"Explaining International Soccer Rankings\"],\"abstracts\":[\"Existing research on the determinants of FIFA’s international soccer rankings suffers from serious statistical problems, particularly sample selection bias and non normal errors. We correct for this by extending the data set by an additional 100 countries. Furthermore, we find important roles for new variables in the form of the size of population and a long history of international soccer in explaining world football rankings. We also investigate the determinants of an alternative ranking measure to that constructed by FIFA.\"],\"language\":\"und\",\"subjects\":[\"international football rankings, history.\"],\"creators\":[\"Peter Macmillan\",\"Ian Smith\"],\"publicationdate\":\"2006-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.st-andrews.ac.uk/~www_crieff/papers/dp0612.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://jse.sagepub.com/content/8/2/202.abstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://jse.sagepub.com/content/8/2/202.abstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://jse.sagepub.com/content/8/2/202.abstract\",\"id\":\"oai:RePEc:sae:jospec:v:8:y:2007:i:2:p:202-213\"},\"trust\":0.18877053}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:san:crieff:0612"},"target_publication_author_list":{"type":"LIST_STRING","value":["Peter Macmillan","Ian Smith"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:sae:jospec:v:8:y:2007:i:2:p:202-213"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["international football rankings, history."]},"trust":{"type":"FLOAT","value":0.18877053},"target_publication_title":{"type":"STRING","value":"Explaining International Soccer Rankings"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2006-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00676705\",\"titles\":[\"Elliptical instability in terrestrial planets and moons\"],\"abstracts\":[\"The presence of celestial companions means that any planet may be subject to three kinds of harmonic mechanical forcing: tides, precession/nutation, and libration. These forcings can generate flows in internal fluid layers, such as fluid cores and subsurface oceans, whose dynamics then significantly differ from solid body rotation. In particular, tides in non-synchronized bodies and libration in synchronized ones are known to be capable of exciting the so-called elliptical instability, i.e. a generic instability corresponding to the destabilization of two-dimensional flows with elliptical streamlines, leading to three-dimensional turbulence. We aim here at confirming the relevance of such an elliptical instability in terrestrial bodies by determining its growth rate, as well as its consequences on energy dissipation, on magnetic field induction, and on heat flux fluctuations on planetary scales. Previous studies and theoretical results for the elliptical instability are re-evaluated and extended to cope with an astrophysical context. In particular, generic analytical expressions of the elliptical instability growth rate are obtained using a local WKB approach, simultaneously considering for the first time (i) a local temperature gradient due to an imposed temperature contrast across the considered layer or to the presence of a volumic heat source and (ii) an imposed magnetic field along the rotation axis, coming from an external source. The theoretical results are applied to the telluric planets and moons of the solar system as well as to three Super-Earths: 55 CnC e, CoRoT-7b, and GJ 1214b. For the tide-driven elliptical instability in non-synchronized bodies, only the Early Earth core is shown to be clearly unstable. For the libration-driven elliptical instability in synchronized bodies, the core of Io is shown to be stable, contrary to previously thoughts, whereas Europa, 55 CnC e, CoRoT-7b and GJ 1214b cores can be unstable. The subsurface ocean of Europa is slightly unstable}. However, these present states do not preclude more unstable situations in the past.\"],\"language\":\"eng\",\"subjects\":[\"[SDU:ASTR:EP] Sciences of the Universe/Astrophysics/Earth and Planetary Astrophysics\",\"[SDU:ASTR:EP] Planète et Univers/Astrophysique/Planétologie et astrophysique de la terre\",\"[PHYS:ASTR:EP] Physics/Astrophysics/Earth and Planetary Astrophysics\",\"[PHYS:ASTR:EP] Physique/Astrophysique/Planétologie et astrophysique de la terre\",\"[PHYS:MECA:MEFL] Physics/Mechanics/Mechanics of the fluids\",\"[PHYS:MECA:MEFL] Physique/Mécanique/Mécanique des fluides\",\"[SPI:MECA:MEFL] Engineering Sciences/Mechanics/Fluids mechanics\",\"[SPI:MECA:MEFL] Sciences de l\\u0027ingénieur/Mécanique/Mécanique des fluides\",\"Hydrodynamics\",\"Instabilities\",\"Planets and satellites: interiors\",\"Planets and satellites: dynamical evolution and stability\"],\"creators\":[\"Cébron, David\",\"Le Bars, Michael\",\"Moutou, Claire\",\"Le Gal, Patrice\"],\"publicationdate\":\"2012-02-27\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/0004-6361/201117741\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00676705\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/1203.1796\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1203.1796\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1203.1796\",\"id\":\"oai:arXiv.org:1203.1796\"},\"trust\":0.42538333}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00676705"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cébron, David","Le Bars, Michael","Moutou, Claire","Le Gal, Patrice"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1203.1796"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDU:ASTR:EP] Sciences of the Universe/Astrophysics/Earth and Planetary Astrophysics","[SDU:ASTR:EP] Planète et Univers/Astrophysique/Planétologie et astrophysique de la terre","[PHYS:ASTR:EP] Physics/Astrophysics/Earth and Planetary Astrophysics","[PHYS:ASTR:EP] Physique/Astrophysique/Planétologie et astrophysique de la terre","[PHYS:MECA:MEFL] Physics/Mechanics/Mechanics of the fluids","[PHYS:MECA:MEFL] Physique/Mécanique/Mécanique des fluides","[SPI:MECA:MEFL] Engineering Sciences/Mechanics/Fluids mechanics","[SPI:MECA:MEFL] Sciences de l\u0027ingénieur/Mécanique/Mécanique des fluides","Hydrodynamics","Instabilities","Planets and satellites: interiors","Planets and satellites: dynamical evolution and stability"]},"trust":{"type":"FLOAT","value":0.42538333},"target_publication_title":{"type":"STRING","value":"Elliptical instability in terrestrial planets and moons"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-02-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00676705\",\"titles\":[\"Elliptical instability in terrestrial planets and moons\"],\"abstracts\":[\"The presence of celestial companions means that any planet may be subject to three kinds of harmonic mechanical forcing: tides, precession/nutation, and libration. These forcings can generate flows in internal fluid layers, such as fluid cores and subsurface oceans, whose dynamics then significantly differ from solid body rotation. In particular, tides in non-synchronized bodies and libration in synchronized ones are known to be capable of exciting the so-called elliptical instability, i.e. a generic instability corresponding to the destabilization of two-dimensional flows with elliptical streamlines, leading to three-dimensional turbulence. We aim here at confirming the relevance of such an elliptical instability in terrestrial bodies by determining its growth rate, as well as its consequences on energy dissipation, on magnetic field induction, and on heat flux fluctuations on planetary scales. Previous studies and theoretical results for the elliptical instability are re-evaluated and extended to cope with an astrophysical context. In particular, generic analytical expressions of the elliptical instability growth rate are obtained using a local WKB approach, simultaneously considering for the first time (i) a local temperature gradient due to an imposed temperature contrast across the considered layer or to the presence of a volumic heat source and (ii) an imposed magnetic field along the rotation axis, coming from an external source. The theoretical results are applied to the telluric planets and moons of the solar system as well as to three Super-Earths: 55 CnC e, CoRoT-7b, and GJ 1214b. For the tide-driven elliptical instability in non-synchronized bodies, only the Early Earth core is shown to be clearly unstable. For the libration-driven elliptical instability in synchronized bodies, the core of Io is shown to be stable, contrary to previously thoughts, whereas Europa, 55 CnC e, CoRoT-7b and GJ 1214b cores can be unstable. The subsurface ocean of Europa is slightly unstable}. However, these present states do not preclude more unstable situations in the past.\"],\"language\":\"eng\",\"subjects\":[\"[SDU:ASTR:EP] Sciences of the Universe/Astrophysics/Earth and Planetary Astrophysics\",\"[SDU:ASTR:EP] Planète et Univers/Astrophysique/Planétologie et astrophysique de la terre\",\"[PHYS:ASTR:EP] Physics/Astrophysics/Earth and Planetary Astrophysics\",\"[PHYS:ASTR:EP] Physique/Astrophysique/Planétologie et astrophysique de la terre\",\"[PHYS:MECA:MEFL] Physics/Mechanics/Mechanics of the fluids\",\"[PHYS:MECA:MEFL] Physique/Mécanique/Mécanique des fluides\",\"[SPI:MECA:MEFL] Engineering Sciences/Mechanics/Fluids mechanics\",\"[SPI:MECA:MEFL] Sciences de l\\u0027ingénieur/Mécanique/Mécanique des fluides\",\"Hydrodynamics\",\"Instabilities\",\"Planets and satellites: interiors\",\"Planets and satellites: dynamical evolution and stability\"],\"creators\":[\"Cébron, David\",\"Le Bars, Michael\",\"Moutou, Claire\",\"Le Gal, Patrice\"],\"publicationdate\":\"2012-02-27\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/0004-6361/201117741\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00676705\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00676705\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00676705\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00676705\",\"id\":\"oai:HAL:hal-00676705v1\"},\"trust\":0.24345636}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00676705"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cébron, David","Le Bars, Michael","Moutou, Claire","Le Gal, Patrice"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00676705v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDU:ASTR:EP] Sciences of the Universe/Astrophysics/Earth and Planetary Astrophysics","[SDU:ASTR:EP] Planète et Univers/Astrophysique/Planétologie et astrophysique de la terre","[PHYS:ASTR:EP] Physics/Astrophysics/Earth and Planetary Astrophysics","[PHYS:ASTR:EP] Physique/Astrophysique/Planétologie et astrophysique de la terre","[PHYS:MECA:MEFL] Physics/Mechanics/Mechanics of the fluids","[PHYS:MECA:MEFL] Physique/Mécanique/Mécanique des fluides","[SPI:MECA:MEFL] Engineering Sciences/Mechanics/Fluids mechanics","[SPI:MECA:MEFL] Sciences de l\u0027ingénieur/Mécanique/Mécanique des fluides","Hydrodynamics","Instabilities","Planets and satellites: interiors","Planets and satellites: dynamical evolution and stability"]},"trust":{"type":"FLOAT","value":0.24345636},"target_publication_title":{"type":"STRING","value":"Elliptical instability in terrestrial planets and moons"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-02-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1203.1796\",\"titles\":[\"Elliptical instability in terrestrial planets and moons\"],\"abstracts\":[\" The presence of celestial companions means that any planet may be subject to\\nthree kinds of harmonic mechanical forcing: tides, precession/nutation, and\\nlibration. These forcings can generate flows in internal fluid layers, such as\\nfluid cores and subsurface oceans, whose dynamics then significantly differ\\nfrom solid body rotation. In particular, tides in non-synchronized bodies and\\nlibration in synchronized ones are known to be capable of exciting the\\nso-called elliptical instability, i.e. a generic instability corresponding to\\nthe destabilization of two-dimensional flows with elliptical streamlines,\\nleading to three-dimensional turbulence. We aim here at confirming the\\nrelevance of such an elliptical instability in terrestrial bodies by\\ndetermining its growth rate, as well as its consequences on energy dissipation,\\non magnetic field induction, and on heat flux fluctuations on planetary scales.\\nPrevious studies and theoretical results for the elliptical instability are\\nre-evaluated and extended to cope with an astrophysical context. In particular,\\ngeneric analytical expressions of the elliptical instability growth rate are\\nobtained using a local WKB approach, simultaneously considering for the first\\ntime (i) a local temperature gradient due to an imposed temperature contrast\\nacross the considered layer or to the presence of a volumic heat source and\\n(ii) an imposed magnetic field along the rotation axis, coming from an external\\nsource. The theoretical results are applied to the telluric planets and moons\\nof the solar system as well as to three Super-Earths: 55 CnC e, CoRoT-7b, and\\nGJ 1214b. For the tide-driven elliptical instability in non-synchronized\\nbodies, only the Early Earth core is shown to be clearly unstable. For the\\nlibration-driven elliptical instability in synchronized bodies, the core of Io\\nis shown to be stable, contrary to previously thoughts, whereas Europa, 55 CnC\\ne, CoRoT-7b and GJ 1214b cores can be unstable. The subsurface ocean of Europa\\nis slightly unstable}. However, these present states do not preclude more\\nunstable situations in the past.\\n\"],\"language\":\"eng\",\"subjects\":[\"Astrophysics - Earth and Planetary Astrophysics\",\"Physics - Classical Physics\"],\"creators\":[\"Cébron, David\",\"Bars, Michael Le\",\"Moutou, Claire\",\"Gal, Patrice Le\"],\"publicationdate\":\"2012-03-08\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1051/0004-6361/201117741\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1203.1796\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00676705\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00676705\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00676705\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00676705\"},\"trust\":0.39314705}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1203.1796"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cébron, David","Bars, Michael Le","Moutou, Claire","Gal, Patrice Le"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00676705"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Astrophysics - Earth and Planetary Astrophysics","Physics - Classical Physics"]},"trust":{"type":"FLOAT","value":0.39314705},"target_publication_title":{"type":"STRING","value":"Elliptical instability in terrestrial planets and moons"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-03-08"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1203.1796\",\"titles\":[\"Elliptical instability in terrestrial planets and moons\"],\"abstracts\":[\" The presence of celestial companions means that any planet may be subject to\\nthree kinds of harmonic mechanical forcing: tides, precession/nutation, and\\nlibration. These forcings can generate flows in internal fluid layers, such as\\nfluid cores and subsurface oceans, whose dynamics then significantly differ\\nfrom solid body rotation. In particular, tides in non-synchronized bodies and\\nlibration in synchronized ones are known to be capable of exciting the\\nso-called elliptical instability, i.e. a generic instability corresponding to\\nthe destabilization of two-dimensional flows with elliptical streamlines,\\nleading to three-dimensional turbulence. We aim here at confirming the\\nrelevance of such an elliptical instability in terrestrial bodies by\\ndetermining its growth rate, as well as its consequences on energy dissipation,\\non magnetic field induction, and on heat flux fluctuations on planetary scales.\\nPrevious studies and theoretical results for the elliptical instability are\\nre-evaluated and extended to cope with an astrophysical context. In particular,\\ngeneric analytical expressions of the elliptical instability growth rate are\\nobtained using a local WKB approach, simultaneously considering for the first\\ntime (i) a local temperature gradient due to an imposed temperature contrast\\nacross the considered layer or to the presence of a volumic heat source and\\n(ii) an imposed magnetic field along the rotation axis, coming from an external\\nsource. The theoretical results are applied to the telluric planets and moons\\nof the solar system as well as to three Super-Earths: 55 CnC e, CoRoT-7b, and\\nGJ 1214b. For the tide-driven elliptical instability in non-synchronized\\nbodies, only the Early Earth core is shown to be clearly unstable. For the\\nlibration-driven elliptical instability in synchronized bodies, the core of Io\\nis shown to be stable, contrary to previously thoughts, whereas Europa, 55 CnC\\ne, CoRoT-7b and GJ 1214b cores can be unstable. The subsurface ocean of Europa\\nis slightly unstable}. However, these present states do not preclude more\\nunstable situations in the past.\\n\"],\"language\":\"eng\",\"subjects\":[\"Astrophysics - Earth and Planetary Astrophysics\",\"Physics - Classical Physics\"],\"creators\":[\"Cébron, David\",\"Bars, Michael Le\",\"Moutou, Claire\",\"Gal, Patrice Le\"],\"publicationdate\":\"2012-03-08\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1051/0004-6361/201117741\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1203.1796\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00676705\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00676705\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00676705\",\"id\":\"oai:HAL:hal-00676705v1\"},\"trust\":0.40129083}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1203.1796"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cébron, David","Bars, Michael Le","Moutou, Claire","Gal, Patrice Le"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00676705v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Astrophysics - Earth and Planetary Astrophysics","Physics - Classical Physics"]},"trust":{"type":"FLOAT","value":0.40129083},"target_publication_title":{"type":"STRING","value":"Elliptical instability in terrestrial planets and moons"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-03-08"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00676705v1\",\"titles\":[\"Elliptical instability in terrestrial planets and moons\"],\"abstracts\":[\"International audience\",\"The presence of celestial companions means that any planet may be subject to three kinds of harmonic mechanical forcing: tides, precession/nutation, and libration. These forcings can generate flows in internal fluid layers, such as fluid cores and subsurface oceans, whose dynamics then significantly differ from solid body rotation. In particular, tides in non-synchronized bodies and libration in synchronized ones are known to be capable of exciting the so-called elliptical instability, i.e. a generic instability corresponding to the destabilization of two-dimensional flows with elliptical streamlines, leading to three-dimensional turbulence. We aim here at confirming the relevance of such an elliptical instability in terrestrial bodies by determining its growth rate, as well as its consequences on energy dissipation, on magnetic field induction, and on heat flux fluctuations on planetary scales. Previous studies and theoretical results for the elliptical instability are re-evaluated and extended to cope with an astrophysical context. In particular, generic analytical expressions of the elliptical instability growth rate are obtained using a local WKB approach, simultaneously considering for the first time (i) a local temperature gradient due to an imposed temperature contrast across the considered layer or to the presence of a volumic heat source and (ii) an imposed magnetic field along the rotation axis, coming from an external source. The theoretical results are applied to the telluric planets and moons of the solar system as well as to three Super-Earths: 55 CnC e, CoRoT-7b, and GJ 1214b. For the tide-driven elliptical instability in non-synchronized bodies, only the Early Earth core is shown to be clearly unstable. For the libration-driven elliptical instability in synchronized bodies, the core of Io is shown to be stable, contrary to previously thoughts, whereas Europa, 55 CnC e, CoRoT-7b and GJ 1214b cores can be unstable. The subsurface ocean of Europa is slightly unstable}. However, these present states do not preclude more unstable situations in the past.\"],\"language\":\"eng\",\"subjects\":[\"Planets and satellites: dynamical evolution and stability\",\"Planets and satellites: interiors\",\"Instabilities\",\"Hydrodynamics\",\"[SDU.ASTR.EP] Sciences of the Universe/Astrophysics/Earth and Planetary Astrophysics\",\"[PHYS.ASTR.EP] Physics/Astrophysics/Earth and Planetary Astrophysics\",\"[PHYS.MECA.MEFL] Physics/Mechanics/Mechanics of the fluids\",\"[SPI.MECA.MEFL] Engineering Sciences/Mechanics/Fluids mechanics\"],\"creators\":[\"Cébron, David\",\"Le Bars, Michael\",\"Moutou, Claire\",\"Le Gal, Patrice\"],\"publicationdate\":\"2012-02-27\",\"publisher\":\"EDP Sciences\",\"embargoenddate\":\"\",\"contributor\":[\"Institut de Recherche sur les Phénomènes Hors Equilibre (IRPHE) ; Ecole Centrale de Marseille - Aix Marseille Université (AMU) - CNRS\",\"Observatoire Astronomique de Marseille Provence (OAMP) ; INSU - Université de Provence - Aix-Marseille I - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/0004-6361/201117741\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00676705\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00676705\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00676705\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00676705\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00676705\"},\"trust\":0.6749428}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00676705v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cébron, David","Le Bars, Michael","Moutou, Claire","Le Gal, Patrice"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00676705"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Planets and satellites: dynamical evolution and stability","Planets and satellites: interiors","Instabilities","Hydrodynamics","[SDU.ASTR.EP] Sciences of the Universe/Astrophysics/Earth and Planetary Astrophysics","[PHYS.ASTR.EP] Physics/Astrophysics/Earth and Planetary Astrophysics","[PHYS.MECA.MEFL] Physics/Mechanics/Mechanics of the fluids","[SPI.MECA.MEFL] Engineering Sciences/Mechanics/Fluids mechanics"]},"trust":{"type":"FLOAT","value":0.6749428},"target_publication_title":{"type":"STRING","value":"Elliptical instability in terrestrial planets and moons"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-02-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00676705v1\",\"titles\":[\"Elliptical instability in terrestrial planets and moons\"],\"abstracts\":[\"International audience\",\"The presence of celestial companions means that any planet may be subject to three kinds of harmonic mechanical forcing: tides, precession/nutation, and libration. These forcings can generate flows in internal fluid layers, such as fluid cores and subsurface oceans, whose dynamics then significantly differ from solid body rotation. In particular, tides in non-synchronized bodies and libration in synchronized ones are known to be capable of exciting the so-called elliptical instability, i.e. a generic instability corresponding to the destabilization of two-dimensional flows with elliptical streamlines, leading to three-dimensional turbulence. We aim here at confirming the relevance of such an elliptical instability in terrestrial bodies by determining its growth rate, as well as its consequences on energy dissipation, on magnetic field induction, and on heat flux fluctuations on planetary scales. Previous studies and theoretical results for the elliptical instability are re-evaluated and extended to cope with an astrophysical context. In particular, generic analytical expressions of the elliptical instability growth rate are obtained using a local WKB approach, simultaneously considering for the first time (i) a local temperature gradient due to an imposed temperature contrast across the considered layer or to the presence of a volumic heat source and (ii) an imposed magnetic field along the rotation axis, coming from an external source. The theoretical results are applied to the telluric planets and moons of the solar system as well as to three Super-Earths: 55 CnC e, CoRoT-7b, and GJ 1214b. For the tide-driven elliptical instability in non-synchronized bodies, only the Early Earth core is shown to be clearly unstable. For the libration-driven elliptical instability in synchronized bodies, the core of Io is shown to be stable, contrary to previously thoughts, whereas Europa, 55 CnC e, CoRoT-7b and GJ 1214b cores can be unstable. The subsurface ocean of Europa is slightly unstable}. However, these present states do not preclude more unstable situations in the past.\"],\"language\":\"eng\",\"subjects\":[\"Planets and satellites: dynamical evolution and stability\",\"Planets and satellites: interiors\",\"Instabilities\",\"Hydrodynamics\",\"[SDU.ASTR.EP] Sciences of the Universe/Astrophysics/Earth and Planetary Astrophysics\",\"[PHYS.ASTR.EP] Physics/Astrophysics/Earth and Planetary Astrophysics\",\"[PHYS.MECA.MEFL] Physics/Mechanics/Mechanics of the fluids\",\"[SPI.MECA.MEFL] Engineering Sciences/Mechanics/Fluids mechanics\"],\"creators\":[\"Cébron, David\",\"Le Bars, Michael\",\"Moutou, Claire\",\"Le Gal, Patrice\"],\"publicationdate\":\"2012-02-27\",\"publisher\":\"EDP Sciences\",\"embargoenddate\":\"\",\"contributor\":[\"Institut de Recherche sur les Phénomènes Hors Equilibre (IRPHE) ; Ecole Centrale de Marseille - Aix Marseille Université (AMU) - CNRS\",\"Observatoire Astronomique de Marseille Provence (OAMP) ; INSU - Université de Provence - Aix-Marseille I - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/0004-6361/201117741\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00676705\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/1203.1796\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1203.1796\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1203.1796\",\"id\":\"oai:arXiv.org:1203.1796\"},\"trust\":0.9881715}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00676705v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cébron, David","Le Bars, Michael","Moutou, Claire","Le Gal, Patrice"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1203.1796"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Planets and satellites: dynamical evolution and stability","Planets and satellites: interiors","Instabilities","Hydrodynamics","[SDU.ASTR.EP] Sciences of the Universe/Astrophysics/Earth and Planetary Astrophysics","[PHYS.ASTR.EP] Physics/Astrophysics/Earth and Planetary Astrophysics","[PHYS.MECA.MEFL] Physics/Mechanics/Mechanics of the fluids","[SPI.MECA.MEFL] Engineering Sciences/Mechanics/Fluids mechanics"]},"trust":{"type":"FLOAT","value":0.9881715},"target_publication_title":{"type":"STRING","value":"Elliptical instability in terrestrial planets and moons"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-02-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:bvpb.mcu.es:409173\",\"titles\":[\"Curso de filosofía elemental\"],\"abstracts\":[\"Vol.I (142 p.)--Vol.II (318 p.)--Vol.III (183 p.)--Vol.IV (199 p.)\"],\"language\":\"esl/spa\",\"subjects\":[\"Filosofía\"],\"creators\":[\"Balmes, Jaime\"],\"publicationdate\":\"1877-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\"],\"pids\":[],\"instances\":[{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409173\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"},{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409149\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409149\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409149\",\"id\":\"oai:bvpb.mcu.es:409149\"},\"trust\":0.19963276}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)"},"target_publication_id":{"type":"STRING","value":"oai:bvpb.mcu.es:409173"},"target_publication_author_list":{"type":"LIST_STRING","value":["Balmes, Jaime"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:bvpb.mcu.es:409149"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::e53a0a2978c28872a4505bdb51db06dc"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Filosofía"]},"trust":{"type":"FLOAT","value":0.19963276},"target_publication_title":{"type":"STRING","value":"Curso de filosofía elemental"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)"},"target_dateofacceptance":{"type":"DATE","value":"1877-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::e53a0a2978c28872a4505bdb51db06dc"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:bvpb.mcu.es:409173\",\"titles\":[\"Curso de filosofía elemental\"],\"abstracts\":[\"Vol.I (142 p.)--Vol.II (318 p.)--Vol.III (183 p.)--Vol.IV (199 p.)\"],\"language\":\"esl/spa\",\"subjects\":[\"Filosofía\"],\"creators\":[\"Balmes, Jaime\"],\"publicationdate\":\"1877-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\"],\"pids\":[],\"instances\":[{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409173\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"},{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409172\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409172\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409172\",\"id\":\"oai:bvpb.mcu.es:409172\"},\"trust\":0.92108846}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)"},"target_publication_id":{"type":"STRING","value":"oai:bvpb.mcu.es:409173"},"target_publication_author_list":{"type":"LIST_STRING","value":["Balmes, Jaime"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:bvpb.mcu.es:409172"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::e53a0a2978c28872a4505bdb51db06dc"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Filosofía"]},"trust":{"type":"FLOAT","value":0.92108846},"target_publication_title":{"type":"STRING","value":"Curso de filosofía elemental"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)"},"target_dateofacceptance":{"type":"DATE","value":"1877-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::e53a0a2978c28872a4505bdb51db06dc"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:bvpb.mcu.es:409149\",\"titles\":[\"Curso de filosofía elemental\"],\"abstracts\":[],\"language\":\"esl/spa\",\"subjects\":[\"Metafísica\",\"Lógica\"],\"creators\":[\"Balmes, Jaime\"],\"publicationdate\":\"1876-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\"],\"pids\":[],\"instances\":[{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409149\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"},{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409173\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409173\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409173\",\"id\":\"oai:bvpb.mcu.es:409173\"},\"trust\":0.2651397}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)"},"target_publication_id":{"type":"STRING","value":"oai:bvpb.mcu.es:409149"},"target_publication_author_list":{"type":"LIST_STRING","value":["Balmes, Jaime"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:bvpb.mcu.es:409173"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::e53a0a2978c28872a4505bdb51db06dc"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Metafísica","Lógica"]},"trust":{"type":"FLOAT","value":0.2651397},"target_publication_title":{"type":"STRING","value":"Curso de filosofía elemental"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)"},"target_dateofacceptance":{"type":"DATE","value":"1876-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::e53a0a2978c28872a4505bdb51db06dc"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:bvpb.mcu.es:409149\",\"titles\":[\"Curso de filosofía elemental\"],\"abstracts\":[\"Vol.I (142 p.)--Vol.II (318 p.)--Vol.III (183 p.)--Vol.IV (199 p.)\"],\"language\":\"esl/spa\",\"subjects\":[\"Metafísica\",\"Lógica\"],\"creators\":[\"Balmes, Jaime\"],\"publicationdate\":\"1876-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\"],\"pids\":[],\"instances\":[{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409149\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"Vol.I (142 p.)--Vol.II (318 p.)--Vol.III (183 p.)--Vol.IV (199 p.)\"]},\"provenance\":{\"repositoryName\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409173\",\"id\":\"oai:bvpb.mcu.es:409173\"},\"trust\":0.17517525}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)"},"target_publication_id":{"type":"STRING","value":"oai:bvpb.mcu.es:409149"},"target_publication_author_list":{"type":"LIST_STRING","value":["Balmes, Jaime"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:bvpb.mcu.es:409173"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::e53a0a2978c28872a4505bdb51db06dc"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Metafísica","Lógica"]},"trust":{"type":"FLOAT","value":0.17517525},"target_publication_title":{"type":"STRING","value":"Curso de filosofía elemental"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)"},"target_dateofacceptance":{"type":"DATE","value":"1876-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::e53a0a2978c28872a4505bdb51db06dc"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:bvpb.mcu.es:409149\",\"titles\":[\"Curso de filosofía elemental\"],\"abstracts\":[],\"language\":\"esl/spa\",\"subjects\":[\"Metafísica\",\"Lógica\"],\"creators\":[\"Balmes, Jaime\"],\"publicationdate\":\"1876-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\"],\"pids\":[],\"instances\":[{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409149\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"},{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409172\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409172\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409172\",\"id\":\"oai:bvpb.mcu.es:409172\"},\"trust\":0.73325735}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)"},"target_publication_id":{"type":"STRING","value":"oai:bvpb.mcu.es:409149"},"target_publication_author_list":{"type":"LIST_STRING","value":["Balmes, Jaime"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:bvpb.mcu.es:409172"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::e53a0a2978c28872a4505bdb51db06dc"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Metafísica","Lógica"]},"trust":{"type":"FLOAT","value":0.73325735},"target_publication_title":{"type":"STRING","value":"Curso de filosofía elemental"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)"},"target_dateofacceptance":{"type":"DATE","value":"1876-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::e53a0a2978c28872a4505bdb51db06dc"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:bvpb.mcu.es:409149\",\"titles\":[\"Curso de filosofía elemental\"],\"abstracts\":[\"Contiene: Lógica, 144 p\"],\"language\":\"esl/spa\",\"subjects\":[\"Metafísica\",\"Lógica\"],\"creators\":[\"Balmes, Jaime\"],\"publicationdate\":\"1876-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\"],\"pids\":[],\"instances\":[{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409149\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"Contiene: Lógica, 144 p\"]},\"provenance\":{\"repositoryName\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409172\",\"id\":\"oai:bvpb.mcu.es:409172\"},\"trust\":0.79217255}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)"},"target_publication_id":{"type":"STRING","value":"oai:bvpb.mcu.es:409149"},"target_publication_author_list":{"type":"LIST_STRING","value":["Balmes, Jaime"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:bvpb.mcu.es:409172"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::e53a0a2978c28872a4505bdb51db06dc"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Metafísica","Lógica"]},"trust":{"type":"FLOAT","value":0.79217255},"target_publication_title":{"type":"STRING","value":"Curso de filosofía elemental"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)"},"target_dateofacceptance":{"type":"DATE","value":"1876-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::e53a0a2978c28872a4505bdb51db06dc"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:bvpb.mcu.es:409172\",\"titles\":[\"Curso de filosofía elemental\"],\"abstracts\":[\"Contiene: Lógica, 144 p\"],\"language\":\"esl/spa\",\"subjects\":[\"Filosofía\"],\"creators\":[\"Balmes, Jaime\"],\"publicationdate\":\"1882-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\"],\"pids\":[],\"instances\":[{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409172\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"},{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409173\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409173\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409173\",\"id\":\"oai:bvpb.mcu.es:409173\"},\"trust\":0.3301193}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)"},"target_publication_id":{"type":"STRING","value":"oai:bvpb.mcu.es:409172"},"target_publication_author_list":{"type":"LIST_STRING","value":["Balmes, Jaime"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:bvpb.mcu.es:409173"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::e53a0a2978c28872a4505bdb51db06dc"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Filosofía"]},"trust":{"type":"FLOAT","value":0.3301193},"target_publication_title":{"type":"STRING","value":"Curso de filosofía elemental"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)"},"target_dateofacceptance":{"type":"DATE","value":"1882-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::e53a0a2978c28872a4505bdb51db06dc"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:bvpb.mcu.es:409172\",\"titles\":[\"Curso de filosofía elemental\"],\"abstracts\":[\"Contiene: Lógica, 144 p\"],\"language\":\"esl/spa\",\"subjects\":[\"Filosofía\"],\"creators\":[\"Balmes, Jaime\"],\"publicationdate\":\"1882-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\"],\"pids\":[],\"instances\":[{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409172\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"},{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409149\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409149\",\"license\":\"OPEN\",\"hostedby\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)\",\"url\":\"http://bvpb.mcu.es/es/consulta/registro.cmd?id\\u003d409149\",\"id\":\"oai:bvpb.mcu.es:409149\"},\"trust\":0.5027921}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)"},"target_publication_id":{"type":"STRING","value":"oai:bvpb.mcu.es:409172"},"target_publication_author_list":{"type":"LIST_STRING","value":["Balmes, Jaime"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:bvpb.mcu.es:409149"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::e53a0a2978c28872a4505bdb51db06dc"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Filosofía"]},"trust":{"type":"FLOAT","value":0.5027921},"target_publication_title":{"type":"STRING","value":"Curso de filosofía elemental"},"provenance_datasource_name":{"type":"STRING","value":"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)"},"target_dateofacceptance":{"type":"DATE","value":"1882-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::e53a0a2978c28872a4505bdb51db06dc"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:hep-ph/0101321\",\"titles\":[\"Total Photonic and Hadronic Cross-sections\"],\"abstracts\":[\" We discuss total cross-sections within the context of the QCD calculable\\nmini-jet model, highlighting its successes and failures. In particular we show\\nits description of $\\\\gamma \\\\gamma \\\\to hadrons$ and compare it with OPAL and L3\\ndata. We extrapolate this result to $\\\\gamma p$ total cross-sections and propose\\na phenomenological ans\\\\\\\"atz for virtual photon cross-sections. We point out\\nthat the good agreement with data obtained with the Eikonal Minijet Model\\nshould not hide the many uncertainties buried in the impact parameter\\ndistribution. A model obtained from Soft Gluon Summation is briefly discussed\\nand its application to hadronic cross-sections is shown.\\n\",\"Comment: 10 pages, 5 figures, LaTeX, uses aipproc.sty. To appear in the\\n proceedings of Photon 2000, Ambelside, U.K., Aug 2000. The title, the number\\n of pages and the number of figures in the announcement were corrected to\\n correspond to the submitted paper\"],\"language\":\"eng\",\"subjects\":[\"High Energy Physics - Phenomenology\"],\"creators\":[\"Godbole, Rohini M.\",\"Grau, A.\",\"Pancheri, G.\"],\"publicationdate\":\"2001-01-29\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1063/1.1402829\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/hep-ph/0101321\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://eprints.iisc.ernet.in/814/\",\"license\":\"OPEN\",\"hostedby\":\"Open Access Repository of IISc Research Publications\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.iisc.ernet.in/814/\",\"license\":\"OPEN\",\"hostedby\":\"Open Access Repository of IISc Research Publications\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Open Access Repository of IISc Research Publications\",\"url\":\"http://eprints.iisc.ernet.in/814/\",\"id\":\"oai:eprints.iisc.ernet.in:814\"},\"trust\":0.97707003}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:hep-ph/0101321"},"target_publication_author_list":{"type":"LIST_STRING","value":["Godbole, Rohini M.","Grau, A.","Pancheri, G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.iisc.ernet.in:814"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::4c5bde74a8f110656874902f07378009"},"target_publication_subject_list":{"type":"LIST_STRING","value":["High Energy Physics - Phenomenology"]},"trust":{"type":"FLOAT","value":0.97707003},"target_publication_title":{"type":"STRING","value":"Total Photonic and Hadronic Cross-sections"},"provenance_datasource_name":{"type":"STRING","value":"Open Access Repository of IISc Research Publications"},"target_dateofacceptance":{"type":"DATE","value":"2001-01-29"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.iisc.ernet.in:814\",\"titles\":[\"Total Photonic and Hadronic Cross-sections\"],\"abstracts\":[\"We discuss total cross-sections within the context of the QCD calculable mini-jet model, highlighting its successes and failures. In particular we show its description of $\\\\gamma \\\\gamma \\\\to hadrons$ and compare it with OPAL and L3\\ndata. We extrapolate this result to $\\\\gamma p$ total cross-sections and propose a phenomenological ansatz for virtual photon cross-sections. We point out that the good agreement with data obtained with the Eikonal Minijet Model should not hide the many uncertainties buried in the impact parameter distribution. A model obtained from Soft Gluon Summation is briefly discussed and its application to hadronic cross-sections is shown.\\n\\n\"],\"language\":\"und\",\"subjects\":[\"Centre for Theoretical Studies\"],\"creators\":[\"Godbole, Rohini M.\",\"Grau, A.\",\"Pancheri, G.\"],\"publicationdate\":\"2001-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Open Access Repository of IISc Research Publications\"],\"pids\":[{\"value\":\"10.1063/1.1402829\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://eprints.iisc.ernet.in/814/\",\"license\":\"OPEN\",\"hostedby\":\"Open Access Repository of IISc Research Publications\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1063/1.1402829\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ph/0101321\",\"id\":\"oai:arXiv.org:hep-ph/0101321\"},\"trust\":0.6438187}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Open Access Repository of IISc Research Publications"},"target_publication_id":{"type":"STRING","value":"oai:eprints.iisc.ernet.in:814"},"target_publication_author_list":{"type":"LIST_STRING","value":["Godbole, Rohini M.","Grau, A.","Pancheri, G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ph/0101321"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Centre for Theoretical Studies"]},"trust":{"type":"FLOAT","value":0.6438187},"target_publication_title":{"type":"STRING","value":"Total Photonic and Hadronic Cross-sections"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2001-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::4c5bde74a8f110656874902f07378009"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.iisc.ernet.in:814\",\"titles\":[\"Total Photonic and Hadronic Cross-sections\"],\"abstracts\":[\"We discuss total cross-sections within the context of the QCD calculable mini-jet model, highlighting its successes and failures. In particular we show its description of $\\\\gamma \\\\gamma \\\\to hadrons$ and compare it with OPAL and L3\\ndata. We extrapolate this result to $\\\\gamma p$ total cross-sections and propose a phenomenological ansatz for virtual photon cross-sections. We point out that the good agreement with data obtained with the Eikonal Minijet Model should not hide the many uncertainties buried in the impact parameter distribution. A model obtained from Soft Gluon Summation is briefly discussed and its application to hadronic cross-sections is shown.\\n\\n\"],\"language\":\"und\",\"subjects\":[\"Centre for Theoretical Studies\"],\"creators\":[\"Godbole, Rohini M.\",\"Grau, A.\",\"Pancheri, G.\"],\"publicationdate\":\"2001-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Open Access Repository of IISc Research Publications\"],\"pids\":[{\"value\":\"10.1063/1.1402829\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://eprints.iisc.ernet.in/814/\",\"license\":\"OPEN\",\"hostedby\":\"Open Access Repository of IISc Research Publications\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1063/1.1402829\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ph/0101321\",\"id\":\"oai:arXiv.org:hep-ph/0101321\"},\"trust\":0.6438187}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Open Access Repository of IISc Research Publications"},"target_publication_id":{"type":"STRING","value":"oai:eprints.iisc.ernet.in:814"},"target_publication_author_list":{"type":"LIST_STRING","value":["Godbole, Rohini M.","Grau, A.","Pancheri, G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ph/0101321"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Centre for Theoretical Studies"]},"trust":{"type":"FLOAT","value":0.6438187},"target_publication_title":{"type":"STRING","value":"Total Photonic and Hadronic Cross-sections"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2001-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::4c5bde74a8f110656874902f07378009"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:eprints.iisc.ernet.in:814\",\"titles\":[\"Total Photonic and Hadronic Cross-sections\"],\"abstracts\":[\"We discuss total cross-sections within the context of the QCD calculable mini-jet model, highlighting its successes and failures. In particular we show its description of $\\\\gamma \\\\gamma \\\\to hadrons$ and compare it with OPAL and L3\\ndata. We extrapolate this result to $\\\\gamma p$ total cross-sections and propose a phenomenological ansatz for virtual photon cross-sections. We point out that the good agreement with data obtained with the Eikonal Minijet Model should not hide the many uncertainties buried in the impact parameter distribution. A model obtained from Soft Gluon Summation is briefly discussed and its application to hadronic cross-sections is shown.\\n\\n\"],\"language\":\"und\",\"subjects\":[\"Centre for Theoretical Studies\"],\"creators\":[\"Godbole, Rohini M.\",\"Grau, A.\",\"Pancheri, G.\"],\"publicationdate\":\"2001-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Open Access Repository of IISc Research Publications\"],\"pids\":[],\"instances\":[{\"url\":\"http://eprints.iisc.ernet.in/814/\",\"license\":\"OPEN\",\"hostedby\":\"Open Access Repository of IISc Research Publications\",\"instancetype\":\"Preprint\"},{\"url\":\"http://arxiv.org/abs/hep-ph/0101321\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/hep-ph/0101321\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ph/0101321\",\"id\":\"oai:arXiv.org:hep-ph/0101321\"},\"trust\":0.8000584}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Open Access Repository of IISc Research Publications"},"target_publication_id":{"type":"STRING","value":"oai:eprints.iisc.ernet.in:814"},"target_publication_author_list":{"type":"LIST_STRING","value":["Godbole, Rohini M.","Grau, A.","Pancheri, G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ph/0101321"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Centre for Theoretical Studies"]},"trust":{"type":"FLOAT","value":0.8000584},"target_publication_title":{"type":"STRING","value":"Total Photonic and Hadronic Cross-sections"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2001-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::4c5bde74a8f110656874902f07378009"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/376457\",\"titles\":[\"Economics of controlling invasive species: the case of Californian thistle in New Zealand\"],\"abstracts\":[\"Keywords Invasive species, Economics, Californian thistle, New Zealand, Stochastic, Dynamic programming, Biological control, Extinction risk, Herbivory, Dispersal, Competition Invasive species are one of the most significant threats to biodiversity and agricultural production systems leading to huge worldwide economic damages. This thesis has two main aims. The first aim is to analyse the control of an invasive plant in an agricultural system, using the case study of the Californian thistle in New Zealand. The second aim is to study the negative externalities that controlling invasion in agriculture can pose to ecosystems. To achieve the first aim, both deterministic and stochastic dynamic programming models are set up to find cost effective methods to tackle the problem of Californian thistle. I make a contribution to the literature by performing a dynamic and stochastic programming analysis in which two different categories of control strategies are considered, each with different dynamics. Models are set up with a discrete decision variable consisting of 62 feasible combinations of integrated control strategies. For the second aim I introduce a novel modelling approach in which two compartments are distinguished: a managed compartment where locally a herbivore is introduced to control a weed, and a natural compartment where the same herbivore species can attack a wild plant species. The main processes are herbivory, competition, dispersal and control. I conclude that bioeconomic modelling is an important tool in analysing optimal management strategies for the control of invasive species and that annual and once and for all choices need to be integrated in the analysis. A stochastic approach is appropriate but does not necessarily lead to different results, depending on the parameter values and the setup of the model. Finally, the method illustrates that an integrated analysis of the economic system and the ecological system is required to assess the risk of extinction of natural plant species. This risk depends on species interactions which in this thesis are competition, dispersal and herbivory. I conclude that a control measure can protect the desirable wild plant species and increase benefits obtained from the ecosystem. For the policy implications, I conclude that there are several strategies to control invasive species, which can be integrated combinations of control options. The optimal strategy depends on the costs and benefits of the control options. In the case study for the Californian thistle I found that the optimal strategy is a combination of methods. For the interaction between agricultural and natural system I conclude that introducing a biological agent to the agricultural system can cause extinction of a desirable plant in the natural system. The main processes are competition, herbivory and dispersal. These processes are important and need to be analysed in detail before introducing the biological agent. I conclude that the optimal strategy to control the introduced biological agent also depends on interaction of species through competition, dispersal and herbivory. \"],\"language\":\"eng\",\"subjects\":[\"milieu\",\"environment\",\"economie\",\"economics\",\"invasie\",\"invasion\",\"onkruiden\",\"weeds\",\"biologische bestrijding\",\"biological control\",\"uitsterven\",\"extinction\",\"risico\",\"risk\",\"herbivoren\",\"herbivores\",\"dynamisch programmeren\",\"dynamic programming\",\"verspreiding\",\"dispersal\",\"concurrentie tussen planten\",\"plant competition\",\"stuifmeelconcurrentie\",\"pollen competition\",\"nieuw-zeeland\",\"new zealand\",\"cirsium arvense\",\"cirsium arvense\",\"milieueconomie\",\"environmental economics\",\"verspreiding van planten\",\"plant dispersal\",\"Milieu-economie\"],\"creators\":[\"Chalak, S. M.\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"S.n.\",\"embargoenddate\":\"\",\"contributor\":[\"Ekko van Ierland\",\"Arjan Ruijs\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/1994\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/376457\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/376457\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/376457\",\"id\":\"wur:oai:library.wur.nl:wurpubs/376457\"},\"trust\":0.2777459}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/376457"},"target_publication_author_list":{"type":"LIST_STRING","value":["Chalak, S. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/376457"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["milieu","environment","economie","economics","invasie","invasion","onkruiden","weeds","biologische bestrijding","biological control","uitsterven","extinction","risico","risk","herbivoren","herbivores","dynamisch programmeren","dynamic programming","verspreiding","dispersal","concurrentie tussen planten","plant competition","stuifmeelconcurrentie","pollen competition","nieuw-zeeland","new zealand","cirsium arvense","cirsium arvense","milieueconomie","environmental economics","verspreiding van planten","plant dispersal","Milieu-economie"]},"trust":{"type":"FLOAT","value":0.2777459},"target_publication_title":{"type":"STRING","value":"Economics of controlling invasive species: the case of Californian thistle in New Zealand"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:0e23745f-f015-400e-bfbd-cba88a4f468b\",\"titles\":[\"Diffractive dijet cross sections in photoproduction at HERA\"],\"abstracts\":[\"Differential dijet cross sections have been measured with the ZEUS detector for photoproduction events in which the hadronic final state containing the jets is separated with respect to the outgoing proton direction by a large rapidity gap. The cross section has been measured as a function of the fraction of the photon (xγOBS) and pomeron (βOBS) momentum participating in the production of the dijet system. The observed xγOBS dependence shows evidence for the presence of a resolved-as well as a direct-photon component. The measured cross section dσ/dβOBS increases as βOBS increases indicating that there is a sizeable contribution to dijet production from those events in which a large fraction of the pomeron momentum participates in the hard scattering. These cross sections and the ZEUS measurements of the diffractive structure function can be described by calculations based on parton densities in the pomeron which evolve according to the QCD evolution equations and include a substantial hard momentum component of gluons in the pomeron.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Breitweg, J.\",\"Derrick, M.\",\"Krakauer, D.\",\"Magill, S.\",\"Mikunas, D.\",\"Musgrave, B.\",\"Repond, J.\",\"Stanek, R.\",\"Talaga, Rl\",\"Yoshida, R.\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1007/s100520050246\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:0e23745f-f015-400e-bfbd-cba88a4f468b\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s100520050246\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ex/9804013\",\"id\":\"oai:arXiv.org:hep-ex/9804013\"},\"trust\":0.6852616}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:0e23745f-f015-400e-bfbd-cba88a4f468b"},"target_publication_author_list":{"type":"LIST_STRING","value":["Breitweg, J.","Derrick, M.","Krakauer, D.","Magill, S.","Mikunas, D.","Musgrave, B.","Repond, J.","Stanek, R.","Talaga, Rl","Yoshida, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ex/9804013"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.6852616},"target_publication_title":{"type":"STRING","value":"Diffractive dijet cross sections in photoproduction at HERA"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:0e23745f-f015-400e-bfbd-cba88a4f468b\",\"titles\":[\"Diffractive dijet cross sections in photoproduction at HERA\"],\"abstracts\":[\"Differential dijet cross sections have been measured with the ZEUS detector for photoproduction events in which the hadronic final state containing the jets is separated with respect to the outgoing proton direction by a large rapidity gap. The cross section has been measured as a function of the fraction of the photon (xγOBS) and pomeron (βOBS) momentum participating in the production of the dijet system. The observed xγOBS dependence shows evidence for the presence of a resolved-as well as a direct-photon component. The measured cross section dσ/dβOBS increases as βOBS increases indicating that there is a sizeable contribution to dijet production from those events in which a large fraction of the pomeron momentum participates in the hard scattering. These cross sections and the ZEUS measurements of the diffractive structure function can be described by calculations based on parton densities in the pomeron which evolve according to the QCD evolution equations and include a substantial hard momentum component of gluons in the pomeron.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Breitweg, J.\",\"Derrick, M.\",\"Krakauer, D.\",\"Magill, S.\",\"Mikunas, D.\",\"Musgrave, B.\",\"Repond, J.\",\"Stanek, R.\",\"Talaga, Rl\",\"Yoshida, R.\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1007/s100520050246\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:0e23745f-f015-400e-bfbd-cba88a4f468b\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s100520050246\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ex/9804013\",\"id\":\"oai:arXiv.org:hep-ex/9804013\"},\"trust\":0.6852616}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:0e23745f-f015-400e-bfbd-cba88a4f468b"},"target_publication_author_list":{"type":"LIST_STRING","value":["Breitweg, J.","Derrick, M.","Krakauer, D.","Magill, S.","Mikunas, D.","Musgrave, B.","Repond, J.","Stanek, R.","Talaga, Rl","Yoshida, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ex/9804013"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.6852616},"target_publication_title":{"type":"STRING","value":"Diffractive dijet cross sections in photoproduction at HERA"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:0e23745f-f015-400e-bfbd-cba88a4f468b\",\"titles\":[\"Diffractive dijet cross sections in photoproduction at HERA\"],\"abstracts\":[\"Differential dijet cross sections have been measured with the ZEUS detector for photoproduction events in which the hadronic final state containing the jets is separated with respect to the outgoing proton direction by a large rapidity gap. The cross section has been measured as a function of the fraction of the photon (xγOBS) and pomeron (βOBS) momentum participating in the production of the dijet system. The observed xγOBS dependence shows evidence for the presence of a resolved-as well as a direct-photon component. The measured cross section dσ/dβOBS increases as βOBS increases indicating that there is a sizeable contribution to dijet production from those events in which a large fraction of the pomeron momentum participates in the hard scattering. These cross sections and the ZEUS measurements of the diffractive structure function can be described by calculations based on parton densities in the pomeron which evolve according to the QCD evolution equations and include a substantial hard momentum component of gluons in the pomeron.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Breitweg, J.\",\"Derrick, M.\",\"Krakauer, D.\",\"Magill, S.\",\"Mikunas, D.\",\"Musgrave, B.\",\"Repond, J.\",\"Stanek, R.\",\"Talaga, Rl\",\"Yoshida, R.\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:0e23745f-f015-400e-bfbd-cba88a4f468b\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/hep-ex/9804013\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/hep-ex/9804013\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ex/9804013\",\"id\":\"oai:arXiv.org:hep-ex/9804013\"},\"trust\":0.22685975}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:0e23745f-f015-400e-bfbd-cba88a4f468b"},"target_publication_author_list":{"type":"LIST_STRING","value":["Breitweg, J.","Derrick, M.","Krakauer, D.","Magill, S.","Mikunas, D.","Musgrave, B.","Repond, J.","Stanek, R.","Talaga, Rl","Yoshida, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ex/9804013"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.22685975},"target_publication_title":{"type":"STRING","value":"Diffractive dijet cross sections in photoproduction at HERA"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:0e23745f-f015-400e-bfbd-cba88a4f468b\",\"titles\":[\"Diffractive dijet cross sections in photoproduction at HERA\"],\"abstracts\":[\"Differential dijet cross sections have been measured with the ZEUS detector for photoproduction events in which the hadronic final state containing the jets is separated with respect to the outgoing proton direction by a large rapidity gap. The cross section has been measured as a function of the fraction of the photon (xγOBS) and pomeron (βOBS) momentum participating in the production of the dijet system. The observed xγOBS dependence shows evidence for the presence of a resolved-as well as a direct-photon component. The measured cross section dσ/dβOBS increases as βOBS increases indicating that there is a sizeable contribution to dijet production from those events in which a large fraction of the pomeron momentum participates in the hard scattering. These cross sections and the ZEUS measurements of the diffractive structure function can be described by calculations based on parton densities in the pomeron which evolve according to the QCD evolution equations and include a substantial hard momentum component of gluons in the pomeron.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Breitweg, J.\",\"Derrick, M.\",\"Krakauer, D.\",\"Magill, S.\",\"Mikunas, D.\",\"Musgrave, B.\",\"Repond, J.\",\"Stanek, R.\",\"Talaga, Rl\",\"Yoshida, R.\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:0e23745f-f015-400e-bfbd-cba88a4f468b\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/hep-ex/9804013\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/hep-ex/9804013\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ex/9804013\",\"id\":\"oai:arXiv.org:hep-ex/9804013\"},\"trust\":0.22685975}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:0e23745f-f015-400e-bfbd-cba88a4f468b"},"target_publication_author_list":{"type":"LIST_STRING","value":["Breitweg, J.","Derrick, M.","Krakauer, D.","Magill, S.","Mikunas, D.","Musgrave, B.","Repond, J.","Stanek, R.","Talaga, Rl","Yoshida, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ex/9804013"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.22685975},"target_publication_title":{"type":"STRING","value":"Diffractive dijet cross sections in photoproduction at HERA"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:0e23745f-f015-400e-bfbd-cba88a4f468b\",\"titles\":[\"Diffractive dijet cross sections in photoproduction at HERA\"],\"abstracts\":[\"Differential dijet cross sections have been measured with the ZEUS detector for photoproduction events in which the hadronic final state containing the jets is separated with respect to the outgoing proton direction by a large rapidity gap. The cross section has been measured as a function of the fraction of the photon (xγOBS) and pomeron (βOBS) momentum participating in the production of the dijet system. The observed xγOBS dependence shows evidence for the presence of a resolved-as well as a direct-photon component. The measured cross section dσ/dβOBS increases as βOBS increases indicating that there is a sizeable contribution to dijet production from those events in which a large fraction of the pomeron momentum participates in the hard scattering. These cross sections and the ZEUS measurements of the diffractive structure function can be described by calculations based on parton densities in the pomeron which evolve according to the QCD evolution equations and include a substantial hard momentum component of gluons in the pomeron.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Breitweg, J.\",\"Derrick, M.\",\"Krakauer, D.\",\"Magill, S.\",\"Mikunas, D.\",\"Musgrave, B.\",\"Repond, J.\",\"Stanek, R.\",\"Talaga, Rl\",\"Yoshida, R.\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1007/s100520050246\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:0e23745f-f015-400e-bfbd-cba88a4f468b\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s100520050246\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9\",\"id\":\"oai:ora.ox.ac.uk:uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9\"},\"trust\":0.8436192}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:0e23745f-f015-400e-bfbd-cba88a4f468b"},"target_publication_author_list":{"type":"LIST_STRING","value":["Breitweg, J.","Derrick, M.","Krakauer, D.","Magill, S.","Mikunas, D.","Musgrave, B.","Repond, J.","Stanek, R.","Talaga, Rl","Yoshida, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"trust":{"type":"FLOAT","value":0.8436192},"target_publication_title":{"type":"STRING","value":"Diffractive dijet cross sections in photoproduction at HERA"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:0e23745f-f015-400e-bfbd-cba88a4f468b\",\"titles\":[\"Diffractive dijet cross sections in photoproduction at HERA\"],\"abstracts\":[\"Differential dijet cross sections have been measured with the ZEUS detector for photoproduction events in which the hadronic final state containing the jets is separated with respect to the outgoing proton direction by a large rapidity gap. The cross section has been measured as a function of the fraction of the photon (xγOBS) and pomeron (βOBS) momentum participating in the production of the dijet system. The observed xγOBS dependence shows evidence for the presence of a resolved-as well as a direct-photon component. The measured cross section dσ/dβOBS increases as βOBS increases indicating that there is a sizeable contribution to dijet production from those events in which a large fraction of the pomeron momentum participates in the hard scattering. These cross sections and the ZEUS measurements of the diffractive structure function can be described by calculations based on parton densities in the pomeron which evolve according to the QCD evolution equations and include a substantial hard momentum component of gluons in the pomeron.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Breitweg, J.\",\"Derrick, M.\",\"Krakauer, D.\",\"Magill, S.\",\"Mikunas, D.\",\"Musgrave, B.\",\"Repond, J.\",\"Stanek, R.\",\"Talaga, Rl\",\"Yoshida, R.\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1007/s100520050246\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:0e23745f-f015-400e-bfbd-cba88a4f468b\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s100520050246\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9\",\"id\":\"oai:ora.ox.ac.uk:uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9\"},\"trust\":0.8436192}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:0e23745f-f015-400e-bfbd-cba88a4f468b"},"target_publication_author_list":{"type":"LIST_STRING","value":["Breitweg, J.","Derrick, M.","Krakauer, D.","Magill, S.","Mikunas, D.","Musgrave, B.","Repond, J.","Stanek, R.","Talaga, Rl","Yoshida, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"trust":{"type":"FLOAT","value":0.8436192},"target_publication_title":{"type":"STRING","value":"Diffractive dijet cross sections in photoproduction at HERA"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9\",\"titles\":[\"Diffractive dijet cross sections in photoproduction at HERA\"],\"abstracts\":[\"Differential dijet cross sections have been measured with the ZEUS detector for photoproduction events in which the hadronic final state containing the jets is separated with respect to the outgoing proton direction by a large rapidity gap. The cross section has been measured as a function of the fraction of the photon (xγOBS) and pomeron (βOBS) momentum participating in the production of the dijet system. The observed xγOBS dependence shows evidence for the presence of a resolved-as well as a direct-photon component. The measured cross section dσ/dβOBS increases as βOBS increases indicating that there is a sizeable contribution to dijet production from those events in which a large fraction of the pomeron momentum participates in the hard scattering. These cross sections and the ZEUS measurements of the diffractive structure function can be described by calculations based on parton densities in the pomeron which evolve according to the QCD evolution equations and include a substantial hard momentum component of gluons in the pomeron.\"],\"language\":\"aar\",\"subjects\":[],\"creators\":[\"Breitweg, J.\",\"Derrick, M.\",\"Krakauer, D.\",\"Magill, S.\",\"Mikunas, T.\",\"Musgrave, B.\",\"Repond, J.\",\"Stanek, R.\",\"Talaga, Rl\",\"Yoshida, R.\"],\"publicationdate\":\"1998-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1007/s100520050246\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"Differential dijet cross sections have been measured with the ZEUS detector for photoproduction events in which the hadronic final state containing the jets is separated with respect to the outgoing proton direction by a large rapidity gap. The cross section has been measured as a function of the fraction of the photon (xγOBS) and pomeron (βOBS) momentum participating in the production of the dijet system. The observed xγOBS dependence shows evidence for the presence of a resolved-as well as a direct-photon component. The measured cross section dσ/dβOBS increases as βOBS increases indicating that there is a sizeable contribution to dijet production from those events in which a large fraction of the pomeron momentum participates in the hard scattering. These cross sections and the ZEUS measurements of the diffractive structure function can be described by calculations based on parton densities in the pomeron which evolve according to the QCD evolution equations and include a substantial hard momentum component of gluons in the pomeron.\"]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:0e23745f-f015-400e-bfbd-cba88a4f468b\",\"id\":\"oai:ora.ox.ac.uk:uuid:0e23745f-f015-400e-bfbd-cba88a4f468b\"},\"trust\":0.5892174}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9"},"target_publication_author_list":{"type":"LIST_STRING","value":["Breitweg, J.","Derrick, M.","Krakauer, D.","Magill, S.","Mikunas, T.","Musgrave, B.","Repond, J.","Stanek, R.","Talaga, Rl","Yoshida, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:0e23745f-f015-400e-bfbd-cba88a4f468b"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"trust":{"type":"FLOAT","value":0.5892174},"target_publication_title":{"type":"STRING","value":"Diffractive dijet cross sections in photoproduction at HERA"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"1998-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9\",\"titles\":[\"Diffractive dijet cross sections in photoproduction at HERA\"],\"abstracts\":[],\"language\":\"aar\",\"subjects\":[],\"creators\":[\"Breitweg, J.\",\"Derrick, M.\",\"Krakauer, D.\",\"Magill, S.\",\"Mikunas, T.\",\"Musgrave, B.\",\"Repond, J.\",\"Stanek, R.\",\"Talaga, Rl\",\"Yoshida, R.\"],\"publicationdate\":\"1998-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1007/s100520050246\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/hep-ex/9804013\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/hep-ex/9804013\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ex/9804013\",\"id\":\"oai:arXiv.org:hep-ex/9804013\"},\"trust\":0.59627146}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9"},"target_publication_author_list":{"type":"LIST_STRING","value":["Breitweg, J.","Derrick, M.","Krakauer, D.","Magill, S.","Mikunas, T.","Musgrave, B.","Repond, J.","Stanek, R.","Talaga, Rl","Yoshida, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ex/9804013"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.59627146},"target_publication_title":{"type":"STRING","value":"Diffractive dijet cross sections in photoproduction at HERA"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1998-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9\",\"titles\":[\"Diffractive dijet cross sections in photoproduction at HERA\"],\"abstracts\":[],\"language\":\"aar\",\"subjects\":[],\"creators\":[\"Breitweg, J.\",\"Derrick, M.\",\"Krakauer, D.\",\"Magill, S.\",\"Mikunas, T.\",\"Musgrave, B.\",\"Repond, J.\",\"Stanek, R.\",\"Talaga, Rl\",\"Yoshida, R.\"],\"publicationdate\":\"1998-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1007/s100520050246\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/hep-ex/9804013\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/hep-ex/9804013\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ex/9804013\",\"id\":\"oai:arXiv.org:hep-ex/9804013\"},\"trust\":0.59627146}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9"},"target_publication_author_list":{"type":"LIST_STRING","value":["Breitweg, J.","Derrick, M.","Krakauer, D.","Magill, S.","Mikunas, T.","Musgrave, B.","Repond, J.","Stanek, R.","Talaga, Rl","Yoshida, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ex/9804013"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.59627146},"target_publication_title":{"type":"STRING","value":"Diffractive dijet cross sections in photoproduction at HERA"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1998-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9\",\"titles\":[\"Diffractive dijet cross sections in photoproduction at HERA\"],\"abstracts\":[\" Differential dijet cross sections have been measured with the ZEUS detector\\nfor photoproduction events in which the hadronic final state containing the\\njets is separated with respect to the outgoing proton direction by a large\\nrapidity gap. The cross section has been measured as a function of the fraction\\nof the photon (x_gamma^OBS) and pomeron (beta^OBS) momentum participating in\\nthe production of the dijet system. The observed x_gamma^OBS dependence shows\\nevidence for the presence of a resolved- as well as a direct-photon component.\\nThe measured cross section d(sigma)/d(beta^OBS) increases as beta^OBS increases\\nindicating that there is a sizeable contribution to dijet production from those\\nevents in which a large fraction of the pomeron momentum participates in the\\nhard scattering. These cross sections and the ZEUS measurements of the\\ndiffractive structure function can be described by calculations based on parton\\ndensities in the pomeron which evolve according to the QCD evolution equations\\nand include a substantial hard momentum component of gluons in the pomeron.\\n\",\"Comment: 33 pages including 8 figures\"],\"language\":\"aar\",\"subjects\":[],\"creators\":[\"Breitweg, J.\",\"Derrick, M.\",\"Krakauer, D.\",\"Magill, S.\",\"Mikunas, T.\",\"Musgrave, B.\",\"Repond, J.\",\"Stanek, R.\",\"Talaga, Rl\",\"Yoshida, R.\"],\"publicationdate\":\"1998-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1007/s100520050246\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\" Differential dijet cross sections have been measured with the ZEUS detector\\nfor photoproduction events in which the hadronic final state containing the\\njets is separated with respect to the outgoing proton direction by a large\\nrapidity gap. The cross section has been measured as a function of the fraction\\nof the photon (x_gamma^OBS) and pomeron (beta^OBS) momentum participating in\\nthe production of the dijet system. The observed x_gamma^OBS dependence shows\\nevidence for the presence of a resolved- as well as a direct-photon component.\\nThe measured cross section d(sigma)/d(beta^OBS) increases as beta^OBS increases\\nindicating that there is a sizeable contribution to dijet production from those\\nevents in which a large fraction of the pomeron momentum participates in the\\nhard scattering. These cross sections and the ZEUS measurements of the\\ndiffractive structure function can be described by calculations based on parton\\ndensities in the pomeron which evolve according to the QCD evolution equations\\nand include a substantial hard momentum component of gluons in the pomeron.\\n\",\"Comment: 33 pages including 8 figures\"]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ex/9804013\",\"id\":\"oai:arXiv.org:hep-ex/9804013\"},\"trust\":0.15921259}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:e182cef4-eacb-4932-b33f-25ab6aab11f9"},"target_publication_author_list":{"type":"LIST_STRING","value":["Breitweg, J.","Derrick, M.","Krakauer, D.","Magill, S.","Mikunas, T.","Musgrave, B.","Repond, J.","Stanek, R.","Talaga, Rl","Yoshida, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ex/9804013"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.15921259},"target_publication_title":{"type":"STRING","value":"Diffractive dijet cross sections in photoproduction at HERA"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1998-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:1ac48a14-3f5c-4753-8109-8f16615ba28c\",\"titles\":[\"Simulations of the small-scale turbulent dynamo\"],\"abstracts\":[\"We report an extensive numerical study of the small-scale turbulent dynamo at\\nlarge magnetic Prandtl numbers Pm. A Pm scan is given for the model case of\\nlow-Reynolds-number turbulence. We concentrate on three topics: magnetic-energy\\nspectra and saturation levels, the structure of the field lines, and the\\nfield-strength distribution. The main results are (1) the folded structure\\n(direction reversals at the resistive scale, field lines curved at the scale of\\nthe flow) persists from the kinematic to the nonlinear regime; (2) the field\\ndistribution is self-similar and appears to be lognormal during the kinematic\\nregime and exponential in the saturated state; and (3) the bulk of the magnetic\\nenergy is at the resistive scale in the kinematic regime and remains there\\nafter saturation, although the spectrum becomes much shallower. We propose an\\nanalytical model of saturation based on the idea of partial\\ntwo-dimensionalization of the velocity gradients with respect to the local\\ndirection of the magnetic folds. The model-predicted spectra are in excellent\\nagreement with numerical results. Comparisons with large-Re, moderate-Pm runs\\nare carried out to confirm the relevance of these results. New features at\\nlarge Re are elongation of the folds in the nonlinear regime from the viscous\\nscale to the box scale and the presence of an intermediate nonlinear stage of\\nslower-than-exponential magnetic-energy growth accompanied by an increase of\\nthe resistive scale and partial suppression of the kinetic-energy spectrum in\\nthe inertial range. Numerical results for the saturated state do not support\\nscale-by-scale equipartition between magnetic and kinetic energies, with a\\ndefinite excess of magnetic energy at small scales. A physical picture of the\\nsaturated state is proposed.\"],\"language\":\"aar\",\"subjects\":[\"magnetic fields\",\"methods : numerical\",\"MHD\",\"plasmas\",\"turbulence\"],\"creators\":[\"Schekochihin, Aa\",\"Cowley, Sc\",\"Taylor, Sf\",\"Maron, Jl\",\"Mcwilliams, Jc\"],\"publicationdate\":\"2004-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1086/422547\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:1ac48a14-3f5c-4753-8109-8f16615ba28c\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"We report an extensive numerical study of the small-scale turbulent dynamo at\\nlarge magnetic Prandtl numbers Pm. A Pm scan is given for the model case of\\nlow-Reynolds-number turbulence. We concentrate on three topics: magnetic-energy\\nspectra and saturation levels, the structure of the field lines, and the\\nfield-strength distribution. The main results are (1) the folded structure\\n(direction reversals at the resistive scale, field lines curved at the scale of\\nthe flow) persists from the kinematic to the nonlinear regime; (2) the field\\ndistribution is self-similar and appears to be lognormal during the kinematic\\nregime and exponential in the saturated state; and (3) the bulk of the magnetic\\nenergy is at the resistive scale in the kinematic regime and remains there\\nafter saturation, although the spectrum becomes much shallower. We propose an\\nanalytical model of saturation based on the idea of partial\\ntwo-dimensionalization of the velocity gradients with respect to the local\\ndirection of the magnetic folds. The model-predicted spectra are in excellent\\nagreement with numerical results. Comparisons with large-Re, moderate-Pm runs\\nare carried out to confirm the relevance of these results. New features at\\nlarge Re are elongation of the folds in the nonlinear regime from the viscous\\nscale to the box scale and the presence of an intermediate nonlinear stage of\\nslower-than-exponential magnetic-energy growth accompanied by an increase of\\nthe resistive scale and partial suppression of the kinetic-energy spectrum in\\nthe inertial range. Numerical results for the saturated state do not support\\nscale-by-scale equipartition between magnetic and kinetic energies, with a\\ndefinite excess of magnetic energy at small scales. A physical picture of the\\nsaturated state is proposed.\"]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:7ab60ec5-1b66-438a-8fc0-c9199d70851e\",\"id\":\"oai:ora.ox.ac.uk:uuid:7ab60ec5-1b66-438a-8fc0-c9199d70851e\"},\"trust\":0.8220014}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:1ac48a14-3f5c-4753-8109-8f16615ba28c"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schekochihin, Aa","Cowley, Sc","Taylor, Sf","Maron, Jl","Mcwilliams, Jc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:7ab60ec5-1b66-438a-8fc0-c9199d70851e"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"target_publication_subject_list":{"type":"LIST_STRING","value":["magnetic fields","methods : numerical","MHD","plasmas","turbulence"]},"trust":{"type":"FLOAT","value":0.8220014},"target_publication_title":{"type":"STRING","value":"Simulations of the small-scale turbulent dynamo"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2004-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:1ac48a14-3f5c-4753-8109-8f16615ba28c\",\"titles\":[\"Simulations of the small-scale turbulent dynamo\"],\"abstracts\":[],\"language\":\"aar\",\"subjects\":[\"magnetic fields\",\"methods : numerical\",\"MHD\",\"plasmas\",\"turbulence\"],\"creators\":[\"Schekochihin, Aa\",\"Cowley, Sc\",\"Taylor, Sf\",\"Maron, Jl\",\"Mcwilliams, Jc\"],\"publicationdate\":\"2004-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1086/422547\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:1ac48a14-3f5c-4753-8109-8f16615ba28c\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"id\":\"oai:arXiv.org:astro-ph/0312046\"},\"trust\":0.8427797}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:1ac48a14-3f5c-4753-8109-8f16615ba28c"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schekochihin, Aa","Cowley, Sc","Taylor, Sf","Maron, Jl","Mcwilliams, Jc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:astro-ph/0312046"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["magnetic fields","methods : numerical","MHD","plasmas","turbulence"]},"trust":{"type":"FLOAT","value":0.8427797},"target_publication_title":{"type":"STRING","value":"Simulations of the small-scale turbulent dynamo"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2004-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:1ac48a14-3f5c-4753-8109-8f16615ba28c\",\"titles\":[\"Simulations of the small-scale turbulent dynamo\"],\"abstracts\":[],\"language\":\"aar\",\"subjects\":[\"magnetic fields\",\"methods : numerical\",\"MHD\",\"plasmas\",\"turbulence\"],\"creators\":[\"Schekochihin, Aa\",\"Cowley, Sc\",\"Taylor, Sf\",\"Maron, Jl\",\"Mcwilliams, Jc\"],\"publicationdate\":\"2004-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1086/422547\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:1ac48a14-3f5c-4753-8109-8f16615ba28c\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"id\":\"oai:arXiv.org:astro-ph/0312046\"},\"trust\":0.8427797}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:1ac48a14-3f5c-4753-8109-8f16615ba28c"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schekochihin, Aa","Cowley, Sc","Taylor, Sf","Maron, Jl","Mcwilliams, Jc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:astro-ph/0312046"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["magnetic fields","methods : numerical","MHD","plasmas","turbulence"]},"trust":{"type":"FLOAT","value":0.8427797},"target_publication_title":{"type":"STRING","value":"Simulations of the small-scale turbulent dynamo"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2004-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:1ac48a14-3f5c-4753-8109-8f16615ba28c\",\"titles\":[\"Simulations of the small-scale turbulent dynamo\"],\"abstracts\":[\" We report an extensive numerical study of the small-scale turbulent dynamo at\\nlarge magnetic Prandtl numbers Pm. A Pm scan is given for the model case of\\nlow-Reynolds-number turbulence. We concentrate on three topics: magnetic-energy\\nspectra and saturation levels, the structure of the field lines, and the\\nfield-strength distribution. The main results are (1) the folded structure\\n(direction reversals at the resistive scale, field lines curved at the scale of\\nthe flow) persists from the kinematic to the nonlinear regime; (2) the field\\ndistribution is self-similar and appears to be lognormal during the kinematic\\nregime and exponential in the saturated state; and (3) the bulk of the magnetic\\nenergy is at the resistive scale in the kinematic regime and remains there\\nafter saturation, although the spectrum becomes much shallower. We propose an\\nanalytical model of saturation based on the idea of partial\\ntwo-dimensionalization of the velocity gradients with respect to the local\\ndirection of the magnetic folds. The model-predicted spectra are in excellent\\nagreement with numerical results. Comparisons with large-Re, moderate-Pm runs\\nare carried out to confirm the relevance of these results. New features at\\nlarge Re are elongation of the folds in the nonlinear regime from the viscous\\nscale to the box scale and the presence of an intermediate nonlinear stage of\\nslower-than-exponential magnetic-energy growth accompanied by an increase of\\nthe resistive scale and partial suppression of the kinetic-energy spectrum in\\nthe inertial range. Numerical results for the saturated state do not support\\nscale-by-scale equipartition between magnetic and kinetic energies, with a\\ndefinite excess of magnetic energy at small scales. A physical picture of the\\nsaturated state is proposed.\\n\",\"Comment: aastex using emulateapj; 32 pages, final published version; a pdf\\n file (4Mb) of the paper containing better-quality versions of figs. 5, 8, 12,\\n 15, 17 is available from http://www.damtp.cam.ac.uk/user/as629 or by email\\n upon request)\"],\"language\":\"aar\",\"subjects\":[\"magnetic fields\",\"methods : numerical\",\"MHD\",\"plasmas\",\"turbulence\"],\"creators\":[\"Schekochihin, Aa\",\"Cowley, Sc\",\"Taylor, Sf\",\"Maron, Jl\",\"Mcwilliams, Jc\"],\"publicationdate\":\"2004-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1086/422547\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:1ac48a14-3f5c-4753-8109-8f16615ba28c\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\" We report an extensive numerical study of the small-scale turbulent dynamo at\\nlarge magnetic Prandtl numbers Pm. A Pm scan is given for the model case of\\nlow-Reynolds-number turbulence. We concentrate on three topics: magnetic-energy\\nspectra and saturation levels, the structure of the field lines, and the\\nfield-strength distribution. The main results are (1) the folded structure\\n(direction reversals at the resistive scale, field lines curved at the scale of\\nthe flow) persists from the kinematic to the nonlinear regime; (2) the field\\ndistribution is self-similar and appears to be lognormal during the kinematic\\nregime and exponential in the saturated state; and (3) the bulk of the magnetic\\nenergy is at the resistive scale in the kinematic regime and remains there\\nafter saturation, although the spectrum becomes much shallower. We propose an\\nanalytical model of saturation based on the idea of partial\\ntwo-dimensionalization of the velocity gradients with respect to the local\\ndirection of the magnetic folds. The model-predicted spectra are in excellent\\nagreement with numerical results. Comparisons with large-Re, moderate-Pm runs\\nare carried out to confirm the relevance of these results. New features at\\nlarge Re are elongation of the folds in the nonlinear regime from the viscous\\nscale to the box scale and the presence of an intermediate nonlinear stage of\\nslower-than-exponential magnetic-energy growth accompanied by an increase of\\nthe resistive scale and partial suppression of the kinetic-energy spectrum in\\nthe inertial range. Numerical results for the saturated state do not support\\nscale-by-scale equipartition between magnetic and kinetic energies, with a\\ndefinite excess of magnetic energy at small scales. A physical picture of the\\nsaturated state is proposed.\\n\",\"Comment: aastex using emulateapj; 32 pages, final published version; a pdf\\n file (4Mb) of the paper containing better-quality versions of figs. 5, 8, 12,\\n 15, 17 is available from http://www.damtp.cam.ac.uk/user/as629 or by email\\n upon request)\"]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"id\":\"oai:arXiv.org:astro-ph/0312046\"},\"trust\":0.7927119}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:1ac48a14-3f5c-4753-8109-8f16615ba28c"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schekochihin, Aa","Cowley, Sc","Taylor, Sf","Maron, Jl","Mcwilliams, Jc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:astro-ph/0312046"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["magnetic fields","methods : numerical","MHD","plasmas","turbulence"]},"trust":{"type":"FLOAT","value":0.7927119},"target_publication_title":{"type":"STRING","value":"Simulations of the small-scale turbulent dynamo"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2004-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:1ac48a14-3f5c-4753-8109-8f16615ba28c\",\"titles\":[\"Simulations of the small-scale turbulent dynamo\"],\"abstracts\":[\"We report the results of an extensive numerical study of the small-scale turbulent dynamo. The primary focus is on the case of large magnetic Prandtl numbers Prm, which is relevant for hot low-density astrophysical plasmas. A Prm parameter scan is given for the model case of viscosity-dominated (low Reynolds number) turbulence. We concentrate on three topics: magnetic energy spectra and saturation levels, the structure of the magnetic field lines, and intermittency of the field strength distribution. The main results are as follows: (1) the folded structure of the field (direction reversals at the resistive scale, field lines curved at the scale of the flow) persists from the kinematic to the nonlinear regime; (2) the field distribution is self-similar and appears to be lognormal during the kinematic regime and exponential in the saturated state; and (3) the bulk of the magnetic energy is at the resistive scale in the kinematic regime and remains there after saturation, although the magnetic energy spectrum becomes much shallower. We propose an analytical model of saturation based on the idea of partial two-dimensionalization of the velocity gradients with respect to the local direction of the magnetic folds. The model-predicted saturated spectra are in excellent agreement with numerical results. Comparisons with large-Re, moderate-Prm runs are carried out to confirm the relevance of these results and to test heuristic scenarios of dynamo saturation. New features at large Re are elongation of the folds in the nonlinear regime from the viscous scale to the box scale and the presence of an intermediate nonlinear stage of slower than exponential magnetic energy growth accompanied by an increase of the resistive scale and partial suppression of the kinetic energy spectrum in the inertial range. Numerical results for the saturated state do not support scale-by-scale equipartition between magnetic and kinetic energies, with a definite excess of magnetic energy at small scales. A physical picture of the saturated state is proposed.\"],\"language\":\"aar\",\"subjects\":[\"magnetic fields\",\"methods : numerical\",\"MHD\",\"plasmas\",\"turbulence\"],\"creators\":[\"Schekochihin, Aa\",\"Cowley, Sc\",\"Taylor, Sf\",\"Maron, Jl\",\"Mcwilliams, Jc\"],\"publicationdate\":\"2004-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1086/422547\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:1ac48a14-3f5c-4753-8109-8f16615ba28c\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"We report the results of an extensive numerical study of the small-scale turbulent dynamo. The primary focus is on the case of large magnetic Prandtl numbers Prm, which is relevant for hot low-density astrophysical plasmas. A Prm parameter scan is given for the model case of viscosity-dominated (low Reynolds number) turbulence. We concentrate on three topics: magnetic energy spectra and saturation levels, the structure of the magnetic field lines, and intermittency of the field strength distribution. The main results are as follows: (1) the folded structure of the field (direction reversals at the resistive scale, field lines curved at the scale of the flow) persists from the kinematic to the nonlinear regime; (2) the field distribution is self-similar and appears to be lognormal during the kinematic regime and exponential in the saturated state; and (3) the bulk of the magnetic energy is at the resistive scale in the kinematic regime and remains there after saturation, although the magnetic energy spectrum becomes much shallower. We propose an analytical model of saturation based on the idea of partial two-dimensionalization of the velocity gradients with respect to the local direction of the magnetic folds. The model-predicted saturated spectra are in excellent agreement with numerical results. Comparisons with large-Re, moderate-Prm runs are carried out to confirm the relevance of these results and to test heuristic scenarios of dynamo saturation. New features at large Re are elongation of the folds in the nonlinear regime from the viscous scale to the box scale and the presence of an intermediate nonlinear stage of slower than exponential magnetic energy growth accompanied by an increase of the resistive scale and partial suppression of the kinetic energy spectrum in the inertial range. Numerical results for the saturated state do not support scale-by-scale equipartition between magnetic and kinetic energies, with a definite excess of magnetic energy at small scales. A physical picture of the saturated state is proposed.\"]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:9ee72a6b-32bf-42f1-a9e9-7f9c3317ee22\",\"id\":\"oai:ora.ox.ac.uk:uuid:9ee72a6b-32bf-42f1-a9e9-7f9c3317ee22\"},\"trust\":0.33843952}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:1ac48a14-3f5c-4753-8109-8f16615ba28c"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schekochihin, Aa","Cowley, Sc","Taylor, Sf","Maron, Jl","Mcwilliams, Jc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:9ee72a6b-32bf-42f1-a9e9-7f9c3317ee22"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"target_publication_subject_list":{"type":"LIST_STRING","value":["magnetic fields","methods : numerical","MHD","plasmas","turbulence"]},"trust":{"type":"FLOAT","value":0.33843952},"target_publication_title":{"type":"STRING","value":"Simulations of the small-scale turbulent dynamo"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2004-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:7ab60ec5-1b66-438a-8fc0-c9199d70851e\",\"titles\":[\"Simulations of small-scale turbulent dynamo\"],\"abstracts\":[\"We report an extensive numerical study of the small-scale turbulent dynamo at\\nlarge magnetic Prandtl numbers Pm. A Pm scan is given for the model case of\\nlow-Reynolds-number turbulence. We concentrate on three topics: magnetic-energy\\nspectra and saturation levels, the structure of the field lines, and the\\nfield-strength distribution. The main results are (1) the folded structure\\n(direction reversals at the resistive scale, field lines curved at the scale of\\nthe flow) persists from the kinematic to the nonlinear regime; (2) the field\\ndistribution is self-similar and appears to be lognormal during the kinematic\\nregime and exponential in the saturated state; and (3) the bulk of the magnetic\\nenergy is at the resistive scale in the kinematic regime and remains there\\nafter saturation, although the spectrum becomes much shallower. We propose an\\nanalytical model of saturation based on the idea of partial\\ntwo-dimensionalization of the velocity gradients with respect to the local\\ndirection of the magnetic folds. The model-predicted spectra are in excellent\\nagreement with numerical results. Comparisons with large-Re, moderate-Pm runs\\nare carried out to confirm the relevance of these results. New features at\\nlarge Re are elongation of the folds in the nonlinear regime from the viscous\\nscale to the box scale and the presence of an intermediate nonlinear stage of\\nslower-than-exponential magnetic-energy growth accompanied by an increase of\\nthe resistive scale and partial suppression of the kinetic-energy spectrum in\\nthe inertial range. Numerical results for the saturated state do not support\\nscale-by-scale equipartition between magnetic and kinetic energies, with a\\ndefinite excess of magnetic energy at small scales. A physical picture of the\\nsaturated state is proposed.\"],\"language\":\"und\",\"subjects\":[\"astro-ph\",\"astro-ph\"],\"creators\":[\"Schekochihin, Aa\",\"Cowley, Sc\",\"Taylor, Sf\",\"Maron, Jl\",\"Mcwilliams, Jc\"],\"publicationdate\":\"2003-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1086/422547\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:7ab60ec5-1b66-438a-8fc0-c9199d70851e\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"id\":\"oai:arXiv.org:astro-ph/0312046\"},\"trust\":0.11215991}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:7ab60ec5-1b66-438a-8fc0-c9199d70851e"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schekochihin, Aa","Cowley, Sc","Taylor, Sf","Maron, Jl","Mcwilliams, Jc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:astro-ph/0312046"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["astro-ph","astro-ph"]},"trust":{"type":"FLOAT","value":0.11215991},"target_publication_title":{"type":"STRING","value":"Simulations of small-scale turbulent dynamo"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2003-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:7ab60ec5-1b66-438a-8fc0-c9199d70851e\",\"titles\":[\"Simulations of small-scale turbulent dynamo\"],\"abstracts\":[\"We report an extensive numerical study of the small-scale turbulent dynamo at\\nlarge magnetic Prandtl numbers Pm. A Pm scan is given for the model case of\\nlow-Reynolds-number turbulence. We concentrate on three topics: magnetic-energy\\nspectra and saturation levels, the structure of the field lines, and the\\nfield-strength distribution. The main results are (1) the folded structure\\n(direction reversals at the resistive scale, field lines curved at the scale of\\nthe flow) persists from the kinematic to the nonlinear regime; (2) the field\\ndistribution is self-similar and appears to be lognormal during the kinematic\\nregime and exponential in the saturated state; and (3) the bulk of the magnetic\\nenergy is at the resistive scale in the kinematic regime and remains there\\nafter saturation, although the spectrum becomes much shallower. We propose an\\nanalytical model of saturation based on the idea of partial\\ntwo-dimensionalization of the velocity gradients with respect to the local\\ndirection of the magnetic folds. The model-predicted spectra are in excellent\\nagreement with numerical results. Comparisons with large-Re, moderate-Pm runs\\nare carried out to confirm the relevance of these results. New features at\\nlarge Re are elongation of the folds in the nonlinear regime from the viscous\\nscale to the box scale and the presence of an intermediate nonlinear stage of\\nslower-than-exponential magnetic-energy growth accompanied by an increase of\\nthe resistive scale and partial suppression of the kinetic-energy spectrum in\\nthe inertial range. Numerical results for the saturated state do not support\\nscale-by-scale equipartition between magnetic and kinetic energies, with a\\ndefinite excess of magnetic energy at small scales. A physical picture of the\\nsaturated state is proposed.\"],\"language\":\"und\",\"subjects\":[\"astro-ph\",\"astro-ph\"],\"creators\":[\"Schekochihin, Aa\",\"Cowley, Sc\",\"Taylor, Sf\",\"Maron, Jl\",\"Mcwilliams, Jc\"],\"publicationdate\":\"2003-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1086/422547\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:7ab60ec5-1b66-438a-8fc0-c9199d70851e\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"id\":\"oai:arXiv.org:astro-ph/0312046\"},\"trust\":0.11215991}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:7ab60ec5-1b66-438a-8fc0-c9199d70851e"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schekochihin, Aa","Cowley, Sc","Taylor, Sf","Maron, Jl","Mcwilliams, Jc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:astro-ph/0312046"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["astro-ph","astro-ph"]},"trust":{"type":"FLOAT","value":0.11215991},"target_publication_title":{"type":"STRING","value":"Simulations of small-scale turbulent dynamo"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2003-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:9ee72a6b-32bf-42f1-a9e9-7f9c3317ee22\",\"titles\":[\"Simulations of the small-scale turbulent dynamo\"],\"abstracts\":[\"We report the results of an extensive numerical study of the small-scale turbulent dynamo. The primary focus is on the case of large magnetic Prandtl numbers Prm, which is relevant for hot low-density astrophysical plasmas. A Prm parameter scan is given for the model case of viscosity-dominated (low Reynolds number) turbulence. We concentrate on three topics: magnetic energy spectra and saturation levels, the structure of the magnetic field lines, and intermittency of the field strength distribution. The main results are as follows: (1) the folded structure of the field (direction reversals at the resistive scale, field lines curved at the scale of the flow) persists from the kinematic to the nonlinear regime; (2) the field distribution is self-similar and appears to be lognormal during the kinematic regime and exponential in the saturated state; and (3) the bulk of the magnetic energy is at the resistive scale in the kinematic regime and remains there after saturation, although the magnetic energy spectrum becomes much shallower. We propose an analytical model of saturation based on the idea of partial two-dimensionalization of the velocity gradients with respect to the local direction of the magnetic folds. The model-predicted saturated spectra are in excellent agreement with numerical results. Comparisons with large-Re, moderate-Prm runs are carried out to confirm the relevance of these results and to test heuristic scenarios of dynamo saturation. New features at large Re are elongation of the folds in the nonlinear regime from the viscous scale to the box scale and the presence of an intermediate nonlinear stage of slower than exponential magnetic energy growth accompanied by an increase of the resistive scale and partial suppression of the kinetic energy spectrum in the inertial range. Numerical results for the saturated state do not support scale-by-scale equipartition between magnetic and kinetic energies, with a definite excess of magnetic energy at small scales. A physical picture of the saturated state is proposed.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Schekochihin, Aa\",\"Cowley, Sc\",\"Taylor, Sf\",\"Maron, Jl\",\"Mcwilliams, Jc\"],\"publicationdate\":\"2004-09-01\",\"publisher\":\"Institute of Physics Publishing\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1086/422547\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:9ee72a6b-32bf-42f1-a9e9-7f9c3317ee22\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"id\":\"oai:arXiv.org:astro-ph/0312046\"},\"trust\":0.97214794}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:9ee72a6b-32bf-42f1-a9e9-7f9c3317ee22"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schekochihin, Aa","Cowley, Sc","Taylor, Sf","Maron, Jl","Mcwilliams, Jc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:astro-ph/0312046"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.97214794},"target_publication_title":{"type":"STRING","value":"Simulations of the small-scale turbulent dynamo"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2004-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:9ee72a6b-32bf-42f1-a9e9-7f9c3317ee22\",\"titles\":[\"Simulations of the small-scale turbulent dynamo\"],\"abstracts\":[\"We report the results of an extensive numerical study of the small-scale turbulent dynamo. The primary focus is on the case of large magnetic Prandtl numbers Prm, which is relevant for hot low-density astrophysical plasmas. A Prm parameter scan is given for the model case of viscosity-dominated (low Reynolds number) turbulence. We concentrate on three topics: magnetic energy spectra and saturation levels, the structure of the magnetic field lines, and intermittency of the field strength distribution. The main results are as follows: (1) the folded structure of the field (direction reversals at the resistive scale, field lines curved at the scale of the flow) persists from the kinematic to the nonlinear regime; (2) the field distribution is self-similar and appears to be lognormal during the kinematic regime and exponential in the saturated state; and (3) the bulk of the magnetic energy is at the resistive scale in the kinematic regime and remains there after saturation, although the magnetic energy spectrum becomes much shallower. We propose an analytical model of saturation based on the idea of partial two-dimensionalization of the velocity gradients with respect to the local direction of the magnetic folds. The model-predicted saturated spectra are in excellent agreement with numerical results. Comparisons with large-Re, moderate-Prm runs are carried out to confirm the relevance of these results and to test heuristic scenarios of dynamo saturation. New features at large Re are elongation of the folds in the nonlinear regime from the viscous scale to the box scale and the presence of an intermediate nonlinear stage of slower than exponential magnetic energy growth accompanied by an increase of the resistive scale and partial suppression of the kinetic energy spectrum in the inertial range. Numerical results for the saturated state do not support scale-by-scale equipartition between magnetic and kinetic energies, with a definite excess of magnetic energy at small scales. A physical picture of the saturated state is proposed.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Schekochihin, Aa\",\"Cowley, Sc\",\"Taylor, Sf\",\"Maron, Jl\",\"Mcwilliams, Jc\"],\"publicationdate\":\"2004-09-01\",\"publisher\":\"Institute of Physics Publishing\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1086/422547\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:9ee72a6b-32bf-42f1-a9e9-7f9c3317ee22\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/astro-ph/0312046\",\"id\":\"oai:arXiv.org:astro-ph/0312046\"},\"trust\":0.97214794}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:9ee72a6b-32bf-42f1-a9e9-7f9c3317ee22"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schekochihin, Aa","Cowley, Sc","Taylor, Sf","Maron, Jl","Mcwilliams, Jc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:astro-ph/0312046"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"trust":{"type":"FLOAT","value":0.97214794},"target_publication_title":{"type":"STRING","value":"Simulations of the small-scale turbulent dynamo"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2004-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/120621\",\"titles\":[\"Migratory flows and their demographic and economic importance in the Romanian regions. An analysis with special reference to the North-East and South-East Regions\"],\"abstracts\":[\"The presentation intends to analyse population change in Romania after 1989 in a regional prospective. Absolute population change and the changes in the age structure as well as internal and international migrations are put into relation to the labour market changes. In the last two decades the Romanian regions experienced a decline of fertility and an increase in the share of the working age population. The share of the population 65 years and older is still relatively low. This demographic situation, combined with a weak labour market (low labour force demand) leads to various forms of underemployment of the active population and to high emigration. Romanians are the most numerous EU-immigrants to EU-27 Member States. The demographic and economic importance of these migration flows will be analysed and their mid- and long-term sustainability will be discussed. The demographic outlook for the future decades and the possible consequences for the labour force supply are based on the various scenarios and international and national population projections for Romania at regional level. The steep population decline projected in some of the scenarios could cause considerable challenges for the economic and social situation of the Romanian regions.\"],\"language\":\"eng\",\"subjects\":[\"ddc:330\"],\"creators\":[\"Pauna, Carmen Beatrice\",\"Heins, Frank\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"European Regional Science Association (ERSA) Louvain-la-Neuve\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/120621\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Conference object\"},{\"url\":\"http://www-sre.wu.ac.at/ersa/ersaconfs/ersa12/e120821aFinal00584.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www-sre.wu.ac.at/ersa/ersaconfs/ersa12/e120821aFinal00584.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www-sre.wu.ac.at/ersa/ersaconfs/ersa12/e120821aFinal00584.pdf\",\"id\":\"oai:RePEc:wiw:wiwrsa:ersa12p582\"},\"trust\":0.6830294}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/120621"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pauna, Carmen Beatrice","Heins, Frank"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wiw:wiwrsa:ersa12p582"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ddc:330"]},"trust":{"type":"FLOAT","value":0.6830294},"target_publication_title":{"type":"STRING","value":"Migratory flows and their demographic and economic importance in the Romanian regions. An analysis with special reference to the North-East and South-East Regions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:wiw:wiwrsa:ersa12p582\",\"titles\":[\"Migratory flows and their demographic and economic importance in the Romanian regions. An analysis with special reference to the North-East and South-East Regions\"],\"abstracts\":[\"The presentation intends to analyse population change in Romania after 1989 in a regional prospective. Absolute population change and the changes in the age structure as well as internal and international migrations are put into relation to the labour market changes. In the last two decades the Romanian regions experienced a decline of fertility and an increase in the share of the working age population. The share of the population 65 years and older is still relatively low. This demographic situation, combined with a weak labour market (low labour force demand) leads to various forms of underemployment of the active population and to high emigration. Romanians are the most numerous EU-immigrants to EU-27 Member States. The demographic and economic importance of these migration flows will be analysed and their mid- and long-term sustainability will be discussed. The demographic outlook for the future decades and the possible consequences for the labour force supply are based on the various scenarios and international and national population projections for Romania at regional level. The steep population decline projected in some of the scenarios could cause considerable challenges for the economic and social situation of the Romanian regions.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Carmen Beatrice Pauna\",\"Frank Heins\"],\"publicationdate\":\"2012-10-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www-sre.wu.ac.at/ersa/ersaconfs/ersa12/e120821aFinal00584.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/120621\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/120621\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/120621\",\"id\":\"oai:econstor.eu:10419/120621\"},\"trust\":0.35145456}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:wiw:wiwrsa:ersa12p582"},"target_publication_author_list":{"type":"LIST_STRING","value":["Carmen Beatrice Pauna","Frank Heins"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/120621"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"trust":{"type":"FLOAT","value":0.35145456},"target_publication_title":{"type":"STRING","value":"Migratory flows and their demographic and economic importance in the Romanian regions. An analysis with special reference to the North-East and South-East Regions"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2012-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00817830\",\"titles\":[\"De la lettre à la littérature : un trajet saussurien\"],\"abstracts\":[\"Comment Saussure conçoit-il la littérature? On examine le sort qui est réservé à la littérature dans les travaux proprement linguistiques de Saussure, dans sa recherche sémiologique sur la légende germanique et dans la recherche sur les anagrammes dans les textes indo-européens.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences\",\"[SHS:HISPHILSO] Sciences de l\\u0027Homme et Société/Histoire, Philosophie et Sociologie des sciences\",\"[SHS:LANGUE] Humanities and Social Sciences/Linguistics\",\"[SHS:LANGUE] Sciences de l\\u0027Homme et Société/Linguistique\",\"littérature\",\"lettre\",\"légende\",\"anagramme\",\"sémiologie\"],\"creators\":[\"Arrivé, Michel\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00723348\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00723348\"},\"trust\":0.9523894}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00817830"},"target_publication_author_list":{"type":"LIST_STRING","value":["Arrivé, Michel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00723348"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences","[SHS:HISPHILSO] Sciences de l\u0027Homme et Société/Histoire, Philosophie et Sociologie des sciences","[SHS:LANGUE] Humanities and Social Sciences/Linguistics","[SHS:LANGUE] Sciences de l\u0027Homme et Société/Linguistique","littérature","lettre","légende","anagramme","sémiologie"]},"trust":{"type":"FLOAT","value":0.9523894},"target_publication_title":{"type":"STRING","value":"De la lettre à la littérature : un trajet saussurien"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00817830\",\"titles\":[\"De la lettre à la littérature : un trajet saussurien\"],\"abstracts\":[\"Comment Saussure conçoit-il la littérature? On examine le sort qui est réservé à la littérature dans les travaux proprement linguistiques de Saussure, dans sa recherche sémiologique sur la légende germanique et dans la recherche sur les anagrammes dans les textes indo-européens.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences\",\"[SHS:HISPHILSO] Sciences de l\\u0027Homme et Société/Histoire, Philosophie et Sociologie des sciences\",\"[SHS:LANGUE] Humanities and Social Sciences/Linguistics\",\"[SHS:LANGUE] Sciences de l\\u0027Homme et Société/Linguistique\",\"littérature\",\"lettre\",\"légende\",\"anagramme\",\"sémiologie\"],\"creators\":[\"Arrivé, Michel\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00723348\",\"id\":\"oai:HAL:halshs-00723348v1\"},\"trust\":0.8182897}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00817830"},"target_publication_author_list":{"type":"LIST_STRING","value":["Arrivé, Michel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00723348v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences","[SHS:HISPHILSO] Sciences de l\u0027Homme et Société/Histoire, Philosophie et Sociologie des sciences","[SHS:LANGUE] Humanities and Social Sciences/Linguistics","[SHS:LANGUE] Sciences de l\u0027Homme et Société/Linguistique","littérature","lettre","légende","anagramme","sémiologie"]},"trust":{"type":"FLOAT","value":0.8182897},"target_publication_title":{"type":"STRING","value":"De la lettre à la littérature : un trajet saussurien"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00817830\",\"titles\":[\"De la lettre à la littérature : un trajet saussurien\"],\"abstracts\":[\"Comment Saussure conçoit-il la littérature? On examine le sort qui est réservé à la littérature dans les travaux proprement linguistiques de Saussure, dans sa recherche sémiologique sur la légende germanique et dans la recherche sur les anagrammes dans les textes indo-européens.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences\",\"[SHS:HISPHILSO] Sciences de l\\u0027Homme et Société/Histoire, Philosophie et Sociologie des sciences\",\"[SHS:LANGUE] Humanities and Social Sciences/Linguistics\",\"[SHS:LANGUE] Sciences de l\\u0027Homme et Société/Linguistique\",\"littérature\",\"lettre\",\"légende\",\"anagramme\",\"sémiologie\"],\"creators\":[\"Arrivé, Michel\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00817830\",\"id\":\"oai:HAL:halshs-00817830v1\"},\"trust\":0.325096}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00817830"},"target_publication_author_list":{"type":"LIST_STRING","value":["Arrivé, Michel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00817830v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences","[SHS:HISPHILSO] Sciences de l\u0027Homme et Société/Histoire, Philosophie et Sociologie des sciences","[SHS:LANGUE] Humanities and Social Sciences/Linguistics","[SHS:LANGUE] Sciences de l\u0027Homme et Société/Linguistique","littérature","lettre","légende","anagramme","sémiologie"]},"trust":{"type":"FLOAT","value":0.325096},"target_publication_title":{"type":"STRING","value":"De la lettre à la littérature : un trajet saussurien"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00723348\",\"titles\":[\"De la lettre à la littérature: un trajet saussurien\"],\"abstracts\":[\"Études des relations entre les notions de Lettre et de Littérature dans les travaux linguistiques, sémiologiques et anagrammatiques de Ferdinand de Saussure.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:LANGUE] Humanities and Social Sciences/Linguistics\",\"[SHS:LANGUE] Sciences de l\\u0027Homme et Société/Linguistique\",\"Lettre\",\"littérature\",\"anagramme\",\"sémiologie\"],\"creators\":[\"Arrivé, Michel\"],\"publicationdate\":\"2012-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00817830\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00817830\"},\"trust\":0.46535885}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00723348"},"target_publication_author_list":{"type":"LIST_STRING","value":["Arrivé, Michel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00817830"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:LANGUE] Humanities and Social Sciences/Linguistics","[SHS:LANGUE] Sciences de l\u0027Homme et Société/Linguistique","Lettre","littérature","anagramme","sémiologie"]},"trust":{"type":"FLOAT","value":0.46535885},"target_publication_title":{"type":"STRING","value":"De la lettre à la littérature: un trajet saussurien"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00723348\",\"titles\":[\"De la lettre à la littérature: un trajet saussurien\"],\"abstracts\":[\"Études des relations entre les notions de Lettre et de Littérature dans les travaux linguistiques, sémiologiques et anagrammatiques de Ferdinand de Saussure.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:LANGUE] Humanities and Social Sciences/Linguistics\",\"[SHS:LANGUE] Sciences de l\\u0027Homme et Société/Linguistique\",\"Lettre\",\"littérature\",\"anagramme\",\"sémiologie\"],\"creators\":[\"Arrivé, Michel\"],\"publicationdate\":\"2012-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00723348\",\"id\":\"oai:HAL:halshs-00723348v1\"},\"trust\":0.94235474}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00723348"},"target_publication_author_list":{"type":"LIST_STRING","value":["Arrivé, Michel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00723348v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:LANGUE] Humanities and Social Sciences/Linguistics","[SHS:LANGUE] Sciences de l\u0027Homme et Société/Linguistique","Lettre","littérature","anagramme","sémiologie"]},"trust":{"type":"FLOAT","value":0.94235474},"target_publication_title":{"type":"STRING","value":"De la lettre à la littérature: un trajet saussurien"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00723348\",\"titles\":[\"De la lettre à la littérature: un trajet saussurien\"],\"abstracts\":[\"Études des relations entre les notions de Lettre et de Littérature dans les travaux linguistiques, sémiologiques et anagrammatiques de Ferdinand de Saussure.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:LANGUE] Humanities and Social Sciences/Linguistics\",\"[SHS:LANGUE] Sciences de l\\u0027Homme et Société/Linguistique\",\"Lettre\",\"littérature\",\"anagramme\",\"sémiologie\"],\"creators\":[\"Arrivé, Michel\"],\"publicationdate\":\"2012-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00817830\",\"id\":\"oai:HAL:halshs-00817830v1\"},\"trust\":0.5400478}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00723348"},"target_publication_author_list":{"type":"LIST_STRING","value":["Arrivé, Michel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00817830v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:LANGUE] Humanities and Social Sciences/Linguistics","[SHS:LANGUE] Sciences de l\u0027Homme et Société/Linguistique","Lettre","littérature","anagramme","sémiologie"]},"trust":{"type":"FLOAT","value":0.5400478},"target_publication_title":{"type":"STRING","value":"De la lettre à la littérature: un trajet saussurien"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00723348v1\",\"titles\":[\"De la lettre à la littérature: un trajet saussurien\"],\"abstracts\":[\"Description of the relationship between letter and literature in the thought of Ferdinand de Saussure.\",\"Études des relations entre les notions de Lettre et de Littérature dans les travaux linguistiques, sémiologiques et anagrammatiques de Ferdinand de Saussure.\"],\"language\":\"fra/fre\",\"subjects\":[\"Lettre\",\"littérature\",\"anagramme\",\"sémiologie\",\"[SHS.LANGUE] Humanities and Social Sciences/Linguistics\"],\"creators\":[\"Arrivé, Michel\"],\"publicationdate\":\"2011-03-04\",\"publisher\":\"Presses de l\\u0027Université de Pau\",\"embargoenddate\":\"\",\"contributor\":[\"Modèles, Dynamiques, Corpus (MoDyCo) ; Université Paris X - Paris Ouest Nanterre La Défense - CNRS\",\"Bedouret, Sandrine; Prignitz, Gisèle.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00817830\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00817830\"},\"trust\":0.07570982}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00723348v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Arrivé, Michel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00817830"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Lettre","littérature","anagramme","sémiologie","[SHS.LANGUE] Humanities and Social Sciences/Linguistics"]},"trust":{"type":"FLOAT","value":0.07570982},"target_publication_title":{"type":"STRING","value":"De la lettre à la littérature: un trajet saussurien"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-03-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00723348v1\",\"titles\":[\"De la lettre à la littérature: un trajet saussurien\"],\"abstracts\":[\"Description of the relationship between letter and literature in the thought of Ferdinand de Saussure.\",\"Études des relations entre les notions de Lettre et de Littérature dans les travaux linguistiques, sémiologiques et anagrammatiques de Ferdinand de Saussure.\"],\"language\":\"fra/fre\",\"subjects\":[\"Lettre\",\"littérature\",\"anagramme\",\"sémiologie\",\"[SHS.LANGUE] Humanities and Social Sciences/Linguistics\"],\"creators\":[\"Arrivé, Michel\"],\"publicationdate\":\"2011-03-04\",\"publisher\":\"Presses de l\\u0027Université de Pau\",\"embargoenddate\":\"\",\"contributor\":[\"Modèles, Dynamiques, Corpus (MoDyCo) ; Université Paris X - Paris Ouest Nanterre La Défense - CNRS\",\"Bedouret, Sandrine; Prignitz, Gisèle.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00723348\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00723348\"},\"trust\":0.29232436}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00723348v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Arrivé, Michel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00723348"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Lettre","littérature","anagramme","sémiologie","[SHS.LANGUE] Humanities and Social Sciences/Linguistics"]},"trust":{"type":"FLOAT","value":0.29232436},"target_publication_title":{"type":"STRING","value":"De la lettre à la littérature: un trajet saussurien"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-03-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00723348v1\",\"titles\":[\"De la lettre à la littérature: un trajet saussurien\"],\"abstracts\":[\"Description of the relationship between letter and literature in the thought of Ferdinand de Saussure.\",\"Études des relations entre les notions de Lettre et de Littérature dans les travaux linguistiques, sémiologiques et anagrammatiques de Ferdinand de Saussure.\"],\"language\":\"fra/fre\",\"subjects\":[\"Lettre\",\"littérature\",\"anagramme\",\"sémiologie\",\"[SHS.LANGUE] Humanities and Social Sciences/Linguistics\"],\"creators\":[\"Arrivé, Michel\"],\"publicationdate\":\"2011-03-04\",\"publisher\":\"Presses de l\\u0027Université de Pau\",\"embargoenddate\":\"\",\"contributor\":[\"Modèles, Dynamiques, Corpus (MoDyCo) ; Université Paris X - Paris Ouest Nanterre La Défense - CNRS\",\"Bedouret, Sandrine; Prignitz, Gisèle.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00817830\",\"id\":\"oai:HAL:halshs-00817830v1\"},\"trust\":0.49207234}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00723348v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Arrivé, Michel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00817830v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Lettre","littérature","anagramme","sémiologie","[SHS.LANGUE] Humanities and Social Sciences/Linguistics"]},"trust":{"type":"FLOAT","value":0.49207234},"target_publication_title":{"type":"STRING","value":"De la lettre à la littérature: un trajet saussurien"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-03-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00817830v1\",\"titles\":[\"De la lettre à la littérature : un trajet saussurien\"],\"abstracts\":[\"The Saussure\\u0027s reflexion on the literature in 1. the Cours de linguistique générale; 2. The semiological research on the germanic legend; 3. The research on the anagrammatical structure of some indo-european textes.\",\"Comment Saussure conçoit-il la littérature? On examine le sort qui est réservé à la littérature dans les travaux proprement linguistiques de Saussure, dans sa recherche sémiologique sur la légende germanique et dans la recherche sur les anagrammes dans les textes indo-européens.\"],\"language\":\"fra/fre\",\"subjects\":[\"literature\",\"letter\",\"legend\",\"anagrammatism\",\"semiology\",\"[SHS.HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences\",\"[SHS.LANGUE] Humanities and Social Sciences/Linguistics\"],\"creators\":[\"Arrivé, Michel\"],\"publicationdate\":\"2011-03-04\",\"publisher\":\"Presses de l\\u0027Université de Pau et des pays de l\\u0027Adour\",\"embargoenddate\":\"\",\"contributor\":[\"Modèles, Dynamiques, Corpus (MoDyCo) ; Université Paris X - Paris Ouest Nanterre La Défense - CNRS\",\"Sandrine Bedouret et Gisèle Prignitz\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00817830\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00817830\"},\"trust\":0.52386165}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00817830v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Arrivé, Michel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00817830"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["literature","letter","legend","anagrammatism","semiology","[SHS.HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences","[SHS.LANGUE] Humanities and Social Sciences/Linguistics"]},"trust":{"type":"FLOAT","value":0.52386165},"target_publication_title":{"type":"STRING","value":"De la lettre à la littérature : un trajet saussurien"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-03-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00817830v1\",\"titles\":[\"De la lettre à la littérature : un trajet saussurien\"],\"abstracts\":[\"The Saussure\\u0027s reflexion on the literature in 1. the Cours de linguistique générale; 2. The semiological research on the germanic legend; 3. The research on the anagrammatical structure of some indo-european textes.\",\"Comment Saussure conçoit-il la littérature? On examine le sort qui est réservé à la littérature dans les travaux proprement linguistiques de Saussure, dans sa recherche sémiologique sur la légende germanique et dans la recherche sur les anagrammes dans les textes indo-européens.\"],\"language\":\"fra/fre\",\"subjects\":[\"literature\",\"letter\",\"legend\",\"anagrammatism\",\"semiology\",\"[SHS.HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences\",\"[SHS.LANGUE] Humanities and Social Sciences/Linguistics\"],\"creators\":[\"Arrivé, Michel\"],\"publicationdate\":\"2011-03-04\",\"publisher\":\"Presses de l\\u0027Université de Pau et des pays de l\\u0027Adour\",\"embargoenddate\":\"\",\"contributor\":[\"Modèles, Dynamiques, Corpus (MoDyCo) ; Université Paris X - Paris Ouest Nanterre La Défense - CNRS\",\"Sandrine Bedouret et Gisèle Prignitz\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00723348\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00723348\"},\"trust\":0.21877676}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00817830v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Arrivé, Michel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00723348"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["literature","letter","legend","anagrammatism","semiology","[SHS.HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences","[SHS.LANGUE] Humanities and Social Sciences/Linguistics"]},"trust":{"type":"FLOAT","value":0.21877676},"target_publication_title":{"type":"STRING","value":"De la lettre à la littérature : un trajet saussurien"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-03-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00817830v1\",\"titles\":[\"De la lettre à la littérature : un trajet saussurien\"],\"abstracts\":[\"The Saussure\\u0027s reflexion on the literature in 1. the Cours de linguistique générale; 2. The semiological research on the germanic legend; 3. The research on the anagrammatical structure of some indo-european textes.\",\"Comment Saussure conçoit-il la littérature? On examine le sort qui est réservé à la littérature dans les travaux proprement linguistiques de Saussure, dans sa recherche sémiologique sur la légende germanique et dans la recherche sur les anagrammes dans les textes indo-européens.\"],\"language\":\"fra/fre\",\"subjects\":[\"literature\",\"letter\",\"legend\",\"anagrammatism\",\"semiology\",\"[SHS.HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences\",\"[SHS.LANGUE] Humanities and Social Sciences/Linguistics\"],\"creators\":[\"Arrivé, Michel\"],\"publicationdate\":\"2011-03-04\",\"publisher\":\"Presses de l\\u0027Université de Pau et des pays de l\\u0027Adour\",\"embargoenddate\":\"\",\"contributor\":[\"Modèles, Dynamiques, Corpus (MoDyCo) ; Université Paris X - Paris Ouest Nanterre La Défense - CNRS\",\"Sandrine Bedouret et Gisèle Prignitz\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00817830\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00723348\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00723348\",\"id\":\"oai:HAL:halshs-00723348v1\"},\"trust\":0.397375}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00817830v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Arrivé, Michel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00723348v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["literature","letter","legend","anagrammatism","semiology","[SHS.HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences","[SHS.LANGUE] Humanities and Social Sciences/Linguistics"]},"trust":{"type":"FLOAT","value":0.397375},"target_publication_title":{"type":"STRING","value":"De la lettre à la littérature : un trajet saussurien"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-03-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:iie:ppress:pa76\",\"titles\":[\"Shape of a Swiss-US Free Trade Agreement, The\"],\"abstracts\":[\"At first sight, a free trade agreement (FTA) between Switzerland and the United States seems implausible, but this important new study concludes that an FTA between the two countries would be highly worthwhile to both. As leading advocates of market capitalism, Switzerland and the United States are well situated to conclude an FTA that breaks new ground in dismantling barriers. The study finds that the annual GDP gains to each partner from expanded trade could be on the order of $1.1 billion.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Gary Clyde Hufbauer\",\"Baldwin, Richard E.\"],\"publicationdate\":\"\",\"publisher\":\"Peterson Institute for International Economics\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://bookstore.piie.com/book-store/3853.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"},{\"url\":\"http://bookstore.piie.com/book-store/3853.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://bookstore.piie.com/book-store/3853.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://bookstore.piie.com/book-store/3853.html\",\"id\":\"oai:RePEc:iie:piiepa:pa76\"},\"trust\":0.85994315}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:iie:ppress:pa76"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gary Clyde Hufbauer","Baldwin, Richard E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:iie:piiepa:pa76"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.85994315},"target_publication_title":{"type":"STRING","value":"Shape of a Swiss-US Free Trade Agreement, The"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:iie:piiepa:pa76\",\"titles\":[\"Shape of a Swiss-US Free Trade Agreement, The\"],\"abstracts\":[\"At first sight, a free trade agreement (FTA) between Switzerland and the United States seems implausible, but this important new study concludes that an FTA between the two countries would be highly worthwhile to both. As leading advocates of market capitalism, Switzerland and the United States are well situated to conclude an FTA that breaks new ground in dismantling barriers. The study finds that the annual GDP gains to each partner from expanded trade could be on the order of $1.1 billion.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Gary Clyde Hufbauer\",\"Baldwin, Richard E.\"],\"publicationdate\":\"\",\"publisher\":\"Peterson Institute for International Economics\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://bookstore.piie.com/book-store/3853.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"},{\"url\":\"http://bookstore.piie.com/book-store/3853.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://bookstore.piie.com/book-store/3853.html\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://bookstore.piie.com/book-store/3853.html\",\"id\":\"oai:RePEc:iie:ppress:pa76\"},\"trust\":0.1012944}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:iie:piiepa:pa76"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gary Clyde Hufbauer","Baldwin, Richard E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:iie:ppress:pa76"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.1012944},"target_publication_title":{"type":"STRING","value":"Shape of a Swiss-US Free Trade Agreement, The"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/40300\",\"titles\":[\"Continuacion y suplemento del Prontuario de Don Severo Aguirre\"],\"abstracts\":[\"Obra perteneciente al Fondo Antiguo de la Biblioteca de la USAL\"],\"language\":\"esl/spa\",\"subjects\":[\"Derecho -- España -- Legislación -- Siglo 18o\"],\"creators\":[\"Garriga, Josep\"],\"publicationdate\":\"1806-01-01\",\"publisher\":\"Repullés, Mateo\",\"embargoenddate\":\"\",\"contributor\":[\"Carlos IV, Rey de España\",\"Aguirre, Severo\",\"España. Rey (1788-1808: Carlos IV)\",\"España. Leyes, etc.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/40300\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"},{\"url\":\"http://hdl.handle.net/10366/46372\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46372\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/46372\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/46372\"},\"trust\":0.979677}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/40300"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garriga, Josep"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/46372"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Derecho -- España -- Legislación -- Siglo 18o"]},"trust":{"type":"FLOAT","value":0.979677},"target_publication_title":{"type":"STRING","value":"Continuacion y suplemento del Prontuario de Don Severo Aguirre"},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"1806-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/40300\",\"titles\":[\"Continuacion y suplemento del Prontuario de Don Severo Aguirre\"],\"abstracts\":[\"Obra perteneciente al Fondo Antiguo de la Biblioteca de la USAL\"],\"language\":\"esl/spa\",\"subjects\":[\"Derecho -- España -- Legislación -- Siglo 18o\"],\"creators\":[\"Garriga, Josep\"],\"publicationdate\":\"1806-01-01\",\"publisher\":\"Repullés, Mateo\",\"embargoenddate\":\"\",\"contributor\":[\"Carlos IV, Rey de España\",\"Aguirre, Severo\",\"España. Rey (1788-1808: Carlos IV)\",\"España. Leyes, etc.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/40300\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"},{\"url\":\"http://hdl.handle.net/10366/46370\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46370\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/46370\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/46370\"},\"trust\":0.9072799}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/40300"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garriga, Josep"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/46370"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Derecho -- España -- Legislación -- Siglo 18o"]},"trust":{"type":"FLOAT","value":0.9072799},"target_publication_title":{"type":"STRING","value":"Continuacion y suplemento del Prontuario de Don Severo Aguirre"},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"1806-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/40300\",\"titles\":[\"Continuacion y suplemento del Prontuario de Don Severo Aguirre\"],\"abstracts\":[\"Obra perteneciente al Fondo Antiguo de la Biblioteca de la USAL\"],\"language\":\"esl/spa\",\"subjects\":[\"Derecho -- España -- Legislación -- Siglo 18o\"],\"creators\":[\"Garriga, Josep\"],\"publicationdate\":\"1806-01-01\",\"publisher\":\"Repullés, Mateo\",\"embargoenddate\":\"\",\"contributor\":[\"Carlos IV, Rey de España\",\"Aguirre, Severo\",\"España. Rey (1788-1808: Carlos IV)\",\"España. Leyes, etc.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/40300\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"},{\"url\":\"http://hdl.handle.net/10366/46371\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46371\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/46371\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/46371\"},\"trust\":0.83814895}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/40300"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garriga, Josep"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/46371"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Derecho -- España -- Legislación -- Siglo 18o"]},"trust":{"type":"FLOAT","value":0.83814895},"target_publication_title":{"type":"STRING","value":"Continuacion y suplemento del Prontuario de Don Severo Aguirre"},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"1806-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/46372\",\"titles\":[\"Continuacion y suplemento del Prontuario de Don Severo Aguirre\"],\"abstracts\":[\"Obra perteneciente al Fondo Antiguo de la Biblioteca de la USAL\"],\"language\":\"esl/spa\",\"subjects\":[\"Derecho -- España -- Legislación -- Siglo 18o\"],\"creators\":[\"Garriga, Josep\"],\"publicationdate\":\"1803-01-01\",\"publisher\":\"Ruiz, Ramón\",\"embargoenddate\":\"\",\"contributor\":[\"Carlos IV, Rey de España\",\"Aguirre, Severo\",\"España. Rey (1788-1808: Carlos IV)\",\"España. Leyes, etc.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46372\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"},{\"url\":\"http://hdl.handle.net/10366/40300\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/40300\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/40300\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/40300\"},\"trust\":0.006717503}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/46372"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garriga, Josep"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/40300"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Derecho -- España -- Legislación -- Siglo 18o"]},"trust":{"type":"FLOAT","value":0.006717503},"target_publication_title":{"type":"STRING","value":"Continuacion y suplemento del Prontuario de Don Severo Aguirre"},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"1803-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/46372\",\"titles\":[\"Continuacion y suplemento del Prontuario de Don Severo Aguirre\"],\"abstracts\":[\"Obra perteneciente al Fondo Antiguo de la Biblioteca de la USAL\"],\"language\":\"esl/spa\",\"subjects\":[\"Derecho -- España -- Legislación -- Siglo 18o\"],\"creators\":[\"Garriga, Josep\"],\"publicationdate\":\"1803-01-01\",\"publisher\":\"Ruiz, Ramón\",\"embargoenddate\":\"\",\"contributor\":[\"Carlos IV, Rey de España\",\"Aguirre, Severo\",\"España. Rey (1788-1808: Carlos IV)\",\"España. Leyes, etc.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46372\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"},{\"url\":\"http://hdl.handle.net/10366/46370\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46370\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/46370\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/46370\"},\"trust\":0.94335294}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/46372"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garriga, Josep"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/46370"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Derecho -- España -- Legislación -- Siglo 18o"]},"trust":{"type":"FLOAT","value":0.94335294},"target_publication_title":{"type":"STRING","value":"Continuacion y suplemento del Prontuario de Don Severo Aguirre"},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"1803-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/46372\",\"titles\":[\"Continuacion y suplemento del Prontuario de Don Severo Aguirre\"],\"abstracts\":[\"Obra perteneciente al Fondo Antiguo de la Biblioteca de la USAL\"],\"language\":\"esl/spa\",\"subjects\":[\"Derecho -- España -- Legislación -- Siglo 18o\"],\"creators\":[\"Garriga, Josep\"],\"publicationdate\":\"1803-01-01\",\"publisher\":\"Ruiz, Ramón\",\"embargoenddate\":\"\",\"contributor\":[\"Carlos IV, Rey de España\",\"Aguirre, Severo\",\"España. Rey (1788-1808: Carlos IV)\",\"España. Leyes, etc.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46372\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"},{\"url\":\"http://hdl.handle.net/10366/46371\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46371\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/46371\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/46371\"},\"trust\":0.2672187}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/46372"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garriga, Josep"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/46371"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Derecho -- España -- Legislación -- Siglo 18o"]},"trust":{"type":"FLOAT","value":0.2672187},"target_publication_title":{"type":"STRING","value":"Continuacion y suplemento del Prontuario de Don Severo Aguirre"},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"1803-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/46370\",\"titles\":[\"Continuacion y suplemento del Prontuario de Don Severo Aguirre\"],\"abstracts\":[\"Obra perteneciente al Fondo Antiguo de la Biblioteca de la USAL\"],\"language\":\"esl/spa\",\"subjects\":[\"Derecho -- España -- Legislación -- Siglo 18o -- Obras anteriores a 1800\"],\"creators\":[\"Garriga, Josep\"],\"publicationdate\":\"1800-01-01\",\"publisher\":\"Marín, Pedro, Viuda e Hijo de\",\"embargoenddate\":\"\",\"contributor\":[\"Carlos IV, Rey de España\",\"Aguirre, Severo\",\"España. Rey (1788-1808: Carlos IV)\",\"España. Leyes, etc.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46370\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"},{\"url\":\"http://hdl.handle.net/10366/40300\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/40300\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/40300\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/40300\"},\"trust\":0.46434993}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/46370"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garriga, Josep"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/40300"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Derecho -- España -- Legislación -- Siglo 18o -- Obras anteriores a 1800"]},"trust":{"type":"FLOAT","value":0.46434993},"target_publication_title":{"type":"STRING","value":"Continuacion y suplemento del Prontuario de Don Severo Aguirre"},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"1800-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/46370\",\"titles\":[\"Continuacion y suplemento del Prontuario de Don Severo Aguirre\"],\"abstracts\":[\"Obra perteneciente al Fondo Antiguo de la Biblioteca de la USAL\"],\"language\":\"esl/spa\",\"subjects\":[\"Derecho -- España -- Legislación -- Siglo 18o -- Obras anteriores a 1800\"],\"creators\":[\"Garriga, Josep\"],\"publicationdate\":\"1800-01-01\",\"publisher\":\"Marín, Pedro, Viuda e Hijo de\",\"embargoenddate\":\"\",\"contributor\":[\"Carlos IV, Rey de España\",\"Aguirre, Severo\",\"España. Rey (1788-1808: Carlos IV)\",\"España. Leyes, etc.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46370\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"},{\"url\":\"http://hdl.handle.net/10366/46372\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46372\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/46372\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/46372\"},\"trust\":0.7112769}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/46370"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garriga, Josep"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/46372"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Derecho -- España -- Legislación -- Siglo 18o -- Obras anteriores a 1800"]},"trust":{"type":"FLOAT","value":0.7112769},"target_publication_title":{"type":"STRING","value":"Continuacion y suplemento del Prontuario de Don Severo Aguirre"},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"1800-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/46370\",\"titles\":[\"Continuacion y suplemento del Prontuario de Don Severo Aguirre\"],\"abstracts\":[\"Obra perteneciente al Fondo Antiguo de la Biblioteca de la USAL\"],\"language\":\"esl/spa\",\"subjects\":[\"Derecho -- España -- Legislación -- Siglo 18o -- Obras anteriores a 1800\"],\"creators\":[\"Garriga, Josep\"],\"publicationdate\":\"1800-01-01\",\"publisher\":\"Marín, Pedro, Viuda e Hijo de\",\"embargoenddate\":\"\",\"contributor\":[\"Carlos IV, Rey de España\",\"Aguirre, Severo\",\"España. Rey (1788-1808: Carlos IV)\",\"España. Leyes, etc.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46370\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"},{\"url\":\"http://hdl.handle.net/10366/46371\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46371\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/46371\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/46371\"},\"trust\":0.5410617}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/46370"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garriga, Josep"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/46371"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Derecho -- España -- Legislación -- Siglo 18o -- Obras anteriores a 1800"]},"trust":{"type":"FLOAT","value":0.5410617},"target_publication_title":{"type":"STRING","value":"Continuacion y suplemento del Prontuario de Don Severo Aguirre"},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"1800-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/46371\",\"titles\":[\"Continuacion y suplemento del Prontuario de Don Severo Aguirre\"],\"abstracts\":[\"Obra perteneciente al Fondo Antiguo de la Biblioteca de la USAL\"],\"language\":\"esl/spa\",\"subjects\":[\"Derecho -- España -- Legislación -- Siglo 18o\"],\"creators\":[\"Garriga, Josep\"],\"publicationdate\":\"1801-01-01\",\"publisher\":\"Marín, Pedro, Viuda e Hijo de\",\"embargoenddate\":\"\",\"contributor\":[\"Carlos IV, Rey de España\",\"Aguirre, Severo\",\"España. Rey (1788-1808: Carlos IV)\",\"España. Leyes, etc.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46371\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"},{\"url\":\"http://hdl.handle.net/10366/40300\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/40300\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/40300\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/40300\"},\"trust\":0.08661908}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/46371"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garriga, Josep"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/40300"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Derecho -- España -- Legislación -- Siglo 18o"]},"trust":{"type":"FLOAT","value":0.08661908},"target_publication_title":{"type":"STRING","value":"Continuacion y suplemento del Prontuario de Don Severo Aguirre"},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"1801-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/46371\",\"titles\":[\"Continuacion y suplemento del Prontuario de Don Severo Aguirre\"],\"abstracts\":[\"Obra perteneciente al Fondo Antiguo de la Biblioteca de la USAL\"],\"language\":\"esl/spa\",\"subjects\":[\"Derecho -- España -- Legislación -- Siglo 18o\"],\"creators\":[\"Garriga, Josep\"],\"publicationdate\":\"1801-01-01\",\"publisher\":\"Marín, Pedro, Viuda e Hijo de\",\"embargoenddate\":\"\",\"contributor\":[\"Carlos IV, Rey de España\",\"Aguirre, Severo\",\"España. Rey (1788-1808: Carlos IV)\",\"España. Leyes, etc.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46371\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"},{\"url\":\"http://hdl.handle.net/10366/46372\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46372\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/46372\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/46372\"},\"trust\":0.92118746}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/46371"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garriga, Josep"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/46372"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Derecho -- España -- Legislación -- Siglo 18o"]},"trust":{"type":"FLOAT","value":0.92118746},"target_publication_title":{"type":"STRING","value":"Continuacion y suplemento del Prontuario de Don Severo Aguirre"},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"1801-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/46371\",\"titles\":[\"Continuacion y suplemento del Prontuario de Don Severo Aguirre\"],\"abstracts\":[\"Obra perteneciente al Fondo Antiguo de la Biblioteca de la USAL\"],\"language\":\"esl/spa\",\"subjects\":[\"Derecho -- España -- Legislación -- Siglo 18o\"],\"creators\":[\"Garriga, Josep\"],\"publicationdate\":\"1801-01-01\",\"publisher\":\"Marín, Pedro, Viuda e Hijo de\",\"embargoenddate\":\"\",\"contributor\":[\"Carlos IV, Rey de España\",\"Aguirre, Severo\",\"España. Rey (1788-1808: Carlos IV)\",\"España. Leyes, etc.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46371\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"},{\"url\":\"http://hdl.handle.net/10366/46370\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/46370\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/46370\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/46370\"},\"trust\":0.3714223}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/46371"},"target_publication_author_list":{"type":"LIST_STRING","value":["Garriga, Josep"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/46370"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Derecho -- España -- Legislación -- Siglo 18o"]},"trust":{"type":"FLOAT","value":0.3714223},"target_publication_title":{"type":"STRING","value":"Continuacion y suplemento del Prontuario de Don Severo Aguirre"},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"1801-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:gesis.izsoz.de:12763\",\"titles\":[\"Editorial: Wikis - Diskurse, Theorien und Anwendungen\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"News media, journalism, publishing\",\"Publizistische Medien, Journalismus,Verlagswesen\",\"Interactive Media\",\"interaktive, elektronische Medien\",\"Wiki\"],\"creators\":[\"Stegbauer, Christian\",\"Schönberger, Klaus\",\"Schmidt, Klaus\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Germany\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Social Science Open Access Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ssoar.info/ssoar/handle/document/12763\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://www.soz.uni-frankfurt.de/K.G/B2_2007_Stegbauer_Schoenberger_Schmidt.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Kommunikation@gesellschaft\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.soz.uni-frankfurt.de/K.G/B2_2007_Stegbauer_Schoenberger_Schmidt.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Kommunikation@gesellschaft\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.soz.uni-frankfurt.de/K.G/B2_2007_Stegbauer_Schoenberger_Schmidt.pdf\",\"id\":\"oai:doaj.org/article:9954cadeba4249e7bf2f868d2766c004\"},\"trust\":0.15657341}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Social Science Open Access Repository"},"target_publication_id":{"type":"STRING","value":"oai:gesis.izsoz.de:12763"},"target_publication_author_list":{"type":"LIST_STRING","value":["Stegbauer, Christian","Schönberger, Klaus","Schmidt, Klaus"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:9954cadeba4249e7bf2f868d2766c004"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["News media, journalism, publishing","Publizistische Medien, Journalismus,Verlagswesen","Interactive Media","interaktive, elektronische Medien","Wiki"]},"trust":{"type":"FLOAT","value":0.15657341},"target_publication_title":{"type":"STRING","value":"Editorial: Wikis - Diskurse, Theorien und Anwendungen"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7810ccd41bf26faaa2c4e1f20db70a71"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:gredos.usal.es:10366/80225\",\"titles\":[\"¿Quién hablará de nosotros cuando ya no estemos? Memoria e historia del Uruguay del exilio a partir de un análisis bibliográfico\"],\"abstracts\":[\"[ES] Uruguay ha construido su identidad como país de inmigrantes, pero a partir de la segunda mitad de este siglo comienza a generarse un fuerte proceso de emigración que hoy alcanza niveles preocupantes, sin ser considerado como fenómeno trascendente hasta los últimos años. En este proceso de emigración se produce en los 70 y los 80 un fenómeno de emigración forzada o exilio por razones políticas derivado de procesos autoritarios y una posterior dictadura militar(1973-1984). El estudio de la atención que el problema ha suscitado a través de la bibliografía existente sobre ese período refleja cómo el exilio es un tema poco tratado frente a otras consecuencias de tales procesos políticos. La relevancia relativa evidencia y refleja un proceso de olvido protagonizado por múltiples actores que trae como consecuencia que el exilio esté reservado a la memoria individual no existiendo ni en la memoria social ni en la memoria histórica.\",\"[EN] Uruguay has constructed its identity as a country of immigrants, but from the second half of the past century, a strong process of emigration has been generated, and today reaches worrisome levels, even if not considered an important phenomenon until the last years. This process of emigration, which takes place in the ‘70s and the ‘80s, produced a phenomenon of forced emigration or exile for political reasons derived from authoritarian processes and a later military dictatorship (1973-1984). The study of the attention that the subject has provoked through the existing bibliography on that period reflected as exile is a subject little treated as opposed to other consequences of such political processes. The relative relevance reflects a process of forgetfulness carried out by multiple actors which bring as consequence that exile is reserved to the individual memory, not existing neither in the social memory nor in the historical memory.\"],\"language\":\"esl/spa\",\"subjects\":[\"Historia moderna y contemporánea\",\"Modern history\"],\"creators\":[\"Coraza Los Santos, Enrique\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Ediciones Universidad de Salamanca (España)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/80225\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10366/80225\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/80225\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/80225\",\"id\":\"oai:http://gredos.usal.es/jspui:10366/80225\"},\"trust\":0.43744808}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:gredos.usal.es:10366/80225"},"target_publication_author_list":{"type":"LIST_STRING","value":["Coraza Los Santos, Enrique"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:http://gredos.usal.es/jspui:10366/80225"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Historia moderna y contemporánea","Modern history"]},"trust":{"type":"FLOAT","value":0.43744808},"target_publication_title":{"type":"STRING","value":"¿Quién hablará de nosotros cuando ya no estemos? Memoria e historia del Uruguay del exilio a partir de un análisis bibliográfico"},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:http://gredos.usal.es/jspui:10366/80225\",\"titles\":[\"¿Quién hablará de nosotros cuando ya no estemos? Memoria e historia del Uruguay del exilio a partir de un análisis bibliográfico\"],\"abstracts\":[\"[ES] Uruguay ha construido su identidad como país de inmigrantes, pero a partir de la segunda mitad de este siglo comienza a generarse un fuerte proceso de emigración que hoy alcanza niveles preocupantes, sin ser considerado como fenómeno trascendente hasta los últimos años. En este proceso de emigración se produce en los 70 y los 80 un fenómeno de emigración forzada o exilio por razones políticas derivado de procesos autoritarios y una posterior dictadura militar(1973-1984). El estudio de la atención que el problema ha suscitado a través de la bibliografía existente sobre ese período refleja cómo el exilio es un tema poco tratado frente a otras consecuencias de tales procesos políticos. La relevancia relativa evidencia y refleja un proceso de olvido protagonizado por múltiples actores que trae como consecuencia que el exilio esté reservado a la memoria individual no existiendo ni en la memoria social ni en la memoria histórica.\",\"[EN] Uruguay has constructed its identity as a country of immigrants, but from the second half of the past century, a strong process of emigration has been generated, and today reaches worrisome levels, even if not considered an important phenomenon until the last years. This process of emigration, which takes place in the ‘70s and the ‘80s, produced a phenomenon of forced emigration or exile for political reasons derived from authoritarian processes and a later military dictatorship (1973-1984). The study of the attention that the subject has provoked through the existing bibliography on that period reflected as exile is a subject little treated as opposed to other consequences of such political processes. The relative relevance reflects a process of forgetfulness carried out by multiple actors which bring as consequence that exile is reserved to the individual memory, not existing neither in the social memory nor in the historical memory.\"],\"language\":\"esl/spa\",\"subjects\":[\"Historia moderna y contemporánea\",\"Modern history\"],\"creators\":[\"Coraza Los Santos, Enrique\"],\"publicationdate\":\"2009-10-30\",\"publisher\":\"Ediciones Universidad de Salamanca (España)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"GREDOS\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10366/80225\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10366/80225\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10366/80225\",\"license\":\"OPEN\",\"hostedby\":\"GREDOS\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"GREDOS\",\"url\":\"http://hdl.handle.net/10366/80225\",\"id\":\"oai:gredos.usal.es:10366/80225\"},\"trust\":0.79937345}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"GREDOS"},"target_publication_id":{"type":"STRING","value":"oai:http://gredos.usal.es/jspui:10366/80225"},"target_publication_author_list":{"type":"LIST_STRING","value":["Coraza Los Santos, Enrique"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:gredos.usal.es:10366/80225"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Historia moderna y contemporánea","Modern history"]},"trust":{"type":"FLOAT","value":0.79937345},"target_publication_title":{"type":"STRING","value":"¿Quién hablará de nosotros cuando ya no estemos? Memoria e historia del Uruguay del exilio a partir de un análisis bibliográfico"},"provenance_datasource_name":{"type":"STRING","value":"GREDOS"},"target_dateofacceptance":{"type":"DATE","value":"2009-10-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::daa96d9681a21445772454cbddf0cac1"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.gla.ac.uk:64892\",\"titles\":[\"Adam Smith and the theory of punishment\"],\"abstracts\":[\"A distinctive theory of punishment plays a central role in Smith\\u0027s moral and legal theory. According to this theory, we regard the punishment of a crime as deserved only to the extent that an impartial spectator would go along with the actual or supposed resentment of the victim. The first part of this paper argues that Smith\\u0027s theory deserves serious consideration and relates it to other theories such as utilitarianism and more orthodox forms of retributivism. The second part considers the objection that, because Smith\\u0027s theory implies that punishment is justified only when there is some person or persons who is the victim of the crime, it cannot explain the many cases where punishment is imposed purely for the public good. It is argued that Smith\\u0027s theory could be extended to cover such cases. The third part defends Smith\\u0027s theory against the objection that, because it relies on our natural feelings, it cannot provide an adequate moral justification of punishment.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Stalley, R.\"],\"publicationdate\":\"2012-03-01\",\"publisher\":\"Edinburgh University Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Enlighten\"],\"pids\":[{\"value\":\"10.3366/jsp.2012.0028\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://eprints.gla.ac.uk/64892/\",\"license\":\"OPEN\",\"hostedby\":\"Enlighten\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.3366/jsp.2012.0028\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.gla.ac.uk/64892/1/64892.pdf\",\"id\":\"oai:eprints.gla.ac.uk:64892\"},\"trust\":0.3791266}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Enlighten"},"target_publication_id":{"type":"STRING","value":"oai:eprints.gla.ac.uk:64892"},"target_publication_author_list":{"type":"LIST_STRING","value":["Stalley, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.gla.ac.uk:64892"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"trust":{"type":"FLOAT","value":0.3791266},"target_publication_title":{"type":"STRING","value":"Adam Smith and the theory of punishment"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2012-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::82aa4b0af34c2313a562076992e50aa3"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.gla.ac.uk:64892\",\"titles\":[\"Adam Smith and the theory of punishment\"],\"abstracts\":[\"A distinctive theory of punishment plays a central role in Smith\\u0027s moral and legal theory. According to this theory, we regard the punishment of a crime as deserved only to the extent that an impartial spectator would go along with the actual or supposed resentment of the victim. The first part of this paper argues that Smith\\u0027s theory deserves serious consideration and relates it to other theories such as utilitarianism and more orthodox forms of retributivism. The second part considers the objection that, because Smith\\u0027s theory implies that punishment is justified only when there is some person or persons who is the victim of the crime, it cannot explain the many cases where punishment is imposed purely for the public good. It is argued that Smith\\u0027s theory could be extended to cover such cases. The third part defends Smith\\u0027s theory against the objection that, because it relies on our natural feelings, it cannot provide an adequate moral justification of punishment.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Stalley, R.\"],\"publicationdate\":\"2012-03-01\",\"publisher\":\"Edinburgh University Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Enlighten\"],\"pids\":[{\"value\":\"10.3366/jsp.2012.0028\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://eprints.gla.ac.uk/64892/\",\"license\":\"OPEN\",\"hostedby\":\"Enlighten\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.3366/jsp.2012.0028\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.gla.ac.uk/64892/1/64892.pdf\",\"id\":\"oai:eprints.gla.ac.uk:64892\"},\"trust\":0.3791266}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Enlighten"},"target_publication_id":{"type":"STRING","value":"oai:eprints.gla.ac.uk:64892"},"target_publication_author_list":{"type":"LIST_STRING","value":["Stalley, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.gla.ac.uk:64892"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"trust":{"type":"FLOAT","value":0.3791266},"target_publication_title":{"type":"STRING","value":"Adam Smith and the theory of punishment"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2012-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::82aa4b0af34c2313a562076992e50aa3"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:eprints.gla.ac.uk:64892\",\"titles\":[\"Adam Smith and the theory of punishment\"],\"abstracts\":[\"A distinctive theory of punishment plays a central role in Smith\\u0027s moral and legal theory. According to this theory, we regard the punishment of a crime as deserved only to the extent that an impartial spectator would go along with the actual or supposed resentment of the victim. The first part of this paper argues that Smith\\u0027s theory deserves serious consideration and relates it to other theories such as utilitarianism and more orthodox forms of retributivism. The second part considers the objection that, because Smith\\u0027s theory implies that punishment is justified only when there is some person or persons who is the victim of the crime, it cannot explain the many cases where punishment is imposed purely for the public good. It is argued that Smith\\u0027s theory could be extended to cover such cases. The third part defends Smith\\u0027s theory against the objection that, because it relies on our natural feelings, it cannot provide an adequate moral justification of punishment.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Stalley, R.\"],\"publicationdate\":\"2012-03-01\",\"publisher\":\"Edinburgh University Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Enlighten\"],\"pids\":[],\"instances\":[{\"url\":\"http://eprints.gla.ac.uk/64892/\",\"license\":\"OPEN\",\"hostedby\":\"Enlighten\",\"instancetype\":\"Article\"},{\"url\":\"http://eprints.gla.ac.uk/64892/1/64892.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Enlighten\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.gla.ac.uk/64892/1/64892.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Enlighten\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.gla.ac.uk/64892/1/64892.pdf\",\"id\":\"oai:eprints.gla.ac.uk:64892\"},\"trust\":0.38028067}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Enlighten"},"target_publication_id":{"type":"STRING","value":"oai:eprints.gla.ac.uk:64892"},"target_publication_author_list":{"type":"LIST_STRING","value":["Stalley, R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.gla.ac.uk:64892"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"trust":{"type":"FLOAT","value":0.38028067},"target_publication_title":{"type":"STRING","value":"Adam Smith and the theory of punishment"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2012-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::82aa4b0af34c2313a562076992e50aa3"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:col:000107:009973\",\"titles\":[\"Determinantes Del Número De Relaciones Bancarias En Colombia\"],\"abstracts\":[\"En este documento se realiza una exploración inicial sobre los determinantes del número de rela¬ciones bancarias del sector corporativo privado de Colombia. Siguiendo otros estudios similares reali¬zados para distintos países, se utilizan modelos de datos de cuenta y se estima un modelo de regre¬sión de Poisson y un modelo de regresión binomial negativa para hallar los determinantes de la variable de interés. Encontramos que los datos presentan sobredispersión, razón por la cual el modelo de regresión binomial negativa es más adecuado que el modelo de regresión de Poisson en este contexto. Dentro de este ejercicio se encuentra que las varia¬bles de liquidez, tamaño de la firma, composición de la deuda, eficiencia, la tasa activa real y la tasa de crecimiento del PIB, resultan ser importantes en la determinación del número de relaciones bancarias. El hecho de que las relaciones bancarias sean afec¬tadas por la actividad económica, podría sugerir que durante los tiempos de desaceleración econó¬mica las empresas buscan fuentes alternativas de financiamiento.\"],\"language\":\"und\",\"subjects\":[\"bancos, relaciones bancarias, mo¬delos de datos de cuenta.\"],\"creators\":[\"Inés Paola Orozco\",\"Gómez-González, José E.\",\"José Piñeros\",\"José Vicente Romero\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.banrep.gov.co/sites/default/files/publicaciones/archivos/espe_art4_65.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"id\":\"oai:RePEc:col:000094:005940\"},\"trust\":0.65259683}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:col:000107:009973"},"target_publication_author_list":{"type":"LIST_STRING","value":["Inés Paola Orozco","Gómez-González, José E.","José Piñeros","José Vicente Romero"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:col:000094:005940"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["bancos, relaciones bancarias, mo¬delos de datos de cuenta."]},"trust":{"type":"FLOAT","value":0.65259683},"target_publication_title":{"type":"STRING","value":"Determinantes Del Número De Relaciones Bancarias En Colombia"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:col:000107:009973\",\"titles\":[\"Determinantes Del Número De Relaciones Bancarias En Colombia\"],\"abstracts\":[\"En este documento se realiza una exploración inicial sobre los determinantes del número de rela¬ciones bancarias del sector corporativo privado de Colombia. Siguiendo otros estudios similares reali¬zados para distintos países, se utilizan modelos de datos de cuenta y se estima un modelo de regre¬sión de Poisson y un modelo de regresión binomial negativa para hallar los determinantes de la variable de interés. Encontramos que los datos presentan sobredispersión, razón por la cual el modelo de regresión binomial negativa es más adecuado que el modelo de regresión de Poisson en este contexto. Dentro de este ejercicio se encuentra que las varia¬bles de liquidez, tamaño de la firma, composición de la deuda, eficiencia, la tasa activa real y la tasa de crecimiento del PIB, resultan ser importantes en la determinación del número de relaciones bancarias. El hecho de que las relaciones bancarias sean afec¬tadas por la actividad económica, podría sugerir que durante los tiempos de desaceleración econó¬mica las empresas buscan fuentes alternativas de financiamiento.\"],\"language\":\"und\",\"subjects\":[\"bancos, relaciones bancarias, mo¬delos de datos de cuenta.\"],\"creators\":[\"Inés Paola Orozco\",\"Gómez-González, José E.\",\"José Piñeros\",\"José Vicente Romero\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.banrep.gov.co/sites/default/files/publicaciones/archivos/espe_art4_65.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"id\":\"oai:RePEc:bdr:borrec:577\"},\"trust\":0.21823788}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:col:000107:009973"},"target_publication_author_list":{"type":"LIST_STRING","value":["Inés Paola Orozco","Gómez-González, José E.","José Piñeros","José Vicente Romero"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bdr:borrec:577"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["bancos, relaciones bancarias, mo¬delos de datos de cuenta."]},"trust":{"type":"FLOAT","value":0.21823788},"target_publication_title":{"type":"STRING","value":"Determinantes Del Número De Relaciones Bancarias En Colombia"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:col:000094:005940\",\"titles\":[\"Determinantes del número de relaciones bancarias en Colombia\"],\"abstracts\":[\"En este documento se realiza una exploración inicial sobre los determinantes del número de relaciones bancarias del sector corporativo privado de Colombia. Siguiendo otros estudios similares que se han realizado para distintos países, se utilizan modelos de datos de cuenta y se estima un modelo de regresión Poisson y un modelo de regresión Binomial Negativo para hallar los determinantes de la variable de interés. Encontramos que los datos presentan sobredispersión, razón por la cual el modelo de regresión Binomial Negativo es más adecuado que el modelo de regresión Poisson en este contexto. Dentro de este ejercicio se encuentra que las variables de liquidez, tamaño de la firma, composición de la deuda, eficiencia, la tasa activa real y la tasa de crecimiento del PIB, resultan ser importantes en la determinación del número de relaciones bancarias. El hecho que las relaciones bancarias sean afectadas por la actividad económica podría sugerir que durante los tiempos de desaceleración económica las empresas buscan fuentes alternativas de financiamiento.\"],\"language\":\"und\",\"subjects\":[\"Bancos, Relaciones bancarias, modelos de datos de cuenta.\"],\"creators\":[\"Inés Paola Orozco\",\"Gómez González, José E.\",\"José Piñeros\",\"Jose Vicente Romero Ch.\"],\"publicationdate\":\"2009-10-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.banrep.gov.co/sites/default/files/publicaciones/archivos/espe_art4_65.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.banrep.gov.co/sites/default/files/publicaciones/archivos/espe_art4_65.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.banrep.gov.co/sites/default/files/publicaciones/archivos/espe_art4_65.pdf\",\"id\":\"oai:RePEc:col:000107:009973\"},\"trust\":0.15014696}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:col:000094:005940"},"target_publication_author_list":{"type":"LIST_STRING","value":["Inés Paola Orozco","Gómez González, José E.","José Piñeros","Jose Vicente Romero Ch."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:col:000107:009973"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Bancos, Relaciones bancarias, modelos de datos de cuenta."]},"trust":{"type":"FLOAT","value":0.15014696},"target_publication_title":{"type":"STRING","value":"Determinantes del número de relaciones bancarias en Colombia"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-10-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:col:000094:005940\",\"titles\":[\"Determinantes del número de relaciones bancarias en Colombia\"],\"abstracts\":[\"En este documento se realiza una exploración inicial sobre los determinantes del número de relaciones bancarias del sector corporativo privado de Colombia. Siguiendo otros estudios similares que se han realizado para distintos países, se utilizan modelos de datos de cuenta y se estima un modelo de regresión Poisson y un modelo de regresión Binomial Negativo para hallar los determinantes de la variable de interés. Encontramos que los datos presentan sobredispersión, razón por la cual el modelo de regresión Binomial Negativo es más adecuado que el modelo de regresión Poisson en este contexto. Dentro de este ejercicio se encuentra que las variables de liquidez, tamaño de la firma, composición de la deuda, eficiencia, la tasa activa real y la tasa de crecimiento del PIB, resultan ser importantes en la determinación del número de relaciones bancarias. El hecho que las relaciones bancarias sean afectadas por la actividad económica podría sugerir que durante los tiempos de desaceleración económica las empresas buscan fuentes alternativas de financiamiento.\"],\"language\":\"und\",\"subjects\":[\"Bancos, Relaciones bancarias, modelos de datos de cuenta.\"],\"creators\":[\"Inés Paola Orozco\",\"Gómez González, José E.\",\"José Piñeros\",\"Jose Vicente Romero Ch.\"],\"publicationdate\":\"2009-10-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"id\":\"oai:RePEc:bdr:borrec:577\"},\"trust\":0.7601552}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:col:000094:005940"},"target_publication_author_list":{"type":"LIST_STRING","value":["Inés Paola Orozco","Gómez González, José E.","José Piñeros","Jose Vicente Romero Ch."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bdr:borrec:577"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Bancos, Relaciones bancarias, modelos de datos de cuenta."]},"trust":{"type":"FLOAT","value":0.7601552},"target_publication_title":{"type":"STRING","value":"Determinantes del número de relaciones bancarias en Colombia"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-10-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bdr:borrec:577\",\"titles\":[\"Determinantes del número de relaciones bancarias en Colombia\"],\"abstracts\":[\"En este documento se realiza una exploración inicial sobre los determinantes del número de relaciones bancarias del sector corporativo privado de Colombia. Siguiendo otros estudios similares que se han realizado para distintos países, se utilizan modelos de datos de cuenta y se estima un modelo de regresión Poisson y un modelo de regresión Binomial Negativo para hallar los determinantes de la variable de interés. Encontramos que los datos presentan sobredispersión, razón por la cual el modelo de regresión Binomial Negativo es más adecuado que el modelo de regresión Poisson en este contexto. Dentro de este ejercicio se encuentra que las variables de liquidez, tamaño de la firma, composición de la deuda, eficiencia, la tasa activa real y la tasa de crecimiento del PIB, resultan ser importantes en la determinación del número de relaciones bancarias. El hecho que las relaciones bancarias sean afectadas por la actividad económica podría sugerir que durante los tiempos de desaceleración económica las empresas buscan fuentes alternativas de financiamiento.\"],\"language\":\"und\",\"subjects\":[\"Bancos, Relaciones bancarias, modelos de datos de cuenta. Classification JEL: E59, A11.\"],\"creators\":[\"Inés Paola Orozco\",\"Gómez González, Jose E.\",\"Jose Piñeros\",\"Jose Vicente Romero\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.banrep.gov.co/sites/default/files/publicaciones/archivos/espe_art4_65.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.banrep.gov.co/sites/default/files/publicaciones/archivos/espe_art4_65.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.banrep.gov.co/sites/default/files/publicaciones/archivos/espe_art4_65.pdf\",\"id\":\"oai:RePEc:col:000107:009973\"},\"trust\":0.36821252}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bdr:borrec:577"},"target_publication_author_list":{"type":"LIST_STRING","value":["Inés Paola Orozco","Gómez González, Jose E.","Jose Piñeros","Jose Vicente Romero"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:col:000107:009973"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Bancos, Relaciones bancarias, modelos de datos de cuenta. Classification JEL: E59, A11."]},"trust":{"type":"FLOAT","value":0.36821252},"target_publication_title":{"type":"STRING","value":"Determinantes del número de relaciones bancarias en Colombia"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bdr:borrec:577\",\"titles\":[\"Determinantes del número de relaciones bancarias en Colombia\"],\"abstracts\":[\"En este documento se realiza una exploración inicial sobre los determinantes del número de relaciones bancarias del sector corporativo privado de Colombia. Siguiendo otros estudios similares que se han realizado para distintos países, se utilizan modelos de datos de cuenta y se estima un modelo de regresión Poisson y un modelo de regresión Binomial Negativo para hallar los determinantes de la variable de interés. Encontramos que los datos presentan sobredispersión, razón por la cual el modelo de regresión Binomial Negativo es más adecuado que el modelo de regresión Poisson en este contexto. Dentro de este ejercicio se encuentra que las variables de liquidez, tamaño de la firma, composición de la deuda, eficiencia, la tasa activa real y la tasa de crecimiento del PIB, resultan ser importantes en la determinación del número de relaciones bancarias. El hecho que las relaciones bancarias sean afectadas por la actividad económica podría sugerir que durante los tiempos de desaceleración económica las empresas buscan fuentes alternativas de financiamiento.\"],\"language\":\"und\",\"subjects\":[\"Bancos, Relaciones bancarias, modelos de datos de cuenta. Classification JEL: E59, A11.\"],\"creators\":[\"Inés Paola Orozco\",\"Gómez González, Jose E.\",\"Jose Piñeros\",\"Jose Vicente Romero\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"2011-01-01\"},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.banrep.gov.co/sites/default/files/publicaciones/archivos/espe_art4_65.pdf\",\"id\":\"oai:RePEc:col:000107:009973\"},\"trust\":0.2165389}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bdr:borrec:577"},"target_publication_author_list":{"type":"LIST_STRING","value":["Inés Paola Orozco","Gómez González, Jose E.","Jose Piñeros","Jose Vicente Romero"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:col:000107:009973"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Bancos, Relaciones bancarias, modelos de datos de cuenta. Classification JEL: E59, A11."]},"trust":{"type":"FLOAT","value":0.2165389},"target_publication_title":{"type":"STRING","value":"Determinantes del número de relaciones bancarias en Colombia"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bdr:borrec:577\",\"titles\":[\"Determinantes del número de relaciones bancarias en Colombia\"],\"abstracts\":[\"En este documento se realiza una exploración inicial sobre los determinantes del número de relaciones bancarias del sector corporativo privado de Colombia. Siguiendo otros estudios similares que se han realizado para distintos países, se utilizan modelos de datos de cuenta y se estima un modelo de regresión Poisson y un modelo de regresión Binomial Negativo para hallar los determinantes de la variable de interés. Encontramos que los datos presentan sobredispersión, razón por la cual el modelo de regresión Binomial Negativo es más adecuado que el modelo de regresión Poisson en este contexto. Dentro de este ejercicio se encuentra que las variables de liquidez, tamaño de la firma, composición de la deuda, eficiencia, la tasa activa real y la tasa de crecimiento del PIB, resultan ser importantes en la determinación del número de relaciones bancarias. El hecho que las relaciones bancarias sean afectadas por la actividad económica podría sugerir que durante los tiempos de desaceleración económica las empresas buscan fuentes alternativas de financiamiento.\"],\"language\":\"und\",\"subjects\":[\"Bancos, Relaciones bancarias, modelos de datos de cuenta. Classification JEL: E59, A11.\"],\"creators\":[\"Inés Paola Orozco\",\"Gómez González, Jose E.\",\"Jose Piñeros\",\"Jose Vicente Romero\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"id\":\"oai:RePEc:col:000094:005940\"},\"trust\":0.44712836}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bdr:borrec:577"},"target_publication_author_list":{"type":"LIST_STRING","value":["Inés Paola Orozco","Gómez González, Jose E.","Jose Piñeros","Jose Vicente Romero"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:col:000094:005940"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Bancos, Relaciones bancarias, modelos de datos de cuenta. Classification JEL: E59, A11."]},"trust":{"type":"FLOAT","value":0.44712836},"target_publication_title":{"type":"STRING","value":"Determinantes del número de relaciones bancarias en Colombia"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bdr:borrec:577\",\"titles\":[\"Determinantes del número de relaciones bancarias en Colombia\"],\"abstracts\":[\"En este documento se realiza una exploración inicial sobre los determinantes del número de relaciones bancarias del sector corporativo privado de Colombia. Siguiendo otros estudios similares que se han realizado para distintos países, se utilizan modelos de datos de cuenta y se estima un modelo de regresión Poisson y un modelo de regresión Binomial Negativo para hallar los determinantes de la variable de interés. Encontramos que los datos presentan sobredispersión, razón por la cual el modelo de regresión Binomial Negativo es más adecuado que el modelo de regresión Poisson en este contexto. Dentro de este ejercicio se encuentra que las variables de liquidez, tamaño de la firma, composición de la deuda, eficiencia, la tasa activa real y la tasa de crecimiento del PIB, resultan ser importantes en la determinación del número de relaciones bancarias. El hecho que las relaciones bancarias sean afectadas por la actividad económica podría sugerir que durante los tiempos de desaceleración económica las empresas buscan fuentes alternativas de financiamiento.\"],\"language\":\"und\",\"subjects\":[\"Bancos, Relaciones bancarias, modelos de datos de cuenta. Classification JEL: E59, A11.\"],\"creators\":[\"Inés Paola Orozco\",\"Gómez González, Jose E.\",\"Jose Piñeros\",\"Jose Vicente Romero\"],\"publicationdate\":\"2009-10-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"2009-10-15\"},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.banrep.gov.co/docum/ftp/borra577.pdf\",\"id\":\"oai:RePEc:col:000094:005940\"},\"trust\":0.42663467}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bdr:borrec:577"},"target_publication_author_list":{"type":"LIST_STRING","value":["Inés Paola Orozco","Gómez González, Jose E.","Jose Piñeros","Jose Vicente Romero"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:col:000094:005940"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Bancos, Relaciones bancarias, modelos de datos de cuenta. Classification JEL: E59, A11."]},"trust":{"type":"FLOAT","value":0.42663467},"target_publication_title":{"type":"STRING","value":"Determinantes del número de relaciones bancarias en Colombia"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-10-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3484068\",\"titles\":[\"Inventory of a Neurological Intensive Care Unit: Who Is Treated and How Long?\"],\"abstracts\":[\"Purpose. To characterize indications, treatment, and length of stay in a stand-alone neurological intensive care unit with focus on comparison between ventilated and nonventilated patient. Methods. We performed a single-center retrospective cohort study of all treated patients in our neurological intensive care unit between October 2006 and December 2008. Results. Overall, 512 patients were treated in the surveyed period, of which 493 could be included in the analysis. Of these, 40.8% had invasive mechanical ventilation and 59.2% had not. Indications in both groups were predominantly cerebrovascular diseases. Length of stay was 16.5 days in mean for ventilated and 3.6 days for nonventilated patient. Conclusion. Most patients, ventilated or not, suffer from vascular diseases with further impairment of other organ systems or systemic complications. Data reflects close relationship and overlap of treatment on nICU with a standardized stroke unit treatment and suggests, regarding increasing therapeutic options, the high impact of acute high-level treatment to reduce consequential complications.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Backhaus, Roland\",\"Aigner, Franz\",\"Schlachetzki, Felix\",\"Steffling, Dagmar\",\"Jakob, Wolfgang\",\"Steinbrecher, Andreas\",\"Kaiser, Bernhard\",\"Hau, Peter\",\"Boy, Sandra\",\"Fuchs, Kornelius\"],\"publicationdate\":\"2015-06-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Neurology Research International\",\"issn\":\"2090-1852\",\"eissn\":\"2090-1860\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2015/696038\",\"type\":\"doi\"},{\"value\":\"PMC4495230\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4495230\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2015/696038\",\"license\":\"OPEN\",\"hostedby\":\"Neurology Research International\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2015/696038\",\"license\":\"OPEN\",\"hostedby\":\"Neurology Research International\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2015/696038\",\"id\":\"oai:doaj.org/article:fc224fcfe78d4cd39b79f17c161e9d98\"},\"trust\":0.002880156}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3484068"},"target_publication_author_list":{"type":"LIST_STRING","value":["Backhaus, Roland","Aigner, Franz","Schlachetzki, Felix","Steffling, Dagmar","Jakob, Wolfgang","Steinbrecher, Andreas","Kaiser, Bernhard","Hau, Peter","Boy, Sandra","Fuchs, Kornelius"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:fc224fcfe78d4cd39b79f17c161e9d98"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.002880156},"target_publication_title":{"type":"STRING","value":"Inventory of a Neurological Intensive Care Unit: Who Is Treated and How Long?"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2015-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00129703v1\",\"titles\":[\"Characterization of polynomial decay rate for the solution of linear evolution equation\"],\"abstracts\":[\"In this paper, we study the decay rate of solutions to strongly stable, but not exponentially stable linear evolution equations. It is known that the resolvent operator of such an equation must be undounded on the imaginary axis. Our main result is an estimate of the decay rate when the unboundedness is of polynomial order. We then apply our main theorem to three strongly stable but not explnentially stable systems to obtain the decay rate, which is not available in the literature.\"],\"language\":\"eng\",\"subjects\":[\"polynomial decay rate\",\"semigroup\",\"domain frequency\",\"35B40, 35L20\",\"[MATH.MATH-AP] Mathematics/Analysis of PDEs\"],\"creators\":[\"Liu, Zhyangyi\",\"Rao, Bopeng\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Institut de Recherche Mathématique Avancée (IRMA) ; Université Louis Pasteur - Strasbourg I - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00129703\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00129703\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00129703\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00129703\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00129703\"},\"trust\":0.8844309}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00129703v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Liu, Zhyangyi","Rao, Bopeng"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00129703"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["polynomial decay rate","semigroup","domain frequency","35B40, 35L20","[MATH.MATH-AP] Mathematics/Analysis of PDEs"]},"trust":{"type":"FLOAT","value":0.8844309},"target_publication_title":{"type":"STRING","value":"Characterization of polynomial decay rate for the solution of linear evolution equation"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00129703\",\"titles\":[\"Characterization of polynomial decay rate for the solution of linear evolution equation\"],\"abstracts\":[\"In this paper, we study the decay rate of solutions to strongly stable, but not exponentially stable linear evolution equations. It is known that the resolvent operator of such an equation must be undounded on the imaginary axis. Our main result is an estimate of the decay rate when the unboundedness is of polynomial order. We then apply our main theorem to three strongly stable but not explnentially stable systems to obtain the decay rate, which is not available in the literature.\"],\"language\":\"eng\",\"subjects\":[\"[MATH:MATH_AP] Mathematics/Analysis of PDEs\",\"[MATH:MATH_AP] Mathématiques/Equations aux dérivées partielles\",\"\\\"polynomial decay rate\",\"semigroup\",\"domain frequency\\\"\"],\"creators\":[\"Liu, Zhyangyi\",\"Rao, Bopeng\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00129703\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00129703\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00129703\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00129703\",\"id\":\"oai:HAL:hal-00129703v1\"},\"trust\":0.8880965}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00129703"},"target_publication_author_list":{"type":"LIST_STRING","value":["Liu, Zhyangyi","Rao, Bopeng"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00129703v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH:MATH_AP] Mathematics/Analysis of PDEs","[MATH:MATH_AP] Mathématiques/Equations aux dérivées partielles","\"polynomial decay rate","semigroup","domain frequency\""]},"trust":{"type":"FLOAT","value":0.8880965},"target_publication_title":{"type":"STRING","value":"Characterization of polynomial decay rate for the solution of linear evolution equation"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:cirad-00471427v1\",\"titles\":[\"Désherbage chimique et gestion de l\\u0027enherbement du cotonnier au Nord-Cameroun\"],\"abstracts\":[\"International audience\",\"L\\u0027objectif de cette étude menée entre 2005 et 2007, était de faire un diagnostic des pratiques paysannes de gestion de l\\u0027enherbement dans deux terroirs du Nord-Cameroun (Mafa kilda et Mowo), et de tester différentes techniques de maîtrise des adventices. L\\u0027enquête a porté sur 39 et 49 exploitations respectivement à Mafa kilda et à Mowo. Un dispositif expérimental en blocs dispersés a été réalisé chez cinq paysans. Quatre traitements ont été testés, un avec travail du sol, les trois autres avec le non labour (semis direct) et l\\u0027application d\\u0027herbicides totaux et sélectifs suivie de sarclages précoces. Les résultats montrent que, le sarclage manuel reste une pratique répandue, malgré l\\u0027extension de la culture attelée et l\\u0027adoption des herbicides. Les traitements en semis direct plus herbicides permettent de mieux maîtriser l\\u0027enherbement en début de croissance des cultures. Les rendements observés sont significativement meilleurs avec ces traitements. L\\u0027intérêt des herbicides réside dans la réduction des temps de travaux (3 h/ha par application ) par rapport au labour (14 h/ha). La double application du glyphosate et du paraquat à faibles doses, suivi d\\u0027un sarclage mécanique précoce (15-20 jours après semis) se révèle être le meilleur itinéraire technique de lutte intégrée contre les mauvaises herbes.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.SA.AEP] Life Sciences/Agricultural sciences/Agriculture, economy and politics\"],\"creators\":[\"Olina Bassala, Jean-Paul\",\"Wirnkar Lendzemo, Vénasius\",\"Marnotte, Pascal\"],\"publicationdate\":\"2009-04-20\",\"publisher\":\"Cirad\",\"embargoenddate\":\"\",\"contributor\":[\"Institut de recherche agricole pour le développement (IRAD) ; Ministère de la Recherche et de l\\u0027innovation\",\"Institut de recherche agricole pour le développement (IRAD) ; Institut de recherche agricole pour le développement\",\"UPR Systèmes de cultures annuels ; Centre de coopération internationale en recherche agronomique pour le développement [CIRAD]\",\"L. SEINY-BOUKAR, P. BOUMARD\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.cirad.fr/cirad-00471427\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.cirad.fr/cirad-00471427\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.cirad.fr/cirad-00471427\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.cirad.fr/cirad-00471427\",\"id\":\"oai:hal.cirad.fr:cirad-00471427\"},\"trust\":0.5972064}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:cirad-00471427v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Olina Bassala, Jean-Paul","Wirnkar Lendzemo, Vénasius","Marnotte, Pascal"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.cirad.fr:cirad-00471427"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.SA.AEP] Life Sciences/Agricultural sciences/Agriculture, economy and politics"]},"trust":{"type":"FLOAT","value":0.5972064},"target_publication_title":{"type":"STRING","value":"Désherbage chimique et gestion de l\u0027enherbement du cotonnier au Nord-Cameroun"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2009-04-20"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.cirad.fr:cirad-00471427\",\"titles\":[\"Désherbage chimique et gestion de l\\u0027enherbement du cotonnier au Nord-Cameroun\"],\"abstracts\":[\"L\\u0027objectif de cette étude menée entre 2005 et 2007, était de faire un diagnostic des pratiques paysannes de gestion de l\\u0027enherbement dans deux terroirs du Nord-Cameroun (Mafa kilda et Mowo), et de tester différentes techniques de maîtrise des adventices. L\\u0027enquête a porté sur 39 et 49 exploitations respectivement à Mafa kilda et à Mowo. Un dispositif expérimental en blocs dispersés a été réalisé chez cinq paysans. Quatre traitements ont été testés, un avec travail du sol, les trois autres avec le non labour (semis direct) et l\\u0027application d\\u0027herbicides totaux et sélectifs suivie de sarclages précoces. Les résultats montrent que, le sarclage manuel reste une pratique répandue, malgré l\\u0027extension de la culture attelée et l\\u0027adoption des herbicides. Les traitements en semis direct plus herbicides permettent de mieux maîtriser l\\u0027enherbement en début de croissance des cultures. Les rendements observés sont significativement meilleurs avec ces traitements. L\\u0027intérêt des herbicides réside dans la réduction des temps de travaux (3 h/ha par application ) par rapport au labour (14 h/ha). La double application du glyphosate et du paraquat à faibles doses, suivi d\\u0027un sarclage mécanique précoce (15-20 jours après semis) se révèle être le meilleur itinéraire technique de lutte intégrée contre les mauvaises herbes.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:SA:AEP] Life Sciences/Agricultural sciences/Agriculture, economy and politics\",\"[SDV:SA:AEP] Sciences du Vivant/Sciences agricoles/Agriculture, économie et politique\"],\"creators\":[\"Olina Bassala, Jean-Paul\",\"Wirnkar Lendzemo, Vénasius\",\"Marnotte, Pascal\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.cirad.fr/cirad-00471427\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"http://hal.cirad.fr/cirad-00471427\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.cirad.fr/cirad-00471427\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.cirad.fr/cirad-00471427\",\"id\":\"oai:HAL:cirad-00471427v1\"},\"trust\":0.2736141}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.cirad.fr:cirad-00471427"},"target_publication_author_list":{"type":"LIST_STRING","value":["Olina Bassala, Jean-Paul","Wirnkar Lendzemo, Vénasius","Marnotte, Pascal"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:cirad-00471427v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:SA:AEP] Life Sciences/Agricultural sciences/Agriculture, economy and politics","[SDV:SA:AEP] Sciences du Vivant/Sciences agricoles/Agriculture, économie et politique"]},"trust":{"type":"FLOAT","value":0.2736141},"target_publication_title":{"type":"STRING","value":"Désherbage chimique et gestion de l\u0027enherbement du cotonnier au Nord-Cameroun"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ags:jlaare:31219\",\"titles\":[\"On the Empirical Finding of a Higher Risk of Poverty in Rural Areas: Is Rural Residence Endogenous to Poverty?\"],\"abstracts\":[\"Includes: On the Empirical Finding of a Higher Risk of Poverty in Rural Areas: Is Rural Residence Endogenous to Poverty?:COMMENT, by Thomas A. Hirschl; On the Empirical Finding of a Higher Risk of Poverty in Rural Areas: Is Rural Residence Endogenous to Poverty?: REPLY, by Monica Fisher. Research shows people are more likely to be poor in rural versus urban America. Does this phenomenon partly reflect that people who choose rural residence have unmeasured attributes related to human impoverishment? To address this question, two models are estimated using Panel Study of Income Dynamics data. A single equation Probit model of individual poverty replicates the well-documented finding of higher poverty risk in rural places. However, an instrumental variables approach, accounting for correlation between rural residence and the poverty equation error term, finds no measured effect of rural location on poverty. Results suggest failure to correct for endogeneity or omitted variable bias may overestimate the \\\"rural effect.\\\"\"],\"language\":\"und\",\"subjects\":[\"endogeneity, instrumental variables, omitted variable bias, poverty, rural, Food Security and Poverty,\"],\"creators\":[\"Fisher, Monica G.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://purl.umn.edu/31219\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://purl.umn.edu/18917\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://purl.umn.edu/18917\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://purl.umn.edu/18917\",\"id\":\"oai:RePEc:ags:osruwp:18917\"},\"trust\":0.26716858}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ags:jlaare:31219"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fisher, Monica G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ags:osruwp:18917"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["endogeneity, instrumental variables, omitted variable bias, poverty, rural, Food Security and Poverty,"]},"trust":{"type":"FLOAT","value":0.26716858},"target_publication_title":{"type":"STRING","value":"On the Empirical Finding of a Higher Risk of Poverty in Rural Areas: Is Rural Residence Endogenous to Poverty?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ags:osruwp:18917\",\"titles\":[\"ON THE EMPIRICAL FINDING OF A HIGHER RISK OF POVERTY IN RURAL AREAS: IS RURAL RESIDENCE ENDOGENOUS TO POVERTY?\"],\"abstracts\":[\"Research shows households are more likely to be poor in rural versus urban America. Does this phenomenon partly reflect that people who choose rural residence have unmeasured attributes related to human impoverishment? To address this, two models are estimated using Panel Study of Income Dynamics data. A single equation Probit model of household poverty replicates the well-documented finding of higher poverty risk in rural places. However, a two-stage instrumental variables approach accounting for residential choice finds no measured effect of rural location on poverty. Results suggest failure to correct for endogenous rural residence leads to over-estimation of the \\\"rural effect\\\".\"],\"language\":\"und\",\"subjects\":[\"endogeneity, households, instrumental variables, poverty, rural, Food Security and Poverty,\"],\"creators\":[\"Fisher, Monica G.\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://purl.umn.edu/18917\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://purl.umn.edu/31219\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://purl.umn.edu/31219\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://purl.umn.edu/31219\",\"id\":\"oai:RePEc:ags:jlaare:31219\"},\"trust\":0.13431406}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ags:osruwp:18917"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fisher, Monica G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ags:jlaare:31219"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["endogeneity, households, instrumental variables, poverty, rural, Food Security and Poverty,"]},"trust":{"type":"FLOAT","value":0.13431406},"target_publication_title":{"type":"STRING","value":"ON THE EMPIRICAL FINDING OF A HIGHER RISK OF POVERTY IN RURAL AREAS: IS RURAL RESIDENCE ENDOGENOUS TO POVERTY?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.tue.nl:620013\",\"titles\":[\"Monitoring the behaviour of 4-ketocyclophosphamide versus cyclophosphamide during capillary gas chromatography by mass spectrometry\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Bruijn, Ea\",\"Oosterom, At\",\"Leclercq, Pa\",\"Haan, Jw\",\"Ven, Ljm\",\"Tjaden, Ur\"],\"publicationdate\":\"1987-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repository TU/e\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.tue.nl/620013\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"},{\"url\":\"http://repository.tue.nl/620013\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.tue.nl/620013\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.tue.nl/620013\",\"id\":\"tue:oai:library.tue.nl:620013\"},\"trust\":0.33742416}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repository TU/e"},"target_publication_id":{"type":"STRING","value":"oai:library.tue.nl:620013"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bruijn, Ea","Oosterom, At","Leclercq, Pa","Haan, Jw","Ven, Ljm","Tjaden, Ur"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tue:oai:library.tue.nl:620013"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.33742416},"target_publication_title":{"type":"STRING","value":"Monitoring the behaviour of 4-ketocyclophosphamide versus cyclophosphamide during capillary gas chromatography by mass spectrometry"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1987-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::99c5e07b4d5de9d18c350cdf64c5aa3d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:in2p3-00002723v1\",\"titles\":[\"Bose-Einstein correlations and color reconnection effect in W pair decay at LEP2\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"[PHYS.HEXP] Physics/High Energy Physics - Experiment\"],\"creators\":[\"Martin, F.\"],\"publicationdate\":\"1999-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire d\\u0027Annecy le Vieux de Physique des Particules (LAPP) ; IN2P3 - Université de Savoie - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.in2p3.fr/in2p3-00002723\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.in2p3.fr/in2p3-00002723\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.in2p3.fr/in2p3-00002723\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.in2p3.fr/in2p3-00002723\",\"id\":\"oai:hal.in2p3.fr:in2p3-00002723\"},\"trust\":0.24030638}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:in2p3-00002723v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Martin, F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.in2p3.fr:in2p3-00002723"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.HEXP] Physics/High Energy Physics - Experiment"]},"trust":{"type":"FLOAT","value":0.24030638},"target_publication_title":{"type":"STRING","value":"Bose-Einstein correlations and color reconnection effect in W pair decay at LEP2"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1999-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.in2p3.fr:in2p3-00002723\",\"titles\":[\"Bose-Einstein correlations and color reconnection effect in W pair decay at LEP2\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"[PHYS:HEXP] Physics/High Energy Physics - Experiment\",\"[PHYS:HEXP] Physique/Physique des Hautes Energies - Expérience\"],\"creators\":[\"Martin, F.\"],\"publicationdate\":\"1999-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.in2p3.fr/in2p3-00002723\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"},{\"url\":\"http://hal.in2p3.fr/in2p3-00002723\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.in2p3.fr/in2p3-00002723\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.in2p3.fr/in2p3-00002723\",\"id\":\"oai:HAL:in2p3-00002723v1\"},\"trust\":0.40866745}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.in2p3.fr:in2p3-00002723"},"target_publication_author_list":{"type":"LIST_STRING","value":["Martin, F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:in2p3-00002723v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HEXP] Physics/High Energy Physics - Experiment","[PHYS:HEXP] Physique/Physique des Hautes Energies - Expérience"]},"trust":{"type":"FLOAT","value":0.40866745},"target_publication_title":{"type":"STRING","value":"Bose-Einstein correlations and color reconnection effect in W pair decay at LEP2"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1999-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ner:maastr:urn:nbn:nl:ui:27-18030\",\"titles\":[\"Technology and the dynamics of industrial structures: an empirical mapping of Dutch manufacturing.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Marsili, Orietta\",\"Verspagen, Bart\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14454\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14454\",\"license\":\"OPEN\",\"hostedby\":\"UM Publications\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14454\",\"license\":\"OPEN\",\"hostedby\":\"UM Publications\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"UM Publications\",\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14454\",\"id\":\"oai:dare:18030\"},\"trust\":0.5814659}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ner:maastr:urn:nbn:nl:ui:27-18030"},"target_publication_author_list":{"type":"LIST_STRING","value":["Marsili, Orietta","Verspagen, Bart"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dare:18030"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::fe9fc289c3ff0af142b6d3bead98a923"},"trust":{"type":"FLOAT","value":0.5814659},"target_publication_title":{"type":"STRING","value":"Technology and the dynamics of industrial structures: an empirical mapping of Dutch manufacturing."},"provenance_datasource_name":{"type":"STRING","value":"UM Publications"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ner:maastr:urn:nbn:nl:ui:27-18030\",\"titles\":[\"Technology and the dynamics of industrial structures: an empirical mapping of Dutch manufacturing.\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Marsili, Orietta\",\"Verspagen, Bart\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14454\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://repository.tue.nl/611784\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.tue.nl/611784\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Repository TU/e\",\"url\":\"http://repository.tue.nl/611784\",\"id\":\"oai:library.tue.nl:611784\"},\"trust\":0.292377}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ner:maastr:urn:nbn:nl:ui:27-18030"},"target_publication_author_list":{"type":"LIST_STRING","value":["Marsili, Orietta","Verspagen, Bart"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:library.tue.nl:611784"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::99c5e07b4d5de9d18c350cdf64c5aa3d"},"trust":{"type":"FLOAT","value":0.292377},"target_publication_title":{"type":"STRING","value":"Technology and the dynamics of industrial structures: an empirical mapping of Dutch manufacturing."},"provenance_datasource_name":{"type":"STRING","value":"Repository TU/e"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dare:18030\",\"titles\":[\"Technology and the dynamics of industrial structures: an empirical mapping of Dutch manufacturing\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Marsili, Orietta\",\"Verspagen, Bart\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"[Oxford] : Oxford University Press for the Fondazione ASSI\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UM Publications\"],\"pids\":[],\"instances\":[{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14454\",\"license\":\"OPEN\",\"hostedby\":\"UM Publications\",\"instancetype\":\"Article\"},{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14454\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14454\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14454\",\"id\":\"oai:RePEc:ner:maastr:urn:nbn:nl:ui:27-18030\"},\"trust\":0.010570824}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UM Publications"},"target_publication_id":{"type":"STRING","value":"oai:dare:18030"},"target_publication_author_list":{"type":"LIST_STRING","value":["Marsili, Orietta","Verspagen, Bart"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ner:maastr:urn:nbn:nl:ui:27-18030"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.010570824},"target_publication_title":{"type":"STRING","value":"Technology and the dynamics of industrial structures: an empirical mapping of Dutch manufacturing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::fe9fc289c3ff0af142b6d3bead98a923"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dare:18030\",\"titles\":[\"Technology and the dynamics of industrial structures: an empirical mapping of Dutch manufacturing\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Marsili, Orietta\",\"Verspagen, Bart\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"[Oxford] : Oxford University Press for the Fondazione ASSI\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UM Publications\"],\"pids\":[],\"instances\":[{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14454\",\"license\":\"OPEN\",\"hostedby\":\"UM Publications\",\"instancetype\":\"Article\"},{\"url\":\"http://repository.tue.nl/611784\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.tue.nl/611784\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Repository TU/e\",\"url\":\"http://repository.tue.nl/611784\",\"id\":\"oai:library.tue.nl:611784\"},\"trust\":0.9352788}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UM Publications"},"target_publication_id":{"type":"STRING","value":"oai:dare:18030"},"target_publication_author_list":{"type":"LIST_STRING","value":["Marsili, Orietta","Verspagen, Bart"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:library.tue.nl:611784"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::99c5e07b4d5de9d18c350cdf64c5aa3d"},"trust":{"type":"FLOAT","value":0.9352788},"target_publication_title":{"type":"STRING","value":"Technology and the dynamics of industrial structures: an empirical mapping of Dutch manufacturing"},"provenance_datasource_name":{"type":"STRING","value":"Repository TU/e"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::fe9fc289c3ff0af142b6d3bead98a923"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.tue.nl:611784\",\"titles\":[\"Technology and the dynamics of industrial structures: an empirical mapping of Dutch manufacturing\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Marsili, O.\",\"Verspagen, B.\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repository TU/e\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.tue.nl/611784\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"},{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14454\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14454\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14454\",\"id\":\"oai:RePEc:ner:maastr:urn:nbn:nl:ui:27-18030\"},\"trust\":0.6459673}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repository TU/e"},"target_publication_id":{"type":"STRING","value":"oai:library.tue.nl:611784"},"target_publication_author_list":{"type":"LIST_STRING","value":["Marsili, O.","Verspagen, B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ner:maastr:urn:nbn:nl:ui:27-18030"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.6459673},"target_publication_title":{"type":"STRING","value":"Technology and the dynamics of industrial structures: an empirical mapping of Dutch manufacturing"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::99c5e07b4d5de9d18c350cdf64c5aa3d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.tue.nl:611784\",\"titles\":[\"Technology and the dynamics of industrial structures: an empirical mapping of Dutch manufacturing\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Marsili, O.\",\"Verspagen, B.\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repository TU/e\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.tue.nl/611784\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"},{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14454\",\"license\":\"OPEN\",\"hostedby\":\"UM Publications\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14454\",\"license\":\"OPEN\",\"hostedby\":\"UM Publications\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"UM Publications\",\"url\":\"http://arno.unimaas.nl/show.cgi?fid\\u003d14454\",\"id\":\"oai:dare:18030\"},\"trust\":0.68422264}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repository TU/e"},"target_publication_id":{"type":"STRING","value":"oai:library.tue.nl:611784"},"target_publication_author_list":{"type":"LIST_STRING","value":["Marsili, O.","Verspagen, B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dare:18030"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::fe9fc289c3ff0af142b6d3bead98a923"},"trust":{"type":"FLOAT","value":0.68422264},"target_publication_title":{"type":"STRING","value":"Technology and the dynamics of industrial structures: an empirical mapping of Dutch manufacturing"},"provenance_datasource_name":{"type":"STRING","value":"UM Publications"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::99c5e07b4d5de9d18c350cdf64c5aa3d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:9a13cf3d-7dda-4781-9614-67b89c714cc5\",\"titles\":[\"The Epoch of Disk Settling: z~1 to Now\"],\"abstracts\":[\"We present evidence from a sample of 544 galaxies from the DEEP2 Survey for\\nevolution of the internal kinematics of blue galaxies with stellar masses\\nranging 8.0 \\u003c log M* (M_Sun) \\u003c 10.7 over 0.2\\u003cz\\u003c1.2. DEEP2 provides galaxy\\nspectra and Hubble imaging from which we measure emission-line kinematics and\\ngalaxy inclinations, respectively. Our large sample allows us to overcome\\nscatter intrinsic to galaxy properties in order to examine trends in\\nkinematics. We find that at a fixed stellar mass galaxies systematically\\ndecrease in disordered motions and increase in rotation velocity and potential\\nwell depth with time. Massive galaxies are the most well-ordered at all times\\nexamined, with higher rotation velocities and less disordered motions than less\\nmassive galaxies. We quantify disordered motions with an integrated gas\\nvelocity dispersion corrected for beam smearing (sigma_g). It is unlike the\\ntypical pressure-supported velocity dispersion measured for early type galaxies\\nand galaxy bulges. Because both seeing and the width of our spectral slits\\ncomprise a significant fraction of the galaxy sizes, sigma_g integrates over\\nvelocity gradients on large scales which can correspond to non-ordered gas\\nkinematics. We compile measurements of galaxy kinematics from the literature\\nover 1.2\\u003cz\\u003c3.8 and do not find any trends with redshift, likely for the most\\npart because these datasets are biased toward the most highly star-forming\\nsystems. In summary, over the last ~8 billion years since z\\u003d1.2, blue galaxies\\nevolve from disordered to ordered systems as they settle to become the\\nrotation-dominated disk galaxies observed in the Universe today, with the most\\nmassive galaxies being the most evolved at any time.\"],\"language\":\"eng\",\"subjects\":[\"astro-ph.CO\",\"astro-ph.CO\"],\"creators\":[\"Kassin, Sa\",\"Weiner, Bj\",\"Faber, Sm\",\"Gardner, Jp\",\"Willmer, Cna\",\"Coil, Al\",\"Cooper, Mc\",\"Devriendt, J.\",\"Dutton, Aa\",\"Guhathakurta, P.\"],\"publicationdate\":\"2012-07-30\",\"publisher\":\"Institute of Physics Publishing\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1088/0004-637X/758/2/106\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:9a13cf3d-7dda-4781-9614-67b89c714cc5\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/1207.7072\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1207.7072\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1207.7072\",\"id\":\"oai:arXiv.org:1207.7072\"},\"trust\":0.55024236}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:9a13cf3d-7dda-4781-9614-67b89c714cc5"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kassin, Sa","Weiner, Bj","Faber, Sm","Gardner, Jp","Willmer, Cna","Coil, Al","Cooper, Mc","Devriendt, J.","Dutton, Aa","Guhathakurta, P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1207.7072"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["astro-ph.CO","astro-ph.CO"]},"trust":{"type":"FLOAT","value":0.55024236},"target_publication_title":{"type":"STRING","value":"The Epoch of Disk Settling: z~1 to Now"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-07-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:9a13cf3d-7dda-4781-9614-67b89c714cc5\",\"titles\":[\"The Epoch of Disk Settling: z~1 to Now\"],\"abstracts\":[\"We present evidence from a sample of 544 galaxies from the DEEP2 Survey for\\nevolution of the internal kinematics of blue galaxies with stellar masses\\nranging 8.0 \\u003c log M* (M_Sun) \\u003c 10.7 over 0.2\\u003cz\\u003c1.2. DEEP2 provides galaxy\\nspectra and Hubble imaging from which we measure emission-line kinematics and\\ngalaxy inclinations, respectively. Our large sample allows us to overcome\\nscatter intrinsic to galaxy properties in order to examine trends in\\nkinematics. We find that at a fixed stellar mass galaxies systematically\\ndecrease in disordered motions and increase in rotation velocity and potential\\nwell depth with time. Massive galaxies are the most well-ordered at all times\\nexamined, with higher rotation velocities and less disordered motions than less\\nmassive galaxies. We quantify disordered motions with an integrated gas\\nvelocity dispersion corrected for beam smearing (sigma_g). It is unlike the\\ntypical pressure-supported velocity dispersion measured for early type galaxies\\nand galaxy bulges. Because both seeing and the width of our spectral slits\\ncomprise a significant fraction of the galaxy sizes, sigma_g integrates over\\nvelocity gradients on large scales which can correspond to non-ordered gas\\nkinematics. We compile measurements of galaxy kinematics from the literature\\nover 1.2\\u003cz\\u003c3.8 and do not find any trends with redshift, likely for the most\\npart because these datasets are biased toward the most highly star-forming\\nsystems. In summary, over the last ~8 billion years since z\\u003d1.2, blue galaxies\\nevolve from disordered to ordered systems as they settle to become the\\nrotation-dominated disk galaxies observed in the Universe today, with the most\\nmassive galaxies being the most evolved at any time.\"],\"language\":\"eng\",\"subjects\":[\"astro-ph.CO\",\"astro-ph.CO\"],\"creators\":[\"Kassin, Sa\",\"Weiner, Bj\",\"Faber, Sm\",\"Gardner, Jp\",\"Willmer, Cna\",\"Coil, Al\",\"Cooper, Mc\",\"Devriendt, J.\",\"Dutton, Aa\",\"Guhathakurta, P.\"],\"publicationdate\":\"2012-07-30\",\"publisher\":\"Institute of Physics Publishing\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1088/0004-637X/758/2/106\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:9a13cf3d-7dda-4781-9614-67b89c714cc5\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/1207.7072\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1207.7072\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1207.7072\",\"id\":\"oai:arXiv.org:1207.7072\"},\"trust\":0.55024236}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:9a13cf3d-7dda-4781-9614-67b89c714cc5"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kassin, Sa","Weiner, Bj","Faber, Sm","Gardner, Jp","Willmer, Cna","Coil, Al","Cooper, Mc","Devriendt, J.","Dutton, Aa","Guhathakurta, P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1207.7072"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["astro-ph.CO","astro-ph.CO"]},"trust":{"type":"FLOAT","value":0.55024236},"target_publication_title":{"type":"STRING","value":"The Epoch of Disk Settling: z~1 to Now"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-07-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:1164f81a-d0b4-422f-a016-028f34599568\",\"titles\":[\"THE EPOCH OF DISK SETTLING: z similar to 1 TO NOW\"],\"abstracts\":[],\"language\":\"aar\",\"subjects\":[\"galaxies: evolution\",\"galaxies: formation\",\"galaxies: fundamental parameters\",\"galaxies: kinematics and dynamics\"],\"creators\":[\"Kassin, Sa\",\"Weiner, Bj\",\"Faber, Sm\",\"Gardner, Jp\",\"Willmer, Cna\",\"Coil, Al\",\"Cooper, Mc\",\"Devriendt, J.\",\"Dutton, Aa\",\"Guhathakurta, P.\"],\"publicationdate\":\"2012-10-20\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1088/0004-637X/758/2/106\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:1164f81a-d0b4-422f-a016-028f34599568\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/1207.7072\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1207.7072\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1207.7072\",\"id\":\"oai:arXiv.org:1207.7072\"},\"trust\":0.9506935}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:1164f81a-d0b4-422f-a016-028f34599568"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kassin, Sa","Weiner, Bj","Faber, Sm","Gardner, Jp","Willmer, Cna","Coil, Al","Cooper, Mc","Devriendt, J.","Dutton, Aa","Guhathakurta, P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1207.7072"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["galaxies: evolution","galaxies: formation","galaxies: fundamental parameters","galaxies: kinematics and dynamics"]},"trust":{"type":"FLOAT","value":0.9506935},"target_publication_title":{"type":"STRING","value":"THE EPOCH OF DISK SETTLING: z similar to 1 TO NOW"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-10-20"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:1164f81a-d0b4-422f-a016-028f34599568\",\"titles\":[\"THE EPOCH OF DISK SETTLING: z similar to 1 TO NOW\"],\"abstracts\":[],\"language\":\"aar\",\"subjects\":[\"galaxies: evolution\",\"galaxies: formation\",\"galaxies: fundamental parameters\",\"galaxies: kinematics and dynamics\"],\"creators\":[\"Kassin, Sa\",\"Weiner, Bj\",\"Faber, Sm\",\"Gardner, Jp\",\"Willmer, Cna\",\"Coil, Al\",\"Cooper, Mc\",\"Devriendt, J.\",\"Dutton, Aa\",\"Guhathakurta, P.\"],\"publicationdate\":\"2012-10-20\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1088/0004-637X/758/2/106\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:1164f81a-d0b4-422f-a016-028f34599568\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/1207.7072\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1207.7072\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1207.7072\",\"id\":\"oai:arXiv.org:1207.7072\"},\"trust\":0.9506935}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:1164f81a-d0b4-422f-a016-028f34599568"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kassin, Sa","Weiner, Bj","Faber, Sm","Gardner, Jp","Willmer, Cna","Coil, Al","Cooper, Mc","Devriendt, J.","Dutton, Aa","Guhathakurta, P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1207.7072"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["galaxies: evolution","galaxies: formation","galaxies: fundamental parameters","galaxies: kinematics and dynamics"]},"trust":{"type":"FLOAT","value":0.9506935},"target_publication_title":{"type":"STRING","value":"THE EPOCH OF DISK SETTLING: z similar to 1 TO NOW"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-10-20"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:1164f81a-d0b4-422f-a016-028f34599568\",\"titles\":[\"THE EPOCH OF DISK SETTLING: z similar to 1 TO NOW\"],\"abstracts\":[\" We present evidence from a sample of 544 galaxies from the DEEP2 Survey for\\nevolution of the internal kinematics of blue galaxies with stellar masses\\nranging 8.0 \\u003c log M* (M_Sun) \\u003c 10.7 over 0.2\\u003cz\\u003c1.2. DEEP2 provides galaxy\\nspectra and Hubble imaging from which we measure emission-line kinematics and\\ngalaxy inclinations, respectively. Our large sample allows us to overcome\\nscatter intrinsic to galaxy properties in order to examine trends in\\nkinematics. We find that at a fixed stellar mass galaxies systematically\\ndecrease in disordered motions and increase in rotation velocity and potential\\nwell depth with time. Massive galaxies are the most well-ordered at all times\\nexamined, with higher rotation velocities and less disordered motions than less\\nmassive galaxies. We quantify disordered motions with an integrated gas\\nvelocity dispersion corrected for beam smearing (sigma_g). It is unlike the\\ntypical pressure-supported velocity dispersion measured for early type galaxies\\nand galaxy bulges. Because both seeing and the width of our spectral slits\\ncomprise a significant fraction of the galaxy sizes, sigma_g integrates over\\nvelocity gradients on large scales which can correspond to non-ordered gas\\nkinematics. We compile measurements of galaxy kinematics from the literature\\nover 1.2\\u003cz\\u003c3.8 and do not find any trends with redshift, likely for the most\\npart because these datasets are biased toward the most highly star-forming\\nsystems. In summary, over the last ~8 billion years since z\\u003d1.2, blue galaxies\\nevolve from disordered to ordered systems as they settle to become the\\nrotation-dominated disk galaxies observed in the Universe today, with the most\\nmassive galaxies being the most evolved at any time.\\n\",\"Comment: submitted to ApJ and responded to referee report\"],\"language\":\"aar\",\"subjects\":[\"galaxies: evolution\",\"galaxies: formation\",\"galaxies: fundamental parameters\",\"galaxies: kinematics and dynamics\"],\"creators\":[\"Kassin, Sa\",\"Weiner, Bj\",\"Faber, Sm\",\"Gardner, Jp\",\"Willmer, Cna\",\"Coil, Al\",\"Cooper, Mc\",\"Devriendt, J.\",\"Dutton, Aa\",\"Guhathakurta, P.\"],\"publicationdate\":\"2012-10-20\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1088/0004-637X/758/2/106\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:1164f81a-d0b4-422f-a016-028f34599568\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\" We present evidence from a sample of 544 galaxies from the DEEP2 Survey for\\nevolution of the internal kinematics of blue galaxies with stellar masses\\nranging 8.0 \\u003c log M* (M_Sun) \\u003c 10.7 over 0.2\\u003cz\\u003c1.2. DEEP2 provides galaxy\\nspectra and Hubble imaging from which we measure emission-line kinematics and\\ngalaxy inclinations, respectively. Our large sample allows us to overcome\\nscatter intrinsic to galaxy properties in order to examine trends in\\nkinematics. We find that at a fixed stellar mass galaxies systematically\\ndecrease in disordered motions and increase in rotation velocity and potential\\nwell depth with time. Massive galaxies are the most well-ordered at all times\\nexamined, with higher rotation velocities and less disordered motions than less\\nmassive galaxies. We quantify disordered motions with an integrated gas\\nvelocity dispersion corrected for beam smearing (sigma_g). It is unlike the\\ntypical pressure-supported velocity dispersion measured for early type galaxies\\nand galaxy bulges. Because both seeing and the width of our spectral slits\\ncomprise a significant fraction of the galaxy sizes, sigma_g integrates over\\nvelocity gradients on large scales which can correspond to non-ordered gas\\nkinematics. We compile measurements of galaxy kinematics from the literature\\nover 1.2\\u003cz\\u003c3.8 and do not find any trends with redshift, likely for the most\\npart because these datasets are biased toward the most highly star-forming\\nsystems. In summary, over the last ~8 billion years since z\\u003d1.2, blue galaxies\\nevolve from disordered to ordered systems as they settle to become the\\nrotation-dominated disk galaxies observed in the Universe today, with the most\\nmassive galaxies being the most evolved at any time.\\n\",\"Comment: submitted to ApJ and responded to referee report\"]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1207.7072\",\"id\":\"oai:arXiv.org:1207.7072\"},\"trust\":0.6674557}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:1164f81a-d0b4-422f-a016-028f34599568"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kassin, Sa","Weiner, Bj","Faber, Sm","Gardner, Jp","Willmer, Cna","Coil, Al","Cooper, Mc","Devriendt, J.","Dutton, Aa","Guhathakurta, P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1207.7072"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["galaxies: evolution","galaxies: formation","galaxies: fundamental parameters","galaxies: kinematics and dynamics"]},"trust":{"type":"FLOAT","value":0.6674557},"target_publication_title":{"type":"STRING","value":"THE EPOCH OF DISK SETTLING: z similar to 1 TO NOW"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-10-20"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:1164f81a-d0b4-422f-a016-028f34599568\",\"titles\":[\"THE EPOCH OF DISK SETTLING: z similar to 1 TO NOW\"],\"abstracts\":[\"We present evidence from a sample of 544 galaxies from the DEEP2 Survey for\\nevolution of the internal kinematics of blue galaxies with stellar masses\\nranging 8.0 \\u003c log M* (M_Sun) \\u003c 10.7 over 0.2\\u003cz\\u003c1.2. DEEP2 provides galaxy\\nspectra and Hubble imaging from which we measure emission-line kinematics and\\ngalaxy inclinations, respectively. Our large sample allows us to overcome\\nscatter intrinsic to galaxy properties in order to examine trends in\\nkinematics. We find that at a fixed stellar mass galaxies systematically\\ndecrease in disordered motions and increase in rotation velocity and potential\\nwell depth with time. Massive galaxies are the most well-ordered at all times\\nexamined, with higher rotation velocities and less disordered motions than less\\nmassive galaxies. We quantify disordered motions with an integrated gas\\nvelocity dispersion corrected for beam smearing (sigma_g). It is unlike the\\ntypical pressure-supported velocity dispersion measured for early type galaxies\\nand galaxy bulges. Because both seeing and the width of our spectral slits\\ncomprise a significant fraction of the galaxy sizes, sigma_g integrates over\\nvelocity gradients on large scales which can correspond to non-ordered gas\\nkinematics. We compile measurements of galaxy kinematics from the literature\\nover 1.2\\u003cz\\u003c3.8 and do not find any trends with redshift, likely for the most\\npart because these datasets are biased toward the most highly star-forming\\nsystems. In summary, over the last ~8 billion years since z\\u003d1.2, blue galaxies\\nevolve from disordered to ordered systems as they settle to become the\\nrotation-dominated disk galaxies observed in the Universe today, with the most\\nmassive galaxies being the most evolved at any time.\"],\"language\":\"aar\",\"subjects\":[\"galaxies: evolution\",\"galaxies: formation\",\"galaxies: fundamental parameters\",\"galaxies: kinematics and dynamics\"],\"creators\":[\"Kassin, Sa\",\"Weiner, Bj\",\"Faber, Sm\",\"Gardner, Jp\",\"Willmer, Cna\",\"Coil, Al\",\"Cooper, Mc\",\"Devriendt, J.\",\"Dutton, Aa\",\"Guhathakurta, P.\"],\"publicationdate\":\"2012-10-20\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1088/0004-637X/758/2/106\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:1164f81a-d0b4-422f-a016-028f34599568\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"We present evidence from a sample of 544 galaxies from the DEEP2 Survey for\\nevolution of the internal kinematics of blue galaxies with stellar masses\\nranging 8.0 \\u003c log M* (M_Sun) \\u003c 10.7 over 0.2\\u003cz\\u003c1.2. DEEP2 provides galaxy\\nspectra and Hubble imaging from which we measure emission-line kinematics and\\ngalaxy inclinations, respectively. Our large sample allows us to overcome\\nscatter intrinsic to galaxy properties in order to examine trends in\\nkinematics. We find that at a fixed stellar mass galaxies systematically\\ndecrease in disordered motions and increase in rotation velocity and potential\\nwell depth with time. Massive galaxies are the most well-ordered at all times\\nexamined, with higher rotation velocities and less disordered motions than less\\nmassive galaxies. We quantify disordered motions with an integrated gas\\nvelocity dispersion corrected for beam smearing (sigma_g). It is unlike the\\ntypical pressure-supported velocity dispersion measured for early type galaxies\\nand galaxy bulges. Because both seeing and the width of our spectral slits\\ncomprise a significant fraction of the galaxy sizes, sigma_g integrates over\\nvelocity gradients on large scales which can correspond to non-ordered gas\\nkinematics. We compile measurements of galaxy kinematics from the literature\\nover 1.2\\u003cz\\u003c3.8 and do not find any trends with redshift, likely for the most\\npart because these datasets are biased toward the most highly star-forming\\nsystems. In summary, over the last ~8 billion years since z\\u003d1.2, blue galaxies\\nevolve from disordered to ordered systems as they settle to become the\\nrotation-dominated disk galaxies observed in the Universe today, with the most\\nmassive galaxies being the most evolved at any time.\"]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:9a13cf3d-7dda-4781-9614-67b89c714cc5\",\"id\":\"oai:ora.ox.ac.uk:uuid:9a13cf3d-7dda-4781-9614-67b89c714cc5\"},\"trust\":0.45476323}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:1164f81a-d0b4-422f-a016-028f34599568"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kassin, Sa","Weiner, Bj","Faber, Sm","Gardner, Jp","Willmer, Cna","Coil, Al","Cooper, Mc","Devriendt, J.","Dutton, Aa","Guhathakurta, P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:9a13cf3d-7dda-4781-9614-67b89c714cc5"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"target_publication_subject_list":{"type":"LIST_STRING","value":["galaxies: evolution","galaxies: formation","galaxies: fundamental parameters","galaxies: kinematics and dynamics"]},"trust":{"type":"FLOAT","value":0.45476323},"target_publication_title":{"type":"STRING","value":"THE EPOCH OF DISK SETTLING: z similar to 1 TO NOW"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-10-20"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2563306\",\"titles\":[\"Human \\u0026 swine studies of concurrent 12-lead ECG \\u0026 MRI\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Poster Presentation\"],\"creators\":[\"Tse, Zion\",\"Dumoulin, Charles\",\"Watkins, Ronald\",\"Pauly, Kim Butts\",\"Byrd, Israel\",\"Schweitzer, Jeffrey\",\"Kwong, Raymond Y.\",\"Michaud, Gregory F.\",\"Stevenson, William\",\"Jolesz, Ferenc\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Cardiovascular Magnetic Resonance\",\"issn\":\"1097-6647\",\"eissn\":\"1532-429X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1532-429X-15-S1-P70\",\"type\":\"doi\"},{\"value\":\"PMC3559972\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3559972\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.scmr.org/\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Cardiovascular Magnetic Resonance\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.scmr.org/\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Cardiovascular Magnetic Resonance\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.scmr.org/\",\"id\":\"oai:doaj.org/article:373b404f49ba4ac6b4558f5727b5d7b9\"},\"trust\":0.21261352}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2563306"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tse, Zion","Dumoulin, Charles","Watkins, Ronald","Pauly, Kim Butts","Byrd, Israel","Schweitzer, Jeffrey","Kwong, Raymond Y.","Michaud, Gregory F.","Stevenson, William","Jolesz, Ferenc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:373b404f49ba4ac6b4558f5727b5d7b9"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Poster Presentation"]},"trust":{"type":"FLOAT","value":0.21261352},"target_publication_title":{"type":"STRING","value":"Human \u0026 swine studies of concurrent 12-lead ECG \u0026 MRI"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:sedici.unlp.edu.ar:10915/3567\",\"titles\":[\"El resultado fiscal de las provincias: ¿exógeno o endógeno? : Una mirada de mediano plazo\"],\"abstracts\":[\"Se estudia la evolución fiscal de las provincias argentinas en el período 1983-2006 y se calcula el impacto de las políticas nacionales sobre el resultado financiero. Sin esas políticas nacionales el resultado financiero provincial hubiera sido superavitario, versus el resultado negativo que muestra la contabilidad. Más de la totalidad del stock agregado de la deuda provincial al 31-12-2006 se debe a la no compensación de la externalidad fiscal interjurisdiccional vertical de la Nación a las Provincias. De la estimación econométrica resulta que por cada peso de externalidad, 77 centavos se trasladan al stock de deuda provincial. Las cuantificaciones presentadas revelan que en la relación entre el gobierno nacional y las provincias ha estado ausente uno de los principios básicos que deben cumplirse para que funcione el federalismo fiscal, que es el de \\\"lealtad institucional\\\". En términos simples este principio establece que ningún nivel de gobierno tome decisiones que afecten a otro nivel, sin compensación. En términos más técnicos el principio establece que las \\\"externalidades fiscales interjurisdiccionales verticales\\\" (de la Nación a las provincias, en nuestro caso) se paguen.\",\"In this paper the fiscal situation of argentinian provinces in the period 1983-2006 is studied and the impact of national policies is estimated. Without these policies the provinces would have had surplus versus the deficit that accounting shows. The provincial debt on December 31st 2006 was lower than the fiscal externality generated by national policies. The estimations presented here show that in the fiscal relationship between the nation and the provinces the principle of \\\"institutional loyalty\\\" is not present.\",\"Un resumen preliminar de este trabajo fue presentado en el X Seminario de Federalismo Fiscal, organizado por el Senado de la Nación, Universidad Austral (IAE), CIPPEC, Universidad Nacional de La Plata (FCE) y Foro de Federaciones en el Salón Azul del Senado de la Nación (Buenos Aires, 2007).\",\"Departamento de Economía\"],\"language\":\"esl/spa\",\"subjects\":[\"Ciencias Económicas\",\"Economía\",\"Política fiscal\",\"Federalismo fiscal\"],\"creators\":[\"Porto, Alberto\",\"Di Gresia, Luciano\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Servicio de Difusión de la Creación Intelectual\"],\"pids\":[],\"instances\":[{\"url\":\"http://sedici.unlp.edu.ar/handle/10915/3567\",\"license\":\"OPEN\",\"hostedby\":\"Servicio de Difusión de la Creación Intelectual\",\"instancetype\":\"Research\"},{\"url\":\"http://www.depeco.econo.unlp.edu.ar/doctrab/doc73.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.depeco.econo.unlp.edu.ar/doctrab/doc73.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.depeco.econo.unlp.edu.ar/doctrab/doc73.pdf\",\"id\":\"oai:RePEc:lap:wpaper:073\"},\"trust\":0.837788}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Servicio de Difusión de la Creación Intelectual"},"target_publication_id":{"type":"STRING","value":"oai:sedici.unlp.edu.ar:10915/3567"},"target_publication_author_list":{"type":"LIST_STRING","value":["Porto, Alberto","Di Gresia, Luciano"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:lap:wpaper:073"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Ciencias Económicas","Economía","Política fiscal","Federalismo fiscal"]},"trust":{"type":"FLOAT","value":0.837788},"target_publication_title":{"type":"STRING","value":"El resultado fiscal de las provincias: ¿exógeno o endógeno? : Una mirada de mediano plazo"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::01e9565cecc4e989123f9620c1d09c09"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:lap:wpaper:073\",\"titles\":[\"El Resultado Fiscal de las Provincias: ¿Exógeno o Endógeno? Una Mirada de Mediano Plazo.\"],\"abstracts\":[\"In this paper the fiscal situation of argentinian provinces in the period 1983-2006 is studied and the impact of national policies is estimated. Without these policies the provinces would have had surplus versus the deficit that accounting shows. The provincial debt on December 31st 2006 was lower than the fiscal externality generated by national policies. The estimations presented here show that in the fiscal relationship between the nation and the provinces the principle of “institutional loyalty” is not present.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Alberto Porto\",\"Luciano Di Gresia\"],\"publicationdate\":\"2007-11-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.depeco.econo.unlp.edu.ar/doctrab/doc73.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://sedici.unlp.edu.ar/handle/10915/3567\",\"license\":\"OPEN\",\"hostedby\":\"Servicio de Difusión de la Creación Intelectual\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://sedici.unlp.edu.ar/handle/10915/3567\",\"license\":\"OPEN\",\"hostedby\":\"Servicio de Difusión de la Creación Intelectual\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Servicio de Difusión de la Creación Intelectual\",\"url\":\"http://sedici.unlp.edu.ar/handle/10915/3567\",\"id\":\"oai:sedici.unlp.edu.ar:10915/3567\"},\"trust\":0.85424465}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:lap:wpaper:073"},"target_publication_author_list":{"type":"LIST_STRING","value":["Alberto Porto","Luciano Di Gresia"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:sedici.unlp.edu.ar:10915/3567"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::01e9565cecc4e989123f9620c1d09c09"},"trust":{"type":"FLOAT","value":0.85424465},"target_publication_title":{"type":"STRING","value":"El Resultado Fiscal de las Provincias: ¿Exógeno o Endógeno? Una Mirada de Mediano Plazo."},"provenance_datasource_name":{"type":"STRING","value":"Servicio de Difusión de la Creación Intelectual"},"target_dateofacceptance":{"type":"DATE","value":"2007-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:wsi:jdexxx:v:15:y:2010:i:02:p:231-242\",\"titles\":[\"TOO SICK TO START: ENTREPRENEUR\\u0027S HEALTH AND BUSINESS ENTRY IN TOWNSHIPS AROUND DURBAN, SOUTH AFRICA\"],\"abstracts\":[\"Unlike large firms with management teams, small businesses are usually run by one key person, the owner-entrepreneur, who bears almost all of the risks and makes most of the decisions related to the business. Because the owner-entrepreneur also embodies most of the firm-specific knowledge capital, health of the owner-entrepreneur is an important factor in the production process. Following a cohort of respondents in townships around Durban, South Africa, over a three-year period, we examined the relationship between an individual\\u0027s physical health and the decision to start a business. Our results suggest respondents who were recent business entrants were in better health than respondents who did not start new businesses. Moreover, respondents without a business at the beginning of the study who later opened businesses during the study interval were significantly more likely to have better baseline health than those respondents who never started a new business. Hence, good health among entrepreneurs seems to be an important prerequisite to small business entry.\"],\"language\":\"und\",\"subjects\":[\"Entrepreneurship, health, business entry, South Africa, microenterprise, small business\"],\"creators\":[\"LI-WEI CHAO\",\"HELENA SZREK\",\"NUNO SOUSA PEREIRA\",\"Pauly, Mark V.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Developmental Entrepreneurship\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"PMC3097074\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://www.worldscinet.com/cgi-bin/details.cgi?type\\u003dpdf\\u0026id\\u003dpii:S108494671000152X\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3097074\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3097074\",\"id\":\"oai:europepmc.org:2106481\"},\"trust\":0.7376086}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:wsi:jdexxx:v:15:y:2010:i:02:p:231-242"},"target_publication_author_list":{"type":"LIST_STRING","value":["LI-WEI CHAO","HELENA SZREK","NUNO SOUSA PEREIRA","Pauly, Mark V."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2106481"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Entrepreneurship, health, business entry, South Africa, microenterprise, small business"]},"trust":{"type":"FLOAT","value":0.7376086},"target_publication_title":{"type":"STRING","value":"TOO SICK TO START: ENTREPRENEUR\u0027S HEALTH AND BUSINESS ENTRY IN TOWNSHIPS AROUND DURBAN, SOUTH AFRICA"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:wsi:jdexxx:v:15:y:2010:i:02:p:231-242\",\"titles\":[\"TOO SICK TO START: ENTREPRENEUR\\u0027S HEALTH AND BUSINESS ENTRY IN TOWNSHIPS AROUND DURBAN, SOUTH AFRICA\"],\"abstracts\":[\"Unlike large firms with management teams, small businesses are usually run by one key person, the owner-entrepreneur, who bears almost all of the risks and makes most of the decisions related to the business. Because the owner-entrepreneur also embodies most of the firm-specific knowledge capital, health of the owner-entrepreneur is an important factor in the production process. Following a cohort of respondents in townships around Durban, South Africa, over a three-year period, we examined the relationship between an individual\\u0027s physical health and the decision to start a business. Our results suggest respondents who were recent business entrants were in better health than respondents who did not start new businesses. Moreover, respondents without a business at the beginning of the study who later opened businesses during the study interval were significantly more likely to have better baseline health than those respondents who never started a new business. Hence, good health among entrepreneurs seems to be an important prerequisite to small business entry.\"],\"language\":\"und\",\"subjects\":[\"Entrepreneurship, health, business entry, South Africa, microenterprise, small business\"],\"creators\":[\"LI-WEI CHAO\",\"HELENA SZREK\",\"NUNO SOUSA PEREIRA\",\"Pauly, Mark V.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Developmental Entrepreneurship\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"PMC3097074\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://www.worldscinet.com/cgi-bin/details.cgi?type\\u003dpdf\\u0026id\\u003dpii:S108494671000152X\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3097074\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3097074\",\"id\":\"oai:europepmc.org:2106481\"},\"trust\":0.7376086}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:wsi:jdexxx:v:15:y:2010:i:02:p:231-242"},"target_publication_author_list":{"type":"LIST_STRING","value":["LI-WEI CHAO","HELENA SZREK","NUNO SOUSA PEREIRA","Pauly, Mark V."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2106481"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Entrepreneurship, health, business entry, South Africa, microenterprise, small business"]},"trust":{"type":"FLOAT","value":0.7376086},"target_publication_title":{"type":"STRING","value":"TOO SICK TO START: ENTREPRENEUR\u0027S HEALTH AND BUSINESS ENTRY IN TOWNSHIPS AROUND DURBAN, SOUTH AFRICA"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2106481\",\"titles\":[\"TOO SICK TO START: ENTREPRENEUR’S HEALTH AND BUSINESS ENTRY IN TOWNSHIPS AROUND DURBAN, SOUTH AFRICA\"],\"abstracts\":[\"Unlike large firms with management teams, small businesses are usually run by one key person, the owner-entrepreneur, who bears almost all of the risks and makes almost all of the decisions related to the business. Because the owner-entrepreneur also embodies most of the firm-specific knowledge capital, health of the owner-entrepreneur is an important factor in the production process. Following a cohort of respondents in townships around Durban, South Africa, over a three-year period, we examined the relationship between an individual’s physical health and the decision to start a business. Our results suggest that respondents who were recent business entrants were in better health than respondents who did not start new businesses. Moreover, respondents without a business at the beginning of the study who later opened businesses during the three-year study interval were significantly more likely to have better baseline health than those respondents who never started a new business. Hence, good health among entrepreneurs seems to be an important prerequisite to small business entry.\"],\"language\":\"eng\",\"subjects\":[\"Article\"],\"creators\":[\"Chao, Li-Wei\",\"Szrek, Helena\",\"Pereira, Nuno Sousa\",\"Pauly, Mark V.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC3097074\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3097074\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.worldscinet.com/cgi-bin/details.cgi?type\\u003dpdf\\u0026id\\u003dpii:S108494671000152X\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.worldscinet.com/cgi-bin/details.cgi?type\\u003dpdf\\u0026id\\u003dpii:S108494671000152X\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.worldscinet.com/cgi-bin/details.cgi?type\\u003dpdf\\u0026id\\u003dpii:S108494671000152X\",\"id\":\"oai:RePEc:wsi:jdexxx:v:15:y:2010:i:02:p:231-242\"},\"trust\":0.9636682}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2106481"},"target_publication_author_list":{"type":"LIST_STRING","value":["Chao, Li-Wei","Szrek, Helena","Pereira, Nuno Sousa","Pauly, Mark V."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wsi:jdexxx:v:15:y:2010:i:02:p:231-242"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article"]},"trust":{"type":"FLOAT","value":0.9636682},"target_publication_title":{"type":"STRING","value":"TOO SICK TO START: ENTREPRENEUR’S HEALTH AND BUSINESS ENTRY IN TOWNSHIPS AROUND DURBAN, SOUTH AFRICA"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace.utlib.ee:10062/23207\",\"titles\":[\"Härma, Miina\"],\"abstracts\":[\"http://tartu.ester.ee/record\\u003db1650860~S1*est\"],\"language\":\"und\",\"subjects\":[\"fotod\"],\"creators\":[\"Parikas\"],\"publicationdate\":\"1930-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at Tartu University Library\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10062/23207\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10062/3790\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10062/3790\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"DSpace at Tartu University Library\",\"url\":\"http://hdl.handle.net/10062/3790\",\"id\":\"oai:dspace.utlib.ee:10062/3790\"},\"trust\":0.17450798}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_publication_id":{"type":"STRING","value":"oai:dspace.utlib.ee:10062/23207"},"target_publication_author_list":{"type":"LIST_STRING","value":["Parikas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.utlib.ee:10062/3790"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"},"target_publication_subject_list":{"type":"LIST_STRING","value":["fotod"]},"trust":{"type":"FLOAT","value":0.17450798},"target_publication_title":{"type":"STRING","value":"Härma, Miina"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_dateofacceptance":{"type":"DATE","value":"1930-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace.utlib.ee:10062/23207\",\"titles\":[\"Härma, Miina\"],\"abstracts\":[\"http://tartu.ester.ee/record\\u003db1650860~S1*est\"],\"language\":\"und\",\"subjects\":[\"fotod\"],\"creators\":[\"Parikas\"],\"publicationdate\":\"1930-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at Tartu University Library\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10062/23207\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10062/25535\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10062/25535\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"DSpace at Tartu University Library\",\"url\":\"http://hdl.handle.net/10062/25535\",\"id\":\"oai:dspace.utlib.ee:10062/25535\"},\"trust\":0.22418308}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_publication_id":{"type":"STRING","value":"oai:dspace.utlib.ee:10062/23207"},"target_publication_author_list":{"type":"LIST_STRING","value":["Parikas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.utlib.ee:10062/25535"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"},"target_publication_subject_list":{"type":"LIST_STRING","value":["fotod"]},"trust":{"type":"FLOAT","value":0.22418308},"target_publication_title":{"type":"STRING","value":"Härma, Miina"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_dateofacceptance":{"type":"DATE","value":"1930-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace.utlib.ee:10062/23207\",\"titles\":[\"Härma, Miina\"],\"abstracts\":[\"http://tartu.ester.ee/record\\u003db1650860~S1*est\"],\"language\":\"und\",\"subjects\":[\"fotod\"],\"creators\":[\"Parikas\"],\"publicationdate\":\"1930-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at Tartu University Library\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10062/23207\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10062/25414\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10062/25414\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"DSpace at Tartu University Library\",\"url\":\"http://hdl.handle.net/10062/25414\",\"id\":\"oai:dspace.utlib.ee:10062/25414\"},\"trust\":0.22203541}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_publication_id":{"type":"STRING","value":"oai:dspace.utlib.ee:10062/23207"},"target_publication_author_list":{"type":"LIST_STRING","value":["Parikas"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.utlib.ee:10062/25414"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"},"target_publication_subject_list":{"type":"LIST_STRING","value":["fotod"]},"trust":{"type":"FLOAT","value":0.22203541},"target_publication_title":{"type":"STRING","value":"Härma, Miina"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_dateofacceptance":{"type":"DATE","value":"1930-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace.utlib.ee:10062/3790\",\"titles\":[\"Härma, Miina\"],\"abstracts\":[],\"language\":\"est\",\"subjects\":[],\"creators\":[\"Staden, Wilhelm\"],\"publicationdate\":\"2007-09-27\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at Tartu University Library\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10062/3790\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10062/23207\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10062/23207\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"DSpace at Tartu University Library\",\"url\":\"http://hdl.handle.net/10062/23207\",\"id\":\"oai:dspace.utlib.ee:10062/23207\"},\"trust\":0.13988435}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_publication_id":{"type":"STRING","value":"oai:dspace.utlib.ee:10062/3790"},"target_publication_author_list":{"type":"LIST_STRING","value":["Staden, Wilhelm"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.utlib.ee:10062/23207"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"},"trust":{"type":"FLOAT","value":0.13988435},"target_publication_title":{"type":"STRING","value":"Härma, Miina"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_dateofacceptance":{"type":"DATE","value":"2007-09-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:dspace.utlib.ee:10062/3790\",\"titles\":[\"Härma, Miina\"],\"abstracts\":[\"http://tartu.ester.ee/record\\u003db1650860~S1*est\"],\"language\":\"est\",\"subjects\":[],\"creators\":[\"Staden, Wilhelm\"],\"publicationdate\":\"2007-09-27\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at Tartu University Library\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10062/3790\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"http://tartu.ester.ee/record\\u003db1650860~S1*est\"]},\"provenance\":{\"repositoryName\":\"DSpace at Tartu University Library\",\"url\":\"http://hdl.handle.net/10062/23207\",\"id\":\"oai:dspace.utlib.ee:10062/23207\"},\"trust\":0.8667125}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_publication_id":{"type":"STRING","value":"oai:dspace.utlib.ee:10062/3790"},"target_publication_author_list":{"type":"LIST_STRING","value":["Staden, Wilhelm"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.utlib.ee:10062/23207"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"},"trust":{"type":"FLOAT","value":0.8667125},"target_publication_title":{"type":"STRING","value":"Härma, Miina"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_dateofacceptance":{"type":"DATE","value":"2007-09-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace.utlib.ee:10062/3790\",\"titles\":[\"Härma, Miina\"],\"abstracts\":[],\"language\":\"est\",\"subjects\":[],\"creators\":[\"Staden, Wilhelm\"],\"publicationdate\":\"2007-09-27\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at Tartu University Library\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10062/3790\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10062/25535\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10062/25535\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"DSpace at Tartu University Library\",\"url\":\"http://hdl.handle.net/10062/25535\",\"id\":\"oai:dspace.utlib.ee:10062/25535\"},\"trust\":0.86944735}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_publication_id":{"type":"STRING","value":"oai:dspace.utlib.ee:10062/3790"},"target_publication_author_list":{"type":"LIST_STRING","value":["Staden, Wilhelm"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.utlib.ee:10062/25535"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"},"trust":{"type":"FLOAT","value":0.86944735},"target_publication_title":{"type":"STRING","value":"Härma, Miina"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_dateofacceptance":{"type":"DATE","value":"2007-09-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:dspace.utlib.ee:10062/3790\",\"titles\":[\"Härma, Miina\"],\"abstracts\":[\"http://tartu.ester.ee/record\\u003db1650990~S1*est\"],\"language\":\"est\",\"subjects\":[],\"creators\":[\"Staden, Wilhelm\"],\"publicationdate\":\"2007-09-27\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at Tartu University Library\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10062/3790\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"http://tartu.ester.ee/record\\u003db1650990~S1*est\"]},\"provenance\":{\"repositoryName\":\"DSpace at Tartu University Library\",\"url\":\"http://hdl.handle.net/10062/25535\",\"id\":\"oai:dspace.utlib.ee:10062/25535\"},\"trust\":0.073782384}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_publication_id":{"type":"STRING","value":"oai:dspace.utlib.ee:10062/3790"},"target_publication_author_list":{"type":"LIST_STRING","value":["Staden, Wilhelm"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.utlib.ee:10062/25535"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"},"trust":{"type":"FLOAT","value":0.073782384},"target_publication_title":{"type":"STRING","value":"Härma, Miina"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_dateofacceptance":{"type":"DATE","value":"2007-09-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace.utlib.ee:10062/3790\",\"titles\":[\"Härma, Miina\"],\"abstracts\":[],\"language\":\"est\",\"subjects\":[],\"creators\":[\"Staden, Wilhelm\"],\"publicationdate\":\"2007-09-27\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at Tartu University Library\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10062/3790\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10062/25414\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10062/25414\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"DSpace at Tartu University Library\",\"url\":\"http://hdl.handle.net/10062/25414\",\"id\":\"oai:dspace.utlib.ee:10062/25414\"},\"trust\":0.3744368}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_publication_id":{"type":"STRING","value":"oai:dspace.utlib.ee:10062/3790"},"target_publication_author_list":{"type":"LIST_STRING","value":["Staden, Wilhelm"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.utlib.ee:10062/25414"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"},"trust":{"type":"FLOAT","value":0.3744368},"target_publication_title":{"type":"STRING","value":"Härma, Miina"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_dateofacceptance":{"type":"DATE","value":"2007-09-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:dspace.utlib.ee:10062/3790\",\"titles\":[\"Härma, Miina\"],\"abstracts\":[\"http://tartu.ester.ee/record\\u003db1650980~S1*est\"],\"language\":\"est\",\"subjects\":[],\"creators\":[\"Staden, Wilhelm\"],\"publicationdate\":\"2007-09-27\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at Tartu University Library\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10062/3790\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"http://tartu.ester.ee/record\\u003db1650980~S1*est\"]},\"provenance\":{\"repositoryName\":\"DSpace at Tartu University Library\",\"url\":\"http://hdl.handle.net/10062/25414\",\"id\":\"oai:dspace.utlib.ee:10062/25414\"},\"trust\":0.56457233}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_publication_id":{"type":"STRING","value":"oai:dspace.utlib.ee:10062/3790"},"target_publication_author_list":{"type":"LIST_STRING","value":["Staden, Wilhelm"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.utlib.ee:10062/25414"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"},"trust":{"type":"FLOAT","value":0.56457233},"target_publication_title":{"type":"STRING","value":"Härma, Miina"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_dateofacceptance":{"type":"DATE","value":"2007-09-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace.utlib.ee:10062/25535\",\"titles\":[\"Härma, Miina\"],\"abstracts\":[\"http://tartu.ester.ee/record\\u003db1650990~S1*est\"],\"language\":\"und\",\"subjects\":[\"fotod\"],\"creators\":[\"Staden, Wilhelm\"],\"publicationdate\":\"1890-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at Tartu University Library\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10062/25535\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10062/23207\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10062/23207\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"DSpace at Tartu University Library\",\"url\":\"http://hdl.handle.net/10062/23207\",\"id\":\"oai:dspace.utlib.ee:10062/23207\"},\"trust\":0.88286054}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_publication_id":{"type":"STRING","value":"oai:dspace.utlib.ee:10062/25535"},"target_publication_author_list":{"type":"LIST_STRING","value":["Staden, Wilhelm"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.utlib.ee:10062/23207"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"},"target_publication_subject_list":{"type":"LIST_STRING","value":["fotod"]},"trust":{"type":"FLOAT","value":0.88286054},"target_publication_title":{"type":"STRING","value":"Härma, Miina"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_dateofacceptance":{"type":"DATE","value":"1890-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace.utlib.ee:10062/25535\",\"titles\":[\"Härma, Miina\"],\"abstracts\":[\"http://tartu.ester.ee/record\\u003db1650990~S1*est\"],\"language\":\"und\",\"subjects\":[\"fotod\"],\"creators\":[\"Staden, Wilhelm\"],\"publicationdate\":\"1890-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at Tartu University Library\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10062/25535\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10062/3790\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10062/3790\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"DSpace at Tartu University Library\",\"url\":\"http://hdl.handle.net/10062/3790\",\"id\":\"oai:dspace.utlib.ee:10062/3790\"},\"trust\":0.8552944}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_publication_id":{"type":"STRING","value":"oai:dspace.utlib.ee:10062/25535"},"target_publication_author_list":{"type":"LIST_STRING","value":["Staden, Wilhelm"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.utlib.ee:10062/3790"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"},"target_publication_subject_list":{"type":"LIST_STRING","value":["fotod"]},"trust":{"type":"FLOAT","value":0.8552944},"target_publication_title":{"type":"STRING","value":"Härma, Miina"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_dateofacceptance":{"type":"DATE","value":"1890-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace.utlib.ee:10062/25535\",\"titles\":[\"Härma, Miina\"],\"abstracts\":[\"http://tartu.ester.ee/record\\u003db1650990~S1*est\"],\"language\":\"und\",\"subjects\":[\"fotod\"],\"creators\":[\"Staden, Wilhelm\"],\"publicationdate\":\"1890-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at Tartu University Library\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10062/25535\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10062/25414\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10062/25414\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"DSpace at Tartu University Library\",\"url\":\"http://hdl.handle.net/10062/25414\",\"id\":\"oai:dspace.utlib.ee:10062/25414\"},\"trust\":0.56598943}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_publication_id":{"type":"STRING","value":"oai:dspace.utlib.ee:10062/25535"},"target_publication_author_list":{"type":"LIST_STRING","value":["Staden, Wilhelm"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.utlib.ee:10062/25414"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"},"target_publication_subject_list":{"type":"LIST_STRING","value":["fotod"]},"trust":{"type":"FLOAT","value":0.56598943},"target_publication_title":{"type":"STRING","value":"Härma, Miina"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_dateofacceptance":{"type":"DATE","value":"1890-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace.utlib.ee:10062/25414\",\"titles\":[\"Härma, Miina\"],\"abstracts\":[\"http://tartu.ester.ee/record\\u003db1650980~S1*est\"],\"language\":\"und\",\"subjects\":[\"fotod\"],\"creators\":[\"Anonymous\"],\"publicationdate\":\"1893-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at Tartu University Library\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10062/25414\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10062/23207\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10062/23207\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"DSpace at Tartu University Library\",\"url\":\"http://hdl.handle.net/10062/23207\",\"id\":\"oai:dspace.utlib.ee:10062/23207\"},\"trust\":0.44112706}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_publication_id":{"type":"STRING","value":"oai:dspace.utlib.ee:10062/25414"},"target_publication_author_list":{"type":"LIST_STRING","value":["Anonymous"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.utlib.ee:10062/23207"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"},"target_publication_subject_list":{"type":"LIST_STRING","value":["fotod"]},"trust":{"type":"FLOAT","value":0.44112706},"target_publication_title":{"type":"STRING","value":"Härma, Miina"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_dateofacceptance":{"type":"DATE","value":"1893-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace.utlib.ee:10062/25414\",\"titles\":[\"Härma, Miina\"],\"abstracts\":[\"http://tartu.ester.ee/record\\u003db1650980~S1*est\"],\"language\":\"und\",\"subjects\":[\"fotod\"],\"creators\":[\"Anonymous\"],\"publicationdate\":\"1893-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at Tartu University Library\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10062/25414\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10062/3790\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10062/3790\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"DSpace at Tartu University Library\",\"url\":\"http://hdl.handle.net/10062/3790\",\"id\":\"oai:dspace.utlib.ee:10062/3790\"},\"trust\":0.7859853}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_publication_id":{"type":"STRING","value":"oai:dspace.utlib.ee:10062/25414"},"target_publication_author_list":{"type":"LIST_STRING","value":["Anonymous"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.utlib.ee:10062/3790"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"},"target_publication_subject_list":{"type":"LIST_STRING","value":["fotod"]},"trust":{"type":"FLOAT","value":0.7859853},"target_publication_title":{"type":"STRING","value":"Härma, Miina"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_dateofacceptance":{"type":"DATE","value":"1893-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dspace.utlib.ee:10062/25414\",\"titles\":[\"Härma, Miina\"],\"abstracts\":[\"http://tartu.ester.ee/record\\u003db1650980~S1*est\"],\"language\":\"und\",\"subjects\":[\"fotod\"],\"creators\":[\"Anonymous\"],\"publicationdate\":\"1893-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DSpace at Tartu University Library\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10062/25414\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"},{\"url\":\"http://hdl.handle.net/10062/25535\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10062/25535\",\"license\":\"OPEN\",\"hostedby\":\"DSpace at Tartu University Library\",\"instancetype\":\"Other\"}]},\"provenance\":{\"repositoryName\":\"DSpace at Tartu University Library\",\"url\":\"http://hdl.handle.net/10062/25535\",\"id\":\"oai:dspace.utlib.ee:10062/25535\"},\"trust\":0.50197124}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_publication_id":{"type":"STRING","value":"oai:dspace.utlib.ee:10062/25414"},"target_publication_author_list":{"type":"LIST_STRING","value":["Anonymous"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dspace.utlib.ee:10062/25535"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"},"target_publication_subject_list":{"type":"LIST_STRING","value":["fotod"]},"trust":{"type":"FLOAT","value":0.50197124},"target_publication_title":{"type":"STRING","value":"Härma, Miina"},"provenance_datasource_name":{"type":"STRING","value":"DSpace at Tartu University Library"},"target_dateofacceptance":{"type":"DATE","value":"1893-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::ef50c335cca9f340bde656363ebd02fd"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2538331\",\"titles\":[\"Patients’ views on an education booklet following spinal surgery\"],\"abstracts\":[\"Purpose This study evaluated an evidence-based education booklet developed for patients undergoing spinal surgery which was used as a treatment intervention in a multi-centre, factorial, randomised controlled trial (FASTER: Function after spinal treatment, exercise and rehabilitation) investigating the post-operative management of spinal surgery patients. This study sought to determine the acceptability and content of the booklet to patients. Methods Patients receiving the educational booklet before discharge from hospital as part of the FASTER study were asked to complete an evaluation, which rated the booklet “Your Back Operation” with regard to content, information, usability, etc. using forced and open questions. This assessment was conducted at the same time as the initial 6-week post-operative review performed as part of the larger study. Results Therefore, 97% of the 117 trial participants who returned their 6-week evaluation and randomised to receive a booklet returned their questionnaire. The booklet was highly rated receiving an overall rating of 7 or more out of 10 from 101/111 (91%), and high ratings for content, readability and information. The booklet’s key messages were clear to the majority of patients; however, many patients highlighted deficiencies with respect to content particularly in relation to wound care and exercise. Conclusions Patients valued the booklet and rated its content highly. Many suggested that the booklet be developed further and there was a clear desire for specific exercises to be included even though there is no evidence to support specific exercise prescription.\"],\"language\":\"eng\",\"subjects\":[\"Original Article\",\"Evidence-based booklet\",\"Education\",\"Spinal surgery\",\"Acceptability\",\"Surgical journey\"],\"creators\":[\"Mcgregor, A. H.\",\"Henley, A.\",\"Morris, T. P.\",\"Doré, C. J.\"],\"publicationdate\":\"2012-03-01\",\"publisher\":\"Springer-Verlag\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"European Spine Journal\",\"issn\":\"0940-6719\",\"eissn\":\"1432-0932\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1007/s00586-012-2242-y\",\"type\":\"doi\"},{\"value\":\"PMC3535244\",\"type\":\"pmc\"},{\"value\":\"22382727\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3535244\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://discovery.ucl.ac.uk/1391490/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1391490/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"UCL Discovery\",\"url\":\"http://discovery.ucl.ac.uk/1391490/\",\"id\":\"oai:eprints.ucl.ac.uk.OAI2:1391490\"},\"trust\":0.7253079}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2538331"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mcgregor, A. H.","Henley, A.","Morris, T. P.","Doré, C. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.ucl.ac.uk.OAI2:1391490"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Article","Evidence-based booklet","Education","Spinal surgery","Acceptability","Surgical journey"]},"trust":{"type":"FLOAT","value":0.7253079},"target_publication_title":{"type":"STRING","value":"Patients’ views on an education booklet following spinal surgery"},"provenance_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_dateofacceptance":{"type":"DATE","value":"2012-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1391490\",\"titles\":[\"Patients\\u0027 views on an education booklet following spinal surgery\"],\"abstracts\":[\"This study evaluated an evidence-based education booklet developed for patients undergoing spinal surgery which was used as a treatment intervention in a multi-centre, factorial, randomised controlled trial (FASTER: Function after spinal treatment, exercise and rehabilitation) investigating the post-operative management of spinal surgery patients. This study sought to determine the acceptability and content of the booklet to patients.\"],\"language\":\"eng\",\"subjects\":[\"Female, humans, male, pamphlets, patient education as topic, patient satisfaction, postoperative care, postoperative period, questionnaires, spine, treatment outcome\"],\"creators\":[\"Mcgregor, A. H.\",\"Henley, A.\",\"Morris, T. P.\",\"Doré, C. J.\"],\"publicationdate\":\"2012-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"10.1007/s00586-012-2242-y\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1391490/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s00586-012-2242-y\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3535244\",\"id\":\"oai:europepmc.org:2538331\"},\"trust\":0.32622868}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1391490"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mcgregor, A. H.","Henley, A.","Morris, T. P.","Doré, C. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2538331"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Female, humans, male, pamphlets, patient education as topic, patient satisfaction, postoperative care, postoperative period, questionnaires, spine, treatment outcome"]},"trust":{"type":"FLOAT","value":0.32622868},"target_publication_title":{"type":"STRING","value":"Patients\u0027 views on an education booklet following spinal surgery"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2012-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1391490\",\"titles\":[\"Patients\\u0027 views on an education booklet following spinal surgery\"],\"abstracts\":[\"This study evaluated an evidence-based education booklet developed for patients undergoing spinal surgery which was used as a treatment intervention in a multi-centre, factorial, randomised controlled trial (FASTER: Function after spinal treatment, exercise and rehabilitation) investigating the post-operative management of spinal surgery patients. This study sought to determine the acceptability and content of the booklet to patients.\"],\"language\":\"eng\",\"subjects\":[\"Female, humans, male, pamphlets, patient education as topic, patient satisfaction, postoperative care, postoperative period, questionnaires, spine, treatment outcome\"],\"creators\":[\"Mcgregor, A. H.\",\"Henley, A.\",\"Morris, T. P.\",\"Doré, C. J.\"],\"publicationdate\":\"2012-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"PMC3535244\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1391490/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3535244\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3535244\",\"id\":\"oai:europepmc.org:2538331\"},\"trust\":0.32622868}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1391490"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mcgregor, A. H.","Henley, A.","Morris, T. P.","Doré, C. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2538331"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Female, humans, male, pamphlets, patient education as topic, patient satisfaction, postoperative care, postoperative period, questionnaires, spine, treatment outcome"]},"trust":{"type":"FLOAT","value":0.32622868},"target_publication_title":{"type":"STRING","value":"Patients\u0027 views on an education booklet following spinal surgery"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2012-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1391490\",\"titles\":[\"Patients\\u0027 views on an education booklet following spinal surgery\"],\"abstracts\":[\"This study evaluated an evidence-based education booklet developed for patients undergoing spinal surgery which was used as a treatment intervention in a multi-centre, factorial, randomised controlled trial (FASTER: Function after spinal treatment, exercise and rehabilitation) investigating the post-operative management of spinal surgery patients. This study sought to determine the acceptability and content of the booklet to patients.\"],\"language\":\"eng\",\"subjects\":[\"Female, humans, male, pamphlets, patient education as topic, patient satisfaction, postoperative care, postoperative period, questionnaires, spine, treatment outcome\"],\"creators\":[\"Mcgregor, A. H.\",\"Henley, A.\",\"Morris, T. P.\",\"Doré, C. J.\"],\"publicationdate\":\"2012-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"22382727\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1391490/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"22382727\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3535244\",\"id\":\"oai:europepmc.org:2538331\"},\"trust\":0.32622868}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1391490"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mcgregor, A. H.","Henley, A.","Morris, T. P.","Doré, C. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2538331"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Female, humans, male, pamphlets, patient education as topic, patient satisfaction, postoperative care, postoperative period, questionnaires, spine, treatment outcome"]},"trust":{"type":"FLOAT","value":0.32622868},"target_publication_title":{"type":"STRING","value":"Patients\u0027 views on an education booklet following spinal surgery"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2012-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1391490\",\"titles\":[\"Patients\\u0027 views on an education booklet following spinal surgery\"],\"abstracts\":[\"This study evaluated an evidence-based education booklet developed for patients undergoing spinal surgery which was used as a treatment intervention in a multi-centre, factorial, randomised controlled trial (FASTER: Function after spinal treatment, exercise and rehabilitation) investigating the post-operative management of spinal surgery patients. This study sought to determine the acceptability and content of the booklet to patients.\"],\"language\":\"eng\",\"subjects\":[\"Female, humans, male, pamphlets, patient education as topic, patient satisfaction, postoperative care, postoperative period, questionnaires, spine, treatment outcome\"],\"creators\":[\"Mcgregor, A. H.\",\"Henley, A.\",\"Morris, T. P.\",\"Doré, C. J.\"],\"publicationdate\":\"2012-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"10.1007/s00586-012-2242-y\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1391490/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1007/s00586-012-2242-y\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3535244\",\"id\":\"oai:europepmc.org:2538331\"},\"trust\":0.32622868}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1391490"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mcgregor, A. H.","Henley, A.","Morris, T. P.","Doré, C. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2538331"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Female, humans, male, pamphlets, patient education as topic, patient satisfaction, postoperative care, postoperative period, questionnaires, spine, treatment outcome"]},"trust":{"type":"FLOAT","value":0.32622868},"target_publication_title":{"type":"STRING","value":"Patients\u0027 views on an education booklet following spinal surgery"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2012-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1391490\",\"titles\":[\"Patients\\u0027 views on an education booklet following spinal surgery\"],\"abstracts\":[\"This study evaluated an evidence-based education booklet developed for patients undergoing spinal surgery which was used as a treatment intervention in a multi-centre, factorial, randomised controlled trial (FASTER: Function after spinal treatment, exercise and rehabilitation) investigating the post-operative management of spinal surgery patients. This study sought to determine the acceptability and content of the booklet to patients.\"],\"language\":\"eng\",\"subjects\":[\"Female, humans, male, pamphlets, patient education as topic, patient satisfaction, postoperative care, postoperative period, questionnaires, spine, treatment outcome\"],\"creators\":[\"Mcgregor, A. H.\",\"Henley, A.\",\"Morris, T. P.\",\"Doré, C. J.\"],\"publicationdate\":\"2012-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"PMC3535244\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1391490/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3535244\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3535244\",\"id\":\"oai:europepmc.org:2538331\"},\"trust\":0.32622868}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1391490"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mcgregor, A. H.","Henley, A.","Morris, T. P.","Doré, C. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2538331"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Female, humans, male, pamphlets, patient education as topic, patient satisfaction, postoperative care, postoperative period, questionnaires, spine, treatment outcome"]},"trust":{"type":"FLOAT","value":0.32622868},"target_publication_title":{"type":"STRING","value":"Patients\u0027 views on an education booklet following spinal surgery"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2012-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1391490\",\"titles\":[\"Patients\\u0027 views on an education booklet following spinal surgery\"],\"abstracts\":[\"This study evaluated an evidence-based education booklet developed for patients undergoing spinal surgery which was used as a treatment intervention in a multi-centre, factorial, randomised controlled trial (FASTER: Function after spinal treatment, exercise and rehabilitation) investigating the post-operative management of spinal surgery patients. This study sought to determine the acceptability and content of the booklet to patients.\"],\"language\":\"eng\",\"subjects\":[\"Female, humans, male, pamphlets, patient education as topic, patient satisfaction, postoperative care, postoperative period, questionnaires, spine, treatment outcome\"],\"creators\":[\"Mcgregor, A. H.\",\"Henley, A.\",\"Morris, T. P.\",\"Doré, C. J.\"],\"publicationdate\":\"2012-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"22382727\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1391490/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"22382727\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3535244\",\"id\":\"oai:europepmc.org:2538331\"},\"trust\":0.32622868}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1391490"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mcgregor, A. H.","Henley, A.","Morris, T. P.","Doré, C. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2538331"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Female, humans, male, pamphlets, patient education as topic, patient satisfaction, postoperative care, postoperative period, questionnaires, spine, treatment outcome"]},"trust":{"type":"FLOAT","value":0.32622868},"target_publication_title":{"type":"STRING","value":"Patients\u0027 views on an education booklet following spinal surgery"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2012-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dash.harvard.edu:1/10436252\",\"titles\":[\"Longitudinal Course of Deficient Emotional Self-Regulation CBCL Profile in Youth with ADHD: Prospective Controlled Study\"],\"abstracts\":[\"Background: While symptoms of deficient emotional self-regulation (DESR) have been long associated with attention-deficit/hyperactivity disorder (ADHD), there has been limited investigation of this aspect of the clinical picture of the disorder. The main aim of this study was to examine the predictive utility of DESR in moderating the course of ADHD children into adolescence. Methods: Subjects comprised 177 children with and 204 children without ADHD followed for an average of 4 years (aged 6–18 years at baseline, 54% male). Subjects were assessed with structured diagnostic interviews and measures of psychosocial functioning. DESR was defined by the presence (n \\u003d 79) or absence (n \\u003d 98) of Child Behavior Checklist (CBCL)-DESR profile (score ≥ 180 \\u003c 210 total of Attention, Aggression, and Anxious/Depressed subscales) at the baseline assessment. Results: Of subjects with DESR at baseline, 57% had DESR at follow-up. Persistent ADHD was significantly associated with DESR at follow-up (x\\\\(^{2}\\\\)\\\\(_{(1)}\\\\) \\u003d 15.37, P \\u003c 0.001). At follow-up, ADHD + DESR subjects had significantly more comorbidities (z \\u003d 2.55, P \\u003d 0.01), a higher prevalence of oppositional defiant disorder (z \\u003d 3.01, P \\u003d 0.003), and more impaired CBCL social problems t-score (t\\\\(_{(227)}\\\\) \\u003d 2.41, P \\u003d 0.02) versus ADHD subjects. Conclusion: This work suggests that a positive CBCL-DESR profile predicts subsequent psychopathology and functional impairments in children with ADHD suggesting that it has the potential to help identify children with ADHD at high risk for compromised outcomes.\"],\"language\":\"eng\",\"subjects\":[\"attention-deficit/hyperactivity disorder\",\"emotion\",\"regulation\",\"longitudinal\",\"youth\"],\"creators\":[\"Petty, Carter\",\"Hyder, Laran L.\",\"O’connor, Katherine B.\",\"Biederman, Joseph\",\"Spencer, Thomas J.\",\"Surman, Craig B. H.\",\"Faraone, Stephen V.\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Dove Medical Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Digital Access to Scholarship at Harvard\"],\"pids\":[],\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:10436252\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"},{\"url\":\"http://www.dovepress.com/longitudinal-course-of-deficient-emotional-self-regulation-cbcl-profil-a10219\",\"license\":\"OPEN\",\"hostedby\":\"Neuropsychiatric Disease and Treatment\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.dovepress.com/longitudinal-course-of-deficient-emotional-self-regulation-cbcl-profil-a10219\",\"license\":\"OPEN\",\"hostedby\":\"Neuropsychiatric Disease and Treatment\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.dovepress.com/longitudinal-course-of-deficient-emotional-self-regulation-cbcl-profil-a10219\",\"id\":\"oai:doaj.org/article:b99a355fa61d4782b7062592ade186be\"},\"trust\":0.6110041}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_publication_id":{"type":"STRING","value":"oai:dash.harvard.edu:1/10436252"},"target_publication_author_list":{"type":"LIST_STRING","value":["Petty, Carter","Hyder, Laran L.","O’connor, Katherine B.","Biederman, Joseph","Spencer, Thomas J.","Surman, Craig B. H.","Faraone, Stephen V."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:b99a355fa61d4782b7062592ade186be"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["attention-deficit/hyperactivity disorder","emotion","regulation","longitudinal","youth"]},"trust":{"type":"FLOAT","value":0.6110041},"target_publication_title":{"type":"STRING","value":"Longitudinal Course of Deficient Emotional Self-Regulation CBCL Profile in Youth with ADHD: Prospective Controlled Study"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:dash.harvard.edu:1/10436252\",\"titles\":[\"Longitudinal Course of Deficient Emotional Self-Regulation CBCL Profile in Youth with ADHD: Prospective Controlled Study\"],\"abstracts\":[\"Background: While symptoms of deficient emotional self-regulation (DESR) have been long associated with attention-deficit/hyperactivity disorder (ADHD), there has been limited investigation of this aspect of the clinical picture of the disorder. The main aim of this study was to examine the predictive utility of DESR in moderating the course of ADHD children into adolescence. Methods: Subjects comprised 177 children with and 204 children without ADHD followed for an average of 4 years (aged 6–18 years at baseline, 54% male). Subjects were assessed with structured diagnostic interviews and measures of psychosocial functioning. DESR was defined by the presence (n \\u003d 79) or absence (n \\u003d 98) of Child Behavior Checklist (CBCL)-DESR profile (score ≥ 180 \\u003c 210 total of Attention, Aggression, and Anxious/Depressed subscales) at the baseline assessment. Results: Of subjects with DESR at baseline, 57% had DESR at follow-up. Persistent ADHD was significantly associated with DESR at follow-up (x\\\\(^{2}\\\\)\\\\(_{(1)}\\\\) \\u003d 15.37, P \\u003c 0.001). At follow-up, ADHD + DESR subjects had significantly more comorbidities (z \\u003d 2.55, P \\u003d 0.01), a higher prevalence of oppositional defiant disorder (z \\u003d 3.01, P \\u003d 0.003), and more impaired CBCL social problems t-score (t\\\\(_{(227)}\\\\) \\u003d 2.41, P \\u003d 0.02) versus ADHD subjects. Conclusion: This work suggests that a positive CBCL-DESR profile predicts subsequent psychopathology and functional impairments in children with ADHD suggesting that it has the potential to help identify children with ADHD at high risk for compromised outcomes.\"],\"language\":\"eng\",\"subjects\":[\"attention-deficit/hyperactivity disorder\",\"emotion\",\"regulation\",\"longitudinal\",\"youth\"],\"creators\":[\"Petty, Carter\",\"Hyder, Laran L.\",\"O’connor, Katherine B.\",\"Biederman, Joseph\",\"Spencer, Thomas J.\",\"Surman, Craig B. H.\",\"Faraone, Stephen V.\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Dove Medical Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Digital Access to Scholarship at Harvard\"],\"pids\":[{\"value\":\"10.2147/NDT.S29670\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:10436252\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.2147/NDT.S29670\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3404687\",\"id\":\"oai:europepmc.org:2410221\"},\"trust\":0.67291147}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_publication_id":{"type":"STRING","value":"oai:dash.harvard.edu:1/10436252"},"target_publication_author_list":{"type":"LIST_STRING","value":["Petty, Carter","Hyder, Laran L.","O’connor, Katherine B.","Biederman, Joseph","Spencer, Thomas J.","Surman, Craig B. H.","Faraone, Stephen V."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2410221"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["attention-deficit/hyperactivity disorder","emotion","regulation","longitudinal","youth"]},"trust":{"type":"FLOAT","value":0.67291147},"target_publication_title":{"type":"STRING","value":"Longitudinal Course of Deficient Emotional Self-Regulation CBCL Profile in Youth with ADHD: Prospective Controlled Study"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:dash.harvard.edu:1/10436252\",\"titles\":[\"Longitudinal Course of Deficient Emotional Self-Regulation CBCL Profile in Youth with ADHD: Prospective Controlled Study\"],\"abstracts\":[\"Background: While symptoms of deficient emotional self-regulation (DESR) have been long associated with attention-deficit/hyperactivity disorder (ADHD), there has been limited investigation of this aspect of the clinical picture of the disorder. The main aim of this study was to examine the predictive utility of DESR in moderating the course of ADHD children into adolescence. Methods: Subjects comprised 177 children with and 204 children without ADHD followed for an average of 4 years (aged 6–18 years at baseline, 54% male). Subjects were assessed with structured diagnostic interviews and measures of psychosocial functioning. DESR was defined by the presence (n \\u003d 79) or absence (n \\u003d 98) of Child Behavior Checklist (CBCL)-DESR profile (score ≥ 180 \\u003c 210 total of Attention, Aggression, and Anxious/Depressed subscales) at the baseline assessment. Results: Of subjects with DESR at baseline, 57% had DESR at follow-up. Persistent ADHD was significantly associated with DESR at follow-up (x\\\\(^{2}\\\\)\\\\(_{(1)}\\\\) \\u003d 15.37, P \\u003c 0.001). At follow-up, ADHD + DESR subjects had significantly more comorbidities (z \\u003d 2.55, P \\u003d 0.01), a higher prevalence of oppositional defiant disorder (z \\u003d 3.01, P \\u003d 0.003), and more impaired CBCL social problems t-score (t\\\\(_{(227)}\\\\) \\u003d 2.41, P \\u003d 0.02) versus ADHD subjects. Conclusion: This work suggests that a positive CBCL-DESR profile predicts subsequent psychopathology and functional impairments in children with ADHD suggesting that it has the potential to help identify children with ADHD at high risk for compromised outcomes.\"],\"language\":\"eng\",\"subjects\":[\"attention-deficit/hyperactivity disorder\",\"emotion\",\"regulation\",\"longitudinal\",\"youth\"],\"creators\":[\"Petty, Carter\",\"Hyder, Laran L.\",\"O’connor, Katherine B.\",\"Biederman, Joseph\",\"Spencer, Thomas J.\",\"Surman, Craig B. H.\",\"Faraone, Stephen V.\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Dove Medical Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Digital Access to Scholarship at Harvard\"],\"pids\":[{\"value\":\"PMC3404687\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:10436252\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3404687\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3404687\",\"id\":\"oai:europepmc.org:2410221\"},\"trust\":0.67291147}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_publication_id":{"type":"STRING","value":"oai:dash.harvard.edu:1/10436252"},"target_publication_author_list":{"type":"LIST_STRING","value":["Petty, Carter","Hyder, Laran L.","O’connor, Katherine B.","Biederman, Joseph","Spencer, Thomas J.","Surman, Craig B. H.","Faraone, Stephen V."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2410221"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["attention-deficit/hyperactivity disorder","emotion","regulation","longitudinal","youth"]},"trust":{"type":"FLOAT","value":0.67291147},"target_publication_title":{"type":"STRING","value":"Longitudinal Course of Deficient Emotional Self-Regulation CBCL Profile in Youth with ADHD: Prospective Controlled Study"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:dash.harvard.edu:1/10436252\",\"titles\":[\"Longitudinal Course of Deficient Emotional Self-Regulation CBCL Profile in Youth with ADHD: Prospective Controlled Study\"],\"abstracts\":[\"Background: While symptoms of deficient emotional self-regulation (DESR) have been long associated with attention-deficit/hyperactivity disorder (ADHD), there has been limited investigation of this aspect of the clinical picture of the disorder. The main aim of this study was to examine the predictive utility of DESR in moderating the course of ADHD children into adolescence. Methods: Subjects comprised 177 children with and 204 children without ADHD followed for an average of 4 years (aged 6–18 years at baseline, 54% male). Subjects were assessed with structured diagnostic interviews and measures of psychosocial functioning. DESR was defined by the presence (n \\u003d 79) or absence (n \\u003d 98) of Child Behavior Checklist (CBCL)-DESR profile (score ≥ 180 \\u003c 210 total of Attention, Aggression, and Anxious/Depressed subscales) at the baseline assessment. Results: Of subjects with DESR at baseline, 57% had DESR at follow-up. Persistent ADHD was significantly associated with DESR at follow-up (x\\\\(^{2}\\\\)\\\\(_{(1)}\\\\) \\u003d 15.37, P \\u003c 0.001). At follow-up, ADHD + DESR subjects had significantly more comorbidities (z \\u003d 2.55, P \\u003d 0.01), a higher prevalence of oppositional defiant disorder (z \\u003d 3.01, P \\u003d 0.003), and more impaired CBCL social problems t-score (t\\\\(_{(227)}\\\\) \\u003d 2.41, P \\u003d 0.02) versus ADHD subjects. Conclusion: This work suggests that a positive CBCL-DESR profile predicts subsequent psychopathology and functional impairments in children with ADHD suggesting that it has the potential to help identify children with ADHD at high risk for compromised outcomes.\"],\"language\":\"eng\",\"subjects\":[\"attention-deficit/hyperactivity disorder\",\"emotion\",\"regulation\",\"longitudinal\",\"youth\"],\"creators\":[\"Petty, Carter\",\"Hyder, Laran L.\",\"O’connor, Katherine B.\",\"Biederman, Joseph\",\"Spencer, Thomas J.\",\"Surman, Craig B. H.\",\"Faraone, Stephen V.\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Dove Medical Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Digital Access to Scholarship at Harvard\"],\"pids\":[{\"value\":\"10.2147/NDT.S29670\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:10436252\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.2147/NDT.S29670\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3404687\",\"id\":\"oai:europepmc.org:2410221\"},\"trust\":0.67291147}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_publication_id":{"type":"STRING","value":"oai:dash.harvard.edu:1/10436252"},"target_publication_author_list":{"type":"LIST_STRING","value":["Petty, Carter","Hyder, Laran L.","O’connor, Katherine B.","Biederman, Joseph","Spencer, Thomas J.","Surman, Craig B. H.","Faraone, Stephen V."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2410221"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["attention-deficit/hyperactivity disorder","emotion","regulation","longitudinal","youth"]},"trust":{"type":"FLOAT","value":0.67291147},"target_publication_title":{"type":"STRING","value":"Longitudinal Course of Deficient Emotional Self-Regulation CBCL Profile in Youth with ADHD: Prospective Controlled Study"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:dash.harvard.edu:1/10436252\",\"titles\":[\"Longitudinal Course of Deficient Emotional Self-Regulation CBCL Profile in Youth with ADHD: Prospective Controlled Study\"],\"abstracts\":[\"Background: While symptoms of deficient emotional self-regulation (DESR) have been long associated with attention-deficit/hyperactivity disorder (ADHD), there has been limited investigation of this aspect of the clinical picture of the disorder. The main aim of this study was to examine the predictive utility of DESR in moderating the course of ADHD children into adolescence. Methods: Subjects comprised 177 children with and 204 children without ADHD followed for an average of 4 years (aged 6–18 years at baseline, 54% male). Subjects were assessed with structured diagnostic interviews and measures of psychosocial functioning. DESR was defined by the presence (n \\u003d 79) or absence (n \\u003d 98) of Child Behavior Checklist (CBCL)-DESR profile (score ≥ 180 \\u003c 210 total of Attention, Aggression, and Anxious/Depressed subscales) at the baseline assessment. Results: Of subjects with DESR at baseline, 57% had DESR at follow-up. Persistent ADHD was significantly associated with DESR at follow-up (x\\\\(^{2}\\\\)\\\\(_{(1)}\\\\) \\u003d 15.37, P \\u003c 0.001). At follow-up, ADHD + DESR subjects had significantly more comorbidities (z \\u003d 2.55, P \\u003d 0.01), a higher prevalence of oppositional defiant disorder (z \\u003d 3.01, P \\u003d 0.003), and more impaired CBCL social problems t-score (t\\\\(_{(227)}\\\\) \\u003d 2.41, P \\u003d 0.02) versus ADHD subjects. Conclusion: This work suggests that a positive CBCL-DESR profile predicts subsequent psychopathology and functional impairments in children with ADHD suggesting that it has the potential to help identify children with ADHD at high risk for compromised outcomes.\"],\"language\":\"eng\",\"subjects\":[\"attention-deficit/hyperactivity disorder\",\"emotion\",\"regulation\",\"longitudinal\",\"youth\"],\"creators\":[\"Petty, Carter\",\"Hyder, Laran L.\",\"O’connor, Katherine B.\",\"Biederman, Joseph\",\"Spencer, Thomas J.\",\"Surman, Craig B. H.\",\"Faraone, Stephen V.\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"Dove Medical Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Digital Access to Scholarship at Harvard\"],\"pids\":[{\"value\":\"PMC3404687\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:10436252\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3404687\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3404687\",\"id\":\"oai:europepmc.org:2410221\"},\"trust\":0.67291147}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_publication_id":{"type":"STRING","value":"oai:dash.harvard.edu:1/10436252"},"target_publication_author_list":{"type":"LIST_STRING","value":["Petty, Carter","Hyder, Laran L.","O’connor, Katherine B.","Biederman, Joseph","Spencer, Thomas J.","Surman, Craig B. H.","Faraone, Stephen V."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2410221"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["attention-deficit/hyperactivity disorder","emotion","regulation","longitudinal","youth"]},"trust":{"type":"FLOAT","value":0.67291147},"target_publication_title":{"type":"STRING","value":"Longitudinal Course of Deficient Emotional Self-Regulation CBCL Profile in Youth with ADHD: Prospective Controlled Study"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2410221\",\"titles\":[\"Longitudinal course of deficient emotional self-regulation CBCL profile in youth with ADHD: prospective controlled study\"],\"abstracts\":[\"Background While symptoms of deficient emotional self-regulation (DESR) have been long associated with attention-deficit/hyperactivity disorder (ADHD), there has been limited investigation of this aspect of the clinical picture of the disorder. The main aim of this study was to examine the predictive utility of DESR in moderating the course of ADHD children into adolescence. Methods Subjects comprised 177 children with and 204 children without ADHD followed for an average of 4 years (aged 6–18 years at baseline, 54% male). Subjects were assessed with structured diagnostic interviews and measures of psychosocial functioning. DESR was defined by the presence (n \\u003d 79) or absence (n \\u003d 98) of Child Behavior Checklist (CBCL)-DESR profile (score ≥ 180 \\u003c 210 total of Attention, Aggression, and Anxious/Depressed subscales) at the baseline assessment. Results Of subjects with DESR at baseline, 57% had DESR at follow-up. Persistent ADHD was significantly associated with DESR at follow-up (χ2 (1) \\u003d 15.37, P \\u003c 0.001). At follow-up, ADHD + DESR subjects had significantly more comorbidities (z \\u003d 2.55, P \\u003d 0.01), a higher prevalence of oppositional defiant disorder (z \\u003d 3.01, P \\u003d 0.003), and more impaired CBCL social problems t-score (t(227) \\u003d 2.41, P \\u003d 0.02) versus ADHD subjects. Conclusion This work suggests that a positive CBCL-DESR profile predicts subsequent psychopathology and functional impairments in children with ADHD suggesting that it has the potential to help identify children with ADHD at high risk for compromised outcomes.\"],\"language\":\"eng\",\"subjects\":[\"Original Research\",\"attention-deficit/hyperactivity disorder\",\"emotion\",\"regulation\",\"longitudinal\",\"youth\"],\"creators\":[\"Biederman, Joseph\",\"Spencer, Thomas J.\",\"Petty, Carter\",\"Hyder, Laran L.\",\"O’connor, Katherine B.\",\"Surman, Craig Bh\",\"Faraone, Stephen V.\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"Dove Medical Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Neuropsychiatric Disease and Treatment\",\"issn\":\"1176-6328\",\"eissn\":\"1178-2021\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.2147/NDT.S29670\",\"type\":\"doi\"},{\"value\":\"PMC3404687\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3404687\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.dovepress.com/longitudinal-course-of-deficient-emotional-self-regulation-cbcl-profil-a10219\",\"license\":\"OPEN\",\"hostedby\":\"Neuropsychiatric Disease and Treatment\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.dovepress.com/longitudinal-course-of-deficient-emotional-self-regulation-cbcl-profil-a10219\",\"license\":\"OPEN\",\"hostedby\":\"Neuropsychiatric Disease and Treatment\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.dovepress.com/longitudinal-course-of-deficient-emotional-self-regulation-cbcl-profil-a10219\",\"id\":\"oai:doaj.org/article:b99a355fa61d4782b7062592ade186be\"},\"trust\":0.6151491}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2410221"},"target_publication_author_list":{"type":"LIST_STRING","value":["Biederman, Joseph","Spencer, Thomas J.","Petty, Carter","Hyder, Laran L.","O’connor, Katherine B.","Surman, Craig Bh","Faraone, Stephen V."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:b99a355fa61d4782b7062592ade186be"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Research","attention-deficit/hyperactivity disorder","emotion","regulation","longitudinal","youth"]},"trust":{"type":"FLOAT","value":0.6151491},"target_publication_title":{"type":"STRING","value":"Longitudinal course of deficient emotional self-regulation CBCL profile in youth with ADHD: prospective controlled study"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2410221\",\"titles\":[\"Longitudinal course of deficient emotional self-regulation CBCL profile in youth with ADHD: prospective controlled study\"],\"abstracts\":[\"Background While symptoms of deficient emotional self-regulation (DESR) have been long associated with attention-deficit/hyperactivity disorder (ADHD), there has been limited investigation of this aspect of the clinical picture of the disorder. The main aim of this study was to examine the predictive utility of DESR in moderating the course of ADHD children into adolescence. Methods Subjects comprised 177 children with and 204 children without ADHD followed for an average of 4 years (aged 6–18 years at baseline, 54% male). Subjects were assessed with structured diagnostic interviews and measures of psychosocial functioning. DESR was defined by the presence (n \\u003d 79) or absence (n \\u003d 98) of Child Behavior Checklist (CBCL)-DESR profile (score ≥ 180 \\u003c 210 total of Attention, Aggression, and Anxious/Depressed subscales) at the baseline assessment. Results Of subjects with DESR at baseline, 57% had DESR at follow-up. Persistent ADHD was significantly associated with DESR at follow-up (χ2 (1) \\u003d 15.37, P \\u003c 0.001). At follow-up, ADHD + DESR subjects had significantly more comorbidities (z \\u003d 2.55, P \\u003d 0.01), a higher prevalence of oppositional defiant disorder (z \\u003d 3.01, P \\u003d 0.003), and more impaired CBCL social problems t-score (t(227) \\u003d 2.41, P \\u003d 0.02) versus ADHD subjects. Conclusion This work suggests that a positive CBCL-DESR profile predicts subsequent psychopathology and functional impairments in children with ADHD suggesting that it has the potential to help identify children with ADHD at high risk for compromised outcomes.\"],\"language\":\"eng\",\"subjects\":[\"Original Research\",\"attention-deficit/hyperactivity disorder\",\"emotion\",\"regulation\",\"longitudinal\",\"youth\"],\"creators\":[\"Biederman, Joseph\",\"Spencer, Thomas J.\",\"Petty, Carter\",\"Hyder, Laran L.\",\"O’connor, Katherine B.\",\"Surman, Craig Bh\",\"Faraone, Stephen V.\"],\"publicationdate\":\"2012-06-01\",\"publisher\":\"Dove Medical Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Neuropsychiatric Disease and Treatment\",\"issn\":\"1176-6328\",\"eissn\":\"1178-2021\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.2147/NDT.S29670\",\"type\":\"doi\"},{\"value\":\"PMC3404687\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3404687\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:10436252\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:10436252\",\"license\":\"OPEN\",\"hostedby\":\"Digital Access to Scholarship at Harvard\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Digital Access to Scholarship at Harvard\",\"url\":\"http://nrs.harvard.edu/urn-3:HUL.InstRepos:10436252\",\"id\":\"oai:dash.harvard.edu:1/10436252\"},\"trust\":0.40039182}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2410221"},"target_publication_author_list":{"type":"LIST_STRING","value":["Biederman, Joseph","Spencer, Thomas J.","Petty, Carter","Hyder, Laran L.","O’connor, Katherine B.","Surman, Craig Bh","Faraone, Stephen V."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dash.harvard.edu:1/10436252"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8f19793b2671094e63a15ab883d50137"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Research","attention-deficit/hyperactivity disorder","emotion","regulation","longitudinal","youth"]},"trust":{"type":"FLOAT","value":0.40039182},"target_publication_title":{"type":"STRING","value":"Longitudinal course of deficient emotional self-regulation CBCL profile in youth with ADHD: prospective controlled study"},"provenance_datasource_name":{"type":"STRING","value":"Digital Access to Scholarship at Harvard"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00206816v1\",\"titles\":[\"Étude expérimentale de fonctions de distribution par une sonde à séparation électrostatique\"],\"abstracts\":[\"On se propose dans ce travail d\\u0027étudier et de préciser la forme de certaines fonctions de distribution en énergie des électrons, dans le but d\\u0027obtenir un plasma de caractéristiques appropriées aux études sur la diffusion due au bruit aléatoire. On utilise pour cela un système physique permettant la séparation des courants ionique et électronique circulant dans une sonde de Langmuir. Les effets pouvant perturber la mesure sont examinés, afin d\\u0027obtenir une précision suffisante. On fournit alors les caractéristiques du plasma obtenu.\"],\"language\":\"fra/fre\",\"subjects\":[\"plasma diagnostics\",\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Bussac, J. -P\",\"Frank, R.\",\"Weisse, J.\"],\"publicationdate\":\"1969-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphys:01969003007055100\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00206816\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00206816\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00206816\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00206816\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00206816\"},\"trust\":0.9688385}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00206816v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bussac, J. -P","Frank, R.","Weisse, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00206816"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["plasma diagnostics","[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.9688385},"target_publication_title":{"type":"STRING","value":"Étude expérimentale de fonctions de distribution par une sonde à séparation électrostatique"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1969-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00206816\",\"titles\":[\"Étude expérimentale de fonctions de distribution par une sonde à séparation électrostatique\"],\"abstracts\":[\"On se propose dans ce travail d\\u0027étudier et de préciser la forme de certaines fonctions de distribution en énergie des électrons, dans le but d\\u0027obtenir un plasma de caractéristiques appropriées aux études sur la diffusion due au bruit aléatoire. On utilise pour cela un système physique permettant la séparation des courants ionique et électronique circulant dans une sonde de Langmuir. Les effets pouvant perturber la mesure sont examinés, afin d\\u0027obtenir une précision suffisante. On fournit alors les caractéristiques du plasma obtenu.\"],\"language\":\"fra/fre\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\",\"plasma diagnostics\"],\"creators\":[\"Bussac, J. -P\",\"Frank, R.\",\"Weisse, J.\"],\"publicationdate\":\"1969-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphys:01969003007055100\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00206816\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00206816\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00206816\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00206816\",\"id\":\"oai:HAL:jpa-00206816v1\"},\"trust\":0.30852586}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00206816"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bussac, J. -P","Frank, R.","Weisse, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00206816v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens","plasma diagnostics"]},"trust":{"type":"FLOAT","value":0.30852586},"target_publication_title":{"type":"STRING","value":"Étude expérimentale de fonctions de distribution par une sonde à séparation électrostatique"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1969-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/420894\",\"titles\":[\"Baculovirus-based production of biopharmaceuticals free of contaminating baculoviral virions\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Laboratorium voor Virologie\",\"Laboratory of Virology\",\"PE\\u0026RC\",\"PE\\u0026RC\"],\"creators\":[\"Oers, M. M.\",\"Marek, M.\",\"Merten, O. W.\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/194685\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Patent\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/420894\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Patent\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/420894\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Patent\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/420894\",\"id\":\"wur:oai:library.wur.nl:wurpubs/420894\"},\"trust\":0.08700484}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/420894"},"target_publication_author_list":{"type":"LIST_STRING","value":["Oers, M. M.","Marek, M.","Merten, O. W."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/420894"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Laboratorium voor Virologie","Laboratory of Virology","PE\u0026RC","PE\u0026RC"]},"trust":{"type":"FLOAT","value":0.08700484},"target_publication_title":{"type":"STRING","value":"Baculovirus-based production of biopharmaceuticals free of contaminating baculoviral virions"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00897035v1\",\"titles\":[\"THE IN VIVO SYNTHESIS OF DNA AND PHOSPHOLIPIDS BY FRACTIONS OF PREGNANT RAT UTERUS\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.BA] Life Sciences/Animal biology\",\"[SDV.BBM.BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules\",\"[SDV.BBM.BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics\"],\"creators\":[\"E O Grady, J.\",\"T Heald, P.\"],\"publicationdate\":\"1976-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00897035\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00897035\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00897035\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00897035\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00897035\"},\"trust\":0.3792423}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00897035v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["E O Grady, J.","T Heald, P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00897035"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.BA] Life Sciences/Animal biology","[SDV.BBM.BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules","[SDV.BBM.BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics"]},"trust":{"type":"FLOAT","value":0.3792423},"target_publication_title":{"type":"STRING","value":"THE IN VIVO SYNTHESIS OF DNA AND PHOSPHOLIPIDS BY FRACTIONS OF PREGNANT RAT UTERUS"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1976-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00897035\",\"titles\":[\"THE IN VIVO SYNTHESIS OF DNA AND PHOSPHOLIPIDS BY FRACTIONS OF PREGNANT RAT UTERUS\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:BA] Life Sciences/Animal biology\",\"[SDV:BA] Sciences du Vivant/Biologie animale\",\"[SDV:BBM:BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules\",\"[SDV:BBM:BC] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biochimie\",\"[SDV:BBM:BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics\",\"[SDV:BBM:BP] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biophysique\"],\"creators\":[\"E O Grady, J.\",\"T Heald, P.\"],\"publicationdate\":\"1976-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00897035\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00897035\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00897035\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00897035\",\"id\":\"oai:HAL:hal-00897035v1\"},\"trust\":0.16246074}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00897035"},"target_publication_author_list":{"type":"LIST_STRING","value":["E O Grady, J.","T Heald, P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00897035v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BA] Life Sciences/Animal biology","[SDV:BA] Sciences du Vivant/Biologie animale","[SDV:BBM:BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules","[SDV:BBM:BC] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biochimie","[SDV:BBM:BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics","[SDV:BBM:BP] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biophysique"]},"trust":{"type":"FLOAT","value":0.16246074},"target_publication_title":{"type":"STRING","value":"THE IN VIVO SYNTHESIS OF DNA AND PHOSPHOLIPIDS BY FRACTIONS OF PREGNANT RAT UTERUS"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1976-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00897035\",\"titles\":[\"THE IN VIVO SYNTHESIS OF DNA AND PHOSPHOLIPIDS BY FRACTIONS OF PREGNANT RAT UTERUS\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:BA] Life Sciences/Animal biology\",\"[SDV:BA] Sciences du Vivant/Biologie animale\",\"[SDV:BBM:BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules\",\"[SDV:BBM:BC] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biochimie\",\"[SDV:BBM:BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics\",\"[SDV:BBM:BP] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biophysique\"],\"creators\":[\"E O Grady, J.\",\"T Heald, P.\"],\"publicationdate\":\"1976-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00897035\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"International audience\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00897035\",\"id\":\"oai:HAL:hal-00897035v1\"},\"trust\":0.70103884}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00897035"},"target_publication_author_list":{"type":"LIST_STRING","value":["E O Grady, J.","T Heald, P."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00897035v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BA] Life Sciences/Animal biology","[SDV:BA] Sciences du Vivant/Biologie animale","[SDV:BBM:BC] Life Sciences/Biochemistry, Molecular Biology/Biomolecules","[SDV:BBM:BC] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biochimie","[SDV:BBM:BP] Life Sciences/Biochemistry, Molecular Biology/Biophysics","[SDV:BBM:BP] Sciences du Vivant/Biochimie, Biologie Moléculaire/Biophysique"]},"trust":{"type":"FLOAT","value":0.70103884},"target_publication_title":{"type":"STRING","value":"THE IN VIVO SYNTHESIS OF DNA AND PHOSPHOLIPIDS BY FRACTIONS OF PREGNANT RAT UTERUS"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1976-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00888693v1\",\"titles\":[\"Paramètres d\\u0027uréolyse et digestibilité de la paille traitée à l\\u0027urée *\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.SA.ZOO] Life Sciences/Agricultural sciences/Zootechny\"],\"creators\":[\"Chermiti, A.\",\"Nefzaoui, A.\",\"Cordesse, R.\",\"Amri, T.\",\"Laajili, M.\"],\"publicationdate\":\"1989-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00888693\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00888693\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00888693\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00888693\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00888693\"},\"trust\":0.116235495}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00888693v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Chermiti, A.","Nefzaoui, A.","Cordesse, R.","Amri, T.","Laajili, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00888693"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.SA.ZOO] Life Sciences/Agricultural sciences/Zootechny"]},"trust":{"type":"FLOAT","value":0.116235495},"target_publication_title":{"type":"STRING","value":"Paramètres d\u0027uréolyse et digestibilité de la paille traitée à l\u0027urée *"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1989-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00888693\",\"titles\":[\"Paramètres d\\u0027uréolyse et digestibilité de la paille traitée à l\\u0027urée *\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:SA:ZOO] Life Sciences/Agricultural sciences/Zootechny\",\"[SDV:SA:ZOO] Sciences du Vivant/Sciences agricoles/Zootechnie\"],\"creators\":[\"Chermiti, A.\",\"Nefzaoui, A.\",\"Cordesse, R.\",\"Amri, T.\",\"Laajili, M.\"],\"publicationdate\":\"1989-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00888693\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00888693\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00888693\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00888693\",\"id\":\"oai:HAL:hal-00888693v1\"},\"trust\":0.25495797}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00888693"},"target_publication_author_list":{"type":"LIST_STRING","value":["Chermiti, A.","Nefzaoui, A.","Cordesse, R.","Amri, T.","Laajili, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00888693v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:SA:ZOO] Life Sciences/Agricultural sciences/Zootechny","[SDV:SA:ZOO] Sciences du Vivant/Sciences agricoles/Zootechnie"]},"trust":{"type":"FLOAT","value":0.25495797},"target_publication_title":{"type":"STRING","value":"Paramètres d\u0027uréolyse et digestibilité de la paille traitée à l\u0027urée *"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1989-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00888693\",\"titles\":[\"Paramètres d\\u0027uréolyse et digestibilité de la paille traitée à l\\u0027urée *\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:SA:ZOO] Life Sciences/Agricultural sciences/Zootechny\",\"[SDV:SA:ZOO] Sciences du Vivant/Sciences agricoles/Zootechnie\"],\"creators\":[\"Chermiti, A.\",\"Nefzaoui, A.\",\"Cordesse, R.\",\"Amri, T.\",\"Laajili, M.\"],\"publicationdate\":\"1989-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00888693\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"International audience\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00888693\",\"id\":\"oai:HAL:hal-00888693v1\"},\"trust\":0.49944073}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00888693"},"target_publication_author_list":{"type":"LIST_STRING","value":["Chermiti, A.","Nefzaoui, A.","Cordesse, R.","Amri, T.","Laajili, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00888693v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:SA:ZOO] Life Sciences/Agricultural sciences/Zootechny","[SDV:SA:ZOO] Sciences du Vivant/Sciences agricoles/Zootechnie"]},"trust":{"type":"FLOAT","value":0.49944073},"target_publication_title":{"type":"STRING","value":"Paramètres d\u0027uréolyse et digestibilité de la paille traitée à l\u0027urée *"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1989-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hdrnet.org:283\",\"titles\":[\"Local Economic Development Agencies\"],\"abstracts\":[\"This document present the Local economic development agencies (ADEL), an international co-operation instrument for human development, economic democratization and poverty reduction. It explains ADEL\\u0027s characteristics, their model, operational management and functioning, how to set them up, their durability and impact. At the end the ADEL international network is presented.\"],\"language\":\"und\",\"subjects\":[\"Policies\"],\"creators\":[\"Dario, G.\"],\"publicationdate\":\"2000-01-01\",\"publisher\":\"Dario, G. (ed.)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Human Development Resource Network (HDRNet)\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdrnet.org/283/1/adel.ENG.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Human Development Resource Network (HDRNet)\",\"instancetype\":\"Book\"},{\"url\":\"http://hdrnet.org/236/1/adel.ENG.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Human Development Resource Network (HDRNet)\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdrnet.org/236/1/adel.ENG.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Human Development Resource Network (HDRNet)\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Human Development Resource Network (HDRNet)\",\"url\":\"http://hdrnet.org/236/1/adel.ENG.pdf\",\"id\":\"oai:hdrnet.org:236\"},\"trust\":0.06804705}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Human Development Resource Network (HDRNet)"},"target_publication_id":{"type":"STRING","value":"oai:hdrnet.org:283"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dario, G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hdrnet.org:236"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::7b5bba8e856860f1ae4aeb39d431dc0d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Policies"]},"trust":{"type":"FLOAT","value":0.06804705},"target_publication_title":{"type":"STRING","value":"Local Economic Development Agencies"},"provenance_datasource_name":{"type":"STRING","value":"Human Development Resource Network (HDRNet)"},"target_dateofacceptance":{"type":"DATE","value":"2000-01-01"},"target_datasource_id":{"type":"STRING","value":"10|driver______::7b5bba8e856860f1ae4aeb39d431dc0d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hdrnet.org:236\",\"titles\":[\"Local Economic Development Agencies\"],\"abstracts\":[\"This document present the Local economic development agencies (ADEL), an international co-operation instrument for human development, economic democratization and poverty reduction. It explains ADEL\\u0027s characteristics, their model, operational management and functioning, how to set them up, their durability and impact. At the end the ADEL international network is presented.\"],\"language\":\"und\",\"subjects\":[\"Policies\"],\"creators\":[\"Dario, G.\"],\"publicationdate\":\"2000-01-01\",\"publisher\":\"ART Initiative, UNDP, ILO, UNOPS, Eurada\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Human Development Resource Network (HDRNet)\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdrnet.org/236/1/adel.ENG.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Human Development Resource Network (HDRNet)\",\"instancetype\":\"Book\"},{\"url\":\"http://hdrnet.org/283/1/adel.ENG.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Human Development Resource Network (HDRNet)\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdrnet.org/283/1/adel.ENG.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Human Development Resource Network (HDRNet)\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Human Development Resource Network (HDRNet)\",\"url\":\"http://hdrnet.org/283/1/adel.ENG.pdf\",\"id\":\"oai:hdrnet.org:283\"},\"trust\":0.37468135}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Human Development Resource Network (HDRNet)"},"target_publication_id":{"type":"STRING","value":"oai:hdrnet.org:236"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dario, G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hdrnet.org:283"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::7b5bba8e856860f1ae4aeb39d431dc0d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Policies"]},"trust":{"type":"FLOAT","value":0.37468135},"target_publication_title":{"type":"STRING","value":"Local Economic Development Agencies"},"provenance_datasource_name":{"type":"STRING","value":"Human Development Resource Network (HDRNet)"},"target_dateofacceptance":{"type":"DATE","value":"2000-01-01"},"target_datasource_id":{"type":"STRING","value":"10|driver______::7b5bba8e856860f1ae4aeb39d431dc0d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberch:7009\",\"titles\":[\"Purpose and Scope\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Blank, David M.\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/chapters/c7009.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"},{\"url\":\"http://www.nber.org/chapters/c9331.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.nber.org/chapters/c9331.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.nber.org/chapters/c9331.pdf\",\"id\":\"oai:RePEc:nbr:nberch:9331\"},\"trust\":0.566092}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberch:7009"},"target_publication_author_list":{"type":"LIST_STRING","value":["Blank, David M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:nbr:nberch:9331"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.566092},"target_publication_title":{"type":"STRING","value":"Purpose and Scope"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberch:9331\",\"titles\":[\"Purpose and Scope\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Klaman, Saul B.\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/chapters/c9331.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"},{\"url\":\"http://www.nber.org/chapters/c7009.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.nber.org/chapters/c7009.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.nber.org/chapters/c7009.pdf\",\"id\":\"oai:RePEc:nbr:nberch:7009\"},\"trust\":0.43948126}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberch:9331"},"target_publication_author_list":{"type":"LIST_STRING","value":["Klaman, Saul B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:nbr:nberch:7009"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.43948126},"target_publication_title":{"type":"STRING","value":"Purpose and Scope"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/488580\",\"titles\":[\"Aromameter onthult smaakverlies groente en fruit\"],\"abstracts\":[\"Een tomaat in de koelkast verliest al snel onomkeerbaar zijn smaak. Dat blijkt uit metingen met een nieuw apparaat, ontwikkeld door Wageningen UR. Dat kan snel en nauwkeurig veranderingen in het aroma vaststellen.\"],\"language\":\"dut/nld\",\"subjects\":[\"groenten\",\"vegetables\",\"fruit\",\"fruit\",\"smaak\",\"taste\",\"bemonsteren\",\"sampling\",\"meting\",\"measurement\",\"apparatuur\",\"apparatus\",\"innovaties\",\"innovations\",\"houdbaarheid (kwaliteit)\",\"keeping quality\",\"reductie\",\"reduction\",\"aroma\",\"aroma\",\"verandering\",\"change\",\"Flavours\",\"Geur- en smaakstoffen\",\"Fruit Vegetables\",\"Vruchtgroenten\"],\"creators\":[\"Woltering, E. J.\"],\"publicationdate\":\"2015-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/345477\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Article\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/488580\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Contribution for newspaper or weekly magazine\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/488580\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Contribution for newspaper or weekly magazine\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/488580\",\"id\":\"wur:oai:library.wur.nl:wurpubs/488580\"},\"trust\":0.38142127}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/488580"},"target_publication_author_list":{"type":"LIST_STRING","value":["Woltering, E. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/488580"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["groenten","vegetables","fruit","fruit","smaak","taste","bemonsteren","sampling","meting","measurement","apparatuur","apparatus","innovaties","innovations","houdbaarheid (kwaliteit)","keeping quality","reductie","reduction","aroma","aroma","verandering","change","Flavours","Geur- en smaakstoffen","Fruit Vegetables","Vruchtgroenten"]},"trust":{"type":"FLOAT","value":0.38142127},"target_publication_title":{"type":"STRING","value":"Aromameter onthult smaakverlies groente en fruit"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2015-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00143320v1\",\"titles\":[\"Utilisation de la régression PLS pour l\\u0027analyse du Cu et du Zn dans l\\u0027eau par fluorescence X à réflexion totale\"],\"abstracts\":[\"Le domaine d\\u0027application de la technique de la fluorescence X (XRF) a connu un élargissement important. En effet, outres les applications habituelles en environnement (eau, sol, air, plantes,..) et dans le domaine alimentaire, cette techniques a aussi beaucoup de succès en archéologie, en industrie du ciment, des peintures,... La plupart de ces applications et des nouvelles générations d\\u0027appareils nécessitent que les données obtenues lors des différentes mesures soient traitées le plus rapidement possible. La solution idéale serait alors de pouvoir convertir les spectres obtenus directement en concentrations des éléments à étudier sans intervention de la part de l\\u0027utilisateur. Le but du présent travail est d\\u0027apporter une méthode alternative permettant de passer directement du spectre aux concentrations sans intervention de l\\u0027utilisateur pour l\\u0027analyse quantitative en ED-XRF et de vérifier la possibilité d\\u0027application de cette méthode pour l\\u0027analyse de métaux dans l\\u0027eau dans le cadre de contrôles environnementaux.\"],\"language\":\"fra/fre\",\"subjects\":[\"régression PLS\",\"spectroscopie XRF\",\"analyse de l\\u0027eau\",\"[CHIM.ANAL] Chemical Sciences/Analytical chemistry\"],\"creators\":[\"Rakotondrajoa, Andrianiaina\"],\"publicationdate\":\"2007-04-26\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Institut National des Sciences et Techniques Nucléaires - Madagascar (MADAGASCAR-INSTN) ; Université d\\u0027Antananarivo\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00143320\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00143320\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00143320\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00143320\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00143320\"},\"trust\":0.2712801}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00143320v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rakotondrajoa, Andrianiaina"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00143320"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["régression PLS","spectroscopie XRF","analyse de l\u0027eau","[CHIM.ANAL] Chemical Sciences/Analytical chemistry"]},"trust":{"type":"FLOAT","value":0.2712801},"target_publication_title":{"type":"STRING","value":"Utilisation de la régression PLS pour l\u0027analyse du Cu et du Zn dans l\u0027eau par fluorescence X à réflexion totale"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2007-04-26"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00143320\",\"titles\":[\"Utilisation de la régression PLS pour l\\u0027analyse du Cu et du Zn dans l\\u0027eau par fluorescence X à réflexion totale\"],\"abstracts\":[\"Le domaine d\\u0027application de la technique de la fluorescence X (XRF) a connu un élargissement important. En effet, outres les applications habituelles en environnement (eau, sol, air, plantes,..) et dans le domaine alimentaire, cette techniques a aussi beaucoup de succès en archéologie, en industrie du ciment, des peintures,... La plupart de ces applications et des nouvelles générations d\\u0027appareils nécessitent que les données obtenues lors des différentes mesures soient traitées le plus rapidement possible. La solution idéale serait alors de pouvoir convertir les spectres obtenus directement en concentrations des éléments à étudier sans intervention de la part de l\\u0027utilisateur. Le but du présent travail est d\\u0027apporter une méthode alternative permettant de passer directement du spectre aux concentrations sans intervention de l\\u0027utilisateur pour l\\u0027analyse quantitative en ED-XRF et de vérifier la possibilité d\\u0027application de cette méthode pour l\\u0027analyse de métaux dans l\\u0027eau dans le cadre de contrôles environnementaux.\"],\"language\":\"fra/fre\",\"subjects\":[\"[CHIM:ANAL] Chemical Sciences/Analytical chemistry\",\"[CHIM:ANAL] Chimie/Chimie analytique\",\"régression PLS\",\"spectroscopie XRF\",\"analyse de l\\u0027eau\"],\"creators\":[\"Rakotondrajoa, Andrianiaina\"],\"publicationdate\":\"2007-04-25\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00143320\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00143320\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00143320\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00143320\",\"id\":\"oai:HAL:hal-00143320v1\"},\"trust\":0.51106644}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00143320"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rakotondrajoa, Andrianiaina"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00143320v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[CHIM:ANAL] Chemical Sciences/Analytical chemistry","[CHIM:ANAL] Chimie/Chimie analytique","régression PLS","spectroscopie XRF","analyse de l\u0027eau"]},"trust":{"type":"FLOAT","value":0.51106644},"target_publication_title":{"type":"STRING","value":"Utilisation de la régression PLS pour l\u0027analyse du Cu et du Zn dans l\u0027eau par fluorescence X à réflexion totale"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2007-04-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:inria-00536697\",\"titles\":[\"SSC : Statistical Subspace Clustering\"],\"abstracts\":[\"Subspace clustering is an extension of traditional clustering that seeks to find clusters in different subspaces within a dataset. This is a particularly important challenge with high dimensional data where the curse of dimensionality occurs. It has also the benefit of providing smaller descriptions of the clusters found. Existing methods only consider numerical databases and do not propose any method for clusters visualization. Besides, they require some input parameters difficult to set for the user. The aim of this paper is to propose a new subspace clustering algorithm, able to tackle databases that may contain continuous as well as discrete attributes, requiring as few user parameters as possible, and producing an interpretable output. We present a method based on the use of the well-known EM algorithm on a probabilistic model designed under some specific hypotheses, allowing us to present the result as a set of rules, each one defined with as few relevant dimensions as possible. Experiments, conducted on artificial as well as real databases, show that our algorithm gives robust results, in terms of classification and interpretability of the output.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_PL] Computer Science/Programming Languages\",\"[INFO:INFO_PL] Informatique/Langage de programmation\"],\"creators\":[\"Candillier, Laurent\",\"Tellier, Isabelle\",\"Torre, Fabien\",\"Bousquet, Olivier\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00536697\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.inria.fr/inria-00536697\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00536697\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/inria-00536697\",\"id\":\"oai:HAL:inria-00536697v1\"},\"trust\":0.98947144}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:inria-00536697"},"target_publication_author_list":{"type":"LIST_STRING","value":["Candillier, Laurent","Tellier, Isabelle","Torre, Fabien","Bousquet, Olivier"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:inria-00536697v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_PL] Computer Science/Programming Languages","[INFO:INFO_PL] Informatique/Langage de programmation"]},"trust":{"type":"FLOAT","value":0.98947144},"target_publication_title":{"type":"STRING","value":"SSC : Statistical Subspace Clustering"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:inria-00536697v1\",\"titles\":[\"SSC : Statistical Subspace Clustering\"],\"abstracts\":[\"International audience\",\"Subspace clustering is an extension of traditional clustering that seeks to find clusters in different subspaces within a dataset. This is a particularly important challenge with high dimensional data where the curse of dimensionality occurs. It has also the benefit of providing smaller descriptions of the clusters found. Existing methods only consider numerical databases and do not propose any method for clusters visualization. Besides, they require some input parameters difficult to set for the user. The aim of this paper is to propose a new subspace clustering algorithm, able to tackle databases that may contain continuous as well as discrete attributes, requiring as few user parameters as possible, and producing an interpretable output. We present a method based on the use of the well-known EM algorithm on a probabilistic model designed under some specific hypotheses, allowing us to present the result as a set of rules, each one defined with as few relevant dimensions as possible. Experiments, conducted on artificial as well as real databases, show that our algorithm gives robust results, in terms of classification and interpretability of the output.\"],\"language\":\"eng\",\"subjects\":[\"[INFO.INFO-PL] Computer Science/Programming Languages\"],\"creators\":[\"Candillier, Laurent\",\"Tellier, Isabelle\",\"Torre, Fabien\",\"Bousquet, Olivier\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"Springer\",\"embargoenddate\":\"\",\"contributor\":[\"GRAPPA (LIFL) ; Université Lille I - Sciences et technologies - Université Lille III - Sciences humaines et sociales - CNRS\",\"MOSTRARE (INRIA Futurs) ; INRIA - Université Lille I - Sciences et technologies - Université Lille III - Sciences humaines et sociales - CNRS\",\"Max Planck Institute for Biological Cybernetics (MPI) ; Max-Planck-Institut\",\"Petra Perner and Atsushi Imiya\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00536697\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.inria.fr/inria-00536697\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00536697\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/inria-00536697\",\"id\":\"oai:hal.inria.fr:inria-00536697\"},\"trust\":0.32532096}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:inria-00536697v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Candillier, Laurent","Tellier, Isabelle","Torre, Fabien","Bousquet, Olivier"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:inria-00536697"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO.INFO-PL] Computer Science/Programming Languages"]},"trust":{"type":"FLOAT","value":0.32532096},"target_publication_title":{"type":"STRING","value":"SSC : Statistical Subspace Clustering"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/462921\",\"titles\":[\"De leghennenhouders en hun marktpartners\"],\"abstracts\":[\"Op grond van een in 1981 gehouden enquete bij 336 leghennenhouders met een hokcapaciteit voor meer dan 100 dieren, is een beeld geschetst van de structuur van toelevering en afzet in deze sector. Daarbij is aandacht besteed aan het aandeel van de verschillende categorieen leveranciers en afnemers, de wijze van prijsbepaling, de contractproduktie, en aan enkele specifieke onderwerpen voor deze bedrijfstak, zoals de afzet van scharreleieren en de rechtstreekse verkopen aan de consument\"],\"language\":\"dut/nld\",\"subjects\":[\"hennen\",\"hens\",\"landbouw\",\"agriculture\",\"productiestructuur\",\"production structure\",\"agrarische structuur\",\"agricultural structure\",\"contractlandbouw\",\"contract farming\",\"verticale integratie\",\"vertical integration\",\"nederland\",\"netherlands\",\"marktstructuur\",\"market structure\",\"Poultry\",\"Pluimvee\",\"Animal Husbandry (General)\",\"Dierhouderij (algemeen)\"],\"creators\":[\"Niks, J. A. W. M.\"],\"publicationdate\":\"1984-01-01\",\"publisher\":\"LEI\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/261420\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"External research report\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/462921\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/462921\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/462921\",\"id\":\"wur:oai:library.wur.nl:wurpubs/462921\"},\"trust\":0.2577631}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/462921"},"target_publication_author_list":{"type":"LIST_STRING","value":["Niks, J. A. W. M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/462921"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["hennen","hens","landbouw","agriculture","productiestructuur","production structure","agrarische structuur","agricultural structure","contractlandbouw","contract farming","verticale integratie","vertical integration","nederland","netherlands","marktstructuur","market structure","Poultry","Pluimvee","Animal Husbandry (General)","Dierhouderij (algemeen)"]},"trust":{"type":"FLOAT","value":0.2577631},"target_publication_title":{"type":"STRING","value":"De leghennenhouders en hun marktpartners"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1984-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cai:reofsp:reof_p1997_61n1_0259\",\"titles\":[\"« Capitalisme, socialisme et démocratie ». Réponse à Thierry Pouch et invitation au débat\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Jean-Paul Fitoussi\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Revue de l\\u0027OFCE\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.3406/ofce.1997.1462\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.cairn.info/load_pdf.php?ID_ARTICLE\\u003dREOF_P1997_61N1_0259\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.3406/ofce.1997.1462\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dx.doi.org/doi:10.3406/ofce.1997.1462\",\"id\":\"oai:RePEc:prs:rvofce:ofce_0751-6614_1997_num_61_1_1462\"},\"trust\":0.26712632}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cai:reofsp:reof_p1997_61n1_0259"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jean-Paul Fitoussi"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:prs:rvofce:ofce_0751-6614_1997_num_61_1_1462"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.26712632},"target_publication_title":{"type":"STRING","value":"« Capitalisme, socialisme et démocratie ». Réponse à Thierry Pouch et invitation au débat"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cai:reofsp:reof_p1997_61n1_0259\",\"titles\":[\"« Capitalisme, socialisme et démocratie ». Réponse à Thierry Pouch et invitation au débat\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Jean-Paul Fitoussi\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Revue de l\\u0027OFCE\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.3406/ofce.1997.1462\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.cairn.info/load_pdf.php?ID_ARTICLE\\u003dREOF_P1997_61N1_0259\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.3406/ofce.1997.1462\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dx.doi.org/doi:10.3406/ofce.1997.1462\",\"id\":\"oai:RePEc:prs:rvofce:ofce_0751-6614_1997_num_61_1_1462\"},\"trust\":0.26712632}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cai:reofsp:reof_p1997_61n1_0259"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jean-Paul Fitoussi"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:prs:rvofce:ofce_0751-6614_1997_num_61_1_1462"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.26712632},"target_publication_title":{"type":"STRING","value":"« Capitalisme, socialisme et démocratie ». Réponse à Thierry Pouch et invitation au débat"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cai:reofsp:reof_p1997_61n1_0259\",\"titles\":[\"« Capitalisme, socialisme et démocratie ». Réponse à Thierry Pouch et invitation au débat\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Jean-Paul Fitoussi\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Revue de l\\u0027OFCE\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cairn.info/load_pdf.php?ID_ARTICLE\\u003dREOF_P1997_61N1_0259\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/doi:10.3406/ofce.1997.1462\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/doi:10.3406/ofce.1997.1462\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dx.doi.org/doi:10.3406/ofce.1997.1462\",\"id\":\"oai:RePEc:prs:rvofce:ofce_0751-6614_1997_num_61_1_1462\"},\"trust\":0.7340691}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cai:reofsp:reof_p1997_61n1_0259"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jean-Paul Fitoussi"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:prs:rvofce:ofce_0751-6614_1997_num_61_1_1462"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.7340691},"target_publication_title":{"type":"STRING","value":"« Capitalisme, socialisme et démocratie ». Réponse à Thierry Pouch et invitation au débat"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:prs:rvofce:ofce_0751-6614_1997_num_61_1_1462\",\"titles\":[\"« Capitalisme, socialisme et démocratie ». Réponse à Thierry Pouch et invitation au débat\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Jean-Paul Fitoussi\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Revue de l\\u0027OFCE\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"10.3406/ofce.1997.1462\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://dx.doi.org/doi:10.3406/ofce.1997.1462\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.cairn.info/load_pdf.php?ID_ARTICLE\\u003dREOF_P1997_61N1_0259\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cairn.info/load_pdf.php?ID_ARTICLE\\u003dREOF_P1997_61N1_0259\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cairn.info/load_pdf.php?ID_ARTICLE\\u003dREOF_P1997_61N1_0259\",\"id\":\"oai:RePEc:cai:reofsp:reof_p1997_61n1_0259\"},\"trust\":0.8457989}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:prs:rvofce:ofce_0751-6614_1997_num_61_1_1462"},"target_publication_author_list":{"type":"LIST_STRING","value":["Jean-Paul Fitoussi"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cai:reofsp:reof_p1997_61n1_0259"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.8457989},"target_publication_title":{"type":"STRING","value":"« Capitalisme, socialisme et démocratie ». Réponse à Thierry Pouch et invitation au débat"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ub.rug.nl:dbi/4670e724e8ef9\",\"titles\":[\"Van assimilatie tot segregatie : de Nederlandse kolonie in Sint-Petersburg. 1856-1917\"],\"abstracts\":[\"In Nederland wordt veel onderzoek verricht naar integratie van buitenlanders binnen de Nederlandse samenleving. Maar hoe zit het met het \\u0027integratievermogen\\u0027 van de Nederlanders is het buitenland? Jelena van Wijngaarden-Xiounina onderzocht de maatschappelijke positie van een groep Nederlanders in Sint-Petersburg vanaf de tweede helft van de negentiende eeuw tot 1917, het moment waarop ze vanwege de gevolgen van de Oktoberrevolutie Rusland verlieten.\\n\\nDe Nederlanders in Sint-Petersburg vormden een minderheid van zo’n 250 personen die voor een belangrijk deel bestond uit kooplieden uit het Twentse Vriezenveen en, sinds het einde van de negentiende eeuw, ook uit werknemers die voor nieuwe Nederlandse bedrijven gingen werken. Van Wijngaarden-Xiounina onderzocht de economische en sociale positie van deze Nederlanders aan de hand van literatuurstudie, archiefstudie en interviews met hun nakomelingen. Haar proefschrift bevat tevens een aantal individuele verhalen van Nederlanders die uiterst succesvol waren in de Petersburgse samenleving.\\n\\nVolgens de promovendus vormden de Nederlandse kooplieden een tamelijk gesloten gemeenschap, met hun eigen protestants geloof en eigen gebruiken. Dit blijkt echter hun integratie in de Petersburgse economie niet in de weg te hebben gestaan. In het collectieve geheugen van de Petersburgers zijn sommige begrippen tot op het heden verbonden met de aanwezigheid van Nederlanders in de Russische stad.\"],\"language\":\"dut/nld\",\"subjects\":[\"1856-1917\",\"1850-1900, 1900-1950; Nederlanders, Migranten, Assimilatie (sociologie), Segregati; Proefschriften (vorm); geschiedenis van Europa; Sint-Petersburg (stad)\"],\"creators\":[\"Wijngaarden-Xiounina, Jelena Sergejevna\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"University of Groningen Digital Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://irs.ub.rug.nl/ppn/303294035\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"https://www.rug.nl/research/portal/en/publications/van-assimilatie-tot-segregatie(888b20e6-fbf1-4af2-9260-4fc7f315c2bc).html\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://www.rug.nl/research/portal/en/publications/van-assimilatie-tot-segregatie(888b20e6-fbf1-4af2-9260-4fc7f315c2bc).html\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"https://www.rug.nl/research/portal/en/publications/van-assimilatie-tot-segregatie(888b20e6-fbf1-4af2-9260-4fc7f315c2bc).html\",\"id\":\"rug:oai:pure.rug.nl:publications/888b20e6-fbf1-4af2-9260-4fc7f315c2bc\"},\"trust\":0.86328155}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"University of Groningen Digital Archive"},"target_publication_id":{"type":"STRING","value":"oai:ub.rug.nl:dbi/4670e724e8ef9"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wijngaarden-Xiounina, Jelena Sergejevna"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["rug:oai:pure.rug.nl:publications/888b20e6-fbf1-4af2-9260-4fc7f315c2bc"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["1856-1917","1850-1900, 1900-1950; Nederlanders, Migranten, Assimilatie (sociologie), Segregati; Proefschriften (vorm); geschiedenis van Europa; Sint-Petersburg (stad)"]},"trust":{"type":"FLOAT","value":0.86328155},"target_publication_title":{"type":"STRING","value":"Van assimilatie tot segregatie : de Nederlandse kolonie in Sint-Petersburg. 1856-1917"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::a2557a7b2e94197ff767970b67041697"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00690926\",\"titles\":[\"Semantic annotation of image processing tools\"],\"abstracts\":[\"Collaborative biomedical imaging research raises the issue of coherently sharing data and processing tools involved in multi-centric studies. Federative approaches are gaining increasing credibility and success to build distributed collaborative platforms. In the context of the NeuroLOG project, we designed the OntoNeuroLOG ontology as a cornerstone of our mediation layer. This contribution focuses on processing tools and is two-fold. We propose an extension of the OntoNeuroLOG ontology to conceptualize shared processing tools and enable their semantic annotation. Leveraging this modeling, we propose a set of semantic treatments aimed at easing their sharing, their reuse and their invocation in the context of neuro-data processing workflows.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_AI] Computer Science/Artificial Intelligence\",\"[INFO:INFO_AI] Informatique/Intelligence artificielle\",\"Web Services\",\"Semantic annotation\",\"Web Services composition\"],\"creators\":[\"Wali, Bacem\",\"Gibaud, Bernard\"],\"publicationdate\":\"2012-06-17\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00690926\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00690926\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00690926\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00690926\",\"id\":\"oai:HAL:hal-00690926v1\"},\"trust\":0.87802577}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00690926"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wali, Bacem","Gibaud, Bernard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00690926v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_AI] Computer Science/Artificial Intelligence","[INFO:INFO_AI] Informatique/Intelligence artificielle","Web Services","Semantic annotation","Web Services composition"]},"trust":{"type":"FLOAT","value":0.87802577},"target_publication_title":{"type":"STRING","value":"Semantic annotation of image processing tools"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-17"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00690926v1\",\"titles\":[\"Semantic annotation of image processing tools\"],\"abstracts\":[\"International audience\",\"Collaborative biomedical imaging research raises the issue of coherently sharing data and processing tools involved in multi-centric studies. Federative approaches are gaining increasing credibility and success to build distributed collaborative platforms. In the context of the NeuroLOG project, we designed the OntoNeuroLOG ontology as a cornerstone of our mediation layer. This contribution focuses on processing tools and is two-fold. We propose an extension of the OntoNeuroLOG ontology to conceptualize shared processing tools and enable their semantic annotation. Leveraging this modeling, we propose a set of semantic treatments aimed at easing their sharing, their reuse and their invocation in the context of neuro-data processing workflows.\"],\"language\":\"eng\",\"subjects\":[\"Web Services\",\"Semantic annotation\",\"Web Services composition\",\"[INFO.INFO-AI] Computer Science/Artificial Intelligence\"],\"creators\":[\"Wali, Bacem\",\"Gibaud, Bernard\"],\"publicationdate\":\"2012-06-13\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"VISAGES (VISAGES) ; INSERM - INRIA - Université de Rennes 1 - CNRS\",\"NeuroLOG\",\"ANR-06-TLOG-0024, NeuroLOG, NeuroLOG: technologies logicielles pour l\\u0027intégration de traitements, de données et de connaissances en imagerie médicale(2006)\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00690926\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00690926\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00690926\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00690926\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00690926\"},\"trust\":0.9720561}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00690926v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wali, Bacem","Gibaud, Bernard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00690926"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Web Services","Semantic annotation","Web Services composition","[INFO.INFO-AI] Computer Science/Artificial Intelligence"]},"trust":{"type":"FLOAT","value":0.9720561},"target_publication_title":{"type":"STRING","value":"Semantic annotation of image processing tools"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:DiVA.org:hj-1504\",\"titles\":[\"Upphandling av vinterväghållning\"],\"abstracts\":[\"Abstract This report was undertaken at the request of the Management and maintenance department of Swedish National Road Authority (Vägverket Region Sydöst) in Jönköping. In 1992, the management and maintenance of Swedish roads were laid out on external contractors. When putting out a tender for the work, the foundation is from a national set of rules which are in constant change. This report is limited to winter road upkeep. The trend in the invitation for tenders is that it is moving from the more conventional executional demands towards the less controlling demands. The downside of functional, less controlling demands is that it is difficult to articulate how to measure them. The order authority therefore has to find ways to make sure to get what has been paid for. In connection to the invitation for tender of winter road upkeep for 2005, the new set of rules, ATB Vinter 2003 was deployed. The main purpose of this thesis is to see which the big changes in the set of rules are and how these changes affect the organisation and activities of the contractor. It is also studied how the changes in execution is perceived by road users and how it affects the possibilities of the contractor to come as a newcomer to a new area of administration. Interviews and examination of sets of rules has led to a list of a number of changes that the contractors feel affect their work in any sense. Views from road users that have come in to the order authority have been scrutinized to see how they have experienced the change. When selecting which areas of administration to examine, care was taken to ensure that one was where the same contractor secured a renewed contract for the area over the gap of changing rules and the other one was area where the contractor was a newcomer. The result shows a number of changes and how these affect both the contractors and the road users. The report describes how winter road upkeep is maintained in the south of Sweden and the cooperation between buyer and contractor. \"],\"language\":\"sve/swe\",\"subjects\":[\"Driftområde\",\"Vägverket Region Sydöst\",\"Stickprov\",\"Vinterväghållning\",\"Byggmöte\",\"ATB Vinter 2003\",\"Drift 96\",\"Funktionskrav Drift 96 Funktionskrav ATB Vinter 2003\",\"Building engineering\",\"Byggnadsteknik\"],\"creators\":[\"Zetterström, Carina\",\"Isaksson, Anna\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"Högskolan i Jönköping, Tekniska Högskolan\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Publikationer från Högskolan i Jönköping\"],\"pids\":[],\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:hj:diva-1504\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Högskolan i Jönköping\",\"instancetype\":\"Unknown\"},{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:hj:diva-616\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Högskolan i Jönköping\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:hj:diva-616\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Högskolan i Jönköping\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Publikationer från Högskolan i Jönköping\",\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:hj:diva-616\",\"id\":\"oai:DiVA.org:hj-616\"},\"trust\":0.95965546}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Publikationer från Högskolan i Jönköping"},"target_publication_id":{"type":"STRING","value":"oai:DiVA.org:hj-1504"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zetterström, Carina","Isaksson, Anna"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:DiVA.org:hj-616"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::cfa0860e83a4c3a763a7e62d825349f7"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Driftområde","Vägverket Region Sydöst","Stickprov","Vinterväghållning","Byggmöte","ATB Vinter 2003","Drift 96","Funktionskrav Drift 96 Funktionskrav ATB Vinter 2003","Building engineering","Byggnadsteknik"]},"trust":{"type":"FLOAT","value":0.95965546},"target_publication_title":{"type":"STRING","value":"Upphandling av vinterväghållning"},"provenance_datasource_name":{"type":"STRING","value":"Publikationer från Högskolan i Jönköping"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::cfa0860e83a4c3a763a7e62d825349f7"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:DiVA.org:hj-616\",\"titles\":[\"Upphandling av vinterväghållning\"],\"abstracts\":[\"This report was undertaken at the request of the Management and maintenance department of Swedish National Road Authority (Vägverket Region Sydöst) in Jönköping. In 1992, the management and maintenance of Swedish roads were laid out on external constructors. When putting out a tender for the work, the foundation is from a national set of rules which are in constant change. This report is limited to winter road upkeep. The trend in the invitation for tenders is that it is moving from the more conventional executional demands towards the less controlling demands. The downside of functional, less controlling demands is that it is difficult to articulate how to measure them. The order authority therefore has to find ways to make sure to get what has been paid for. In connection to the invitation for tender of winter road upkeep for 2005, the new set of rules, ATB Vinter 2003 was deployed. The main purpose of this thesis is to see which the big changes in the set of rules are and how these changes affect the organisation and activities of the constructor. It is also studied how the changes in execution is perceived by road users and how it affects the possibilities of the constructor to come as a newcomer to a new area of administration. Interviews and examination of sets of rules has led to a list of a number of changes that the constructors feel affect their work in any sense. Views from road users that have come in to the order authority have been scrutinized to see how they have experienced the change. When selecting which areas of administration to examine, care was taken to ensure that one was where the same constructor secured a renewed contract for the area over the gap of changing rules and the other one was area where the constructor was a newcomer. The result shows a number of changes and how these affect both the constructors and the road users. The report describes how winter road upkeep is maintained in the south of Sweden and the cooperation between buyer and constructor. \"],\"language\":\"sve/swe\",\"subjects\":[\"Vägverket Region Sydöst\",\"Vinterväghållning\",\"Drift 96\",\"ATB Vinter 2003\",\"Driftområde\",\"Stickprov\",\"Byggmöte\",\"Funktionskrav\",\"Building engineering\",\"Byggnadsteknik\"],\"creators\":[\"Zetterström, Carina\",\"Isaksson, Anna\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"Högskolan i Jönköping, Tekniska Högskolan\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Publikationer från Högskolan i Jönköping\"],\"pids\":[],\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:hj:diva-616\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Högskolan i Jönköping\",\"instancetype\":\"Unknown\"},{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:hj:diva-1504\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Högskolan i Jönköping\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:hj:diva-1504\",\"license\":\"OPEN\",\"hostedby\":\"Publikationer från Högskolan i Jönköping\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Publikationer från Högskolan i Jönköping\",\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:se:hj:diva-1504\",\"id\":\"oai:DiVA.org:hj-1504\"},\"trust\":0.9860868}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Publikationer från Högskolan i Jönköping"},"target_publication_id":{"type":"STRING","value":"oai:DiVA.org:hj-616"},"target_publication_author_list":{"type":"LIST_STRING","value":["Zetterström, Carina","Isaksson, Anna"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:DiVA.org:hj-1504"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::cfa0860e83a4c3a763a7e62d825349f7"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Vägverket Region Sydöst","Vinterväghållning","Drift 96","ATB Vinter 2003","Driftområde","Stickprov","Byggmöte","Funktionskrav","Building engineering","Byggnadsteknik"]},"trust":{"type":"FLOAT","value":0.9860868},"target_publication_title":{"type":"STRING","value":"Upphandling av vinterväghållning"},"provenance_datasource_name":{"type":"STRING","value":"Publikationer från Högskolan i Jönköping"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::cfa0860e83a4c3a763a7e62d825349f7"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2236325\",\"titles\":[\"Bacteria Associated with Copestylum (Diptera, Syrphidae) Larvae and Their Cactus Host Isolatocereus dumortieri\"],\"abstracts\":[\"We describe the gut bacterial diversity inhabiting two saprophagous syrphids and their breeding substrate (decayed tissues of the columnar cactus Isolatocereus dumortieri). We analyzed the gut microbiota of Copestylum latum (scooping larvae that feed on decayed cactus tissues) and Copestylum limbipenne (whose larvae can also feed on semiliquid tissues) using molecular techniques. DNA was extracted from larval guts and cactus tissues. The V1-V3 region of the 16S rRNA genes was amplified and sequenced. A total of 31079 sequences were obtained. The main findings are: C. limbipenne is dominated by several Enterobacteriaceae, including putative nitrogen-fixing genera and pectinolitic species and some denitrifying species, whereas in C. latum unclassified Gammaproteobacteria predominate. Decayed tissues have a dominant lactic acid bacterial community. The bacterial communities were more similar between larval species than between each larva and its breeding substrate. The results suggest that the gut bacterial community in these insects is not strongly affected by diet and must be dependent on other factors, such as vertical transmission, evolutionary history and host innate immunity.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\",\"Biology\",\"Ecology\",\"Biodiversity\",\"Biota\",\"Community Ecology\",\"Ecological Environments\",\"Microbial Ecology\",\"Genetics\",\"Gene Expression\",\"Microbiology\",\"Microbial Ecology\",\"Molecular Cell Biology\",\"Nucleic Acids\",\"RNA\",\"Gene Expression\",\"Population Biology\",\"Epidemiology\",\"Population Dynamics\",\"Zoology\",\"Entomology\"],\"creators\":[\"Martínez-Falcón, Ana Paola\",\"Durbán, Ana\",\"Latorre, Amparo\",\"Antón, Josefa\",\"Marcos-García, María Los Ángeles\"],\"publicationdate\":\"2011-11-01\",\"publisher\":\"Public Library of Science\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"PLoS ONE\",\"issn\":\"\",\"eissn\":\"1932-6203\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1371/journal.pone.0027443\",\"type\":\"doi\"},{\"value\":\"PMC3223168\",\"type\":\"pmc\"},{\"value\":\"22132101\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3223168\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/10045/34158\",\"license\":\"OPEN\",\"hostedby\":\"Repositorio Institucional de la Universidad de Alicante\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10045/34158\",\"license\":\"OPEN\",\"hostedby\":\"Repositorio Institucional de la Universidad de Alicante\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Repositorio Institucional de la Universidad de Alicante\",\"url\":\"http://hdl.handle.net/10045/34158\",\"id\":\"oai:rua.ua.es:10045/34158\"},\"trust\":0.093205035}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2236325"},"target_publication_author_list":{"type":"LIST_STRING","value":["Martínez-Falcón, Ana Paola","Durbán, Ana","Latorre, Amparo","Antón, Josefa","Marcos-García, María Los Ángeles"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:rua.ua.es:10045/34158"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::e820a45f1dfc7b95282d10b6087e11c0"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article","Biology","Ecology","Biodiversity","Biota","Community Ecology","Ecological Environments","Microbial Ecology","Genetics","Gene Expression","Microbiology","Microbial Ecology","Molecular Cell Biology","Nucleic Acids","RNA","Gene Expression","Population Biology","Epidemiology","Population Dynamics","Zoology","Entomology"]},"trust":{"type":"FLOAT","value":0.093205035},"target_publication_title":{"type":"STRING","value":"Bacteria Associated with Copestylum (Diptera, Syrphidae) Larvae and Their Cactus Host Isolatocereus dumortieri"},"provenance_datasource_name":{"type":"STRING","value":"Repositorio Institucional de la Universidad de Alicante"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:rua.ua.es:10045/34158\",\"titles\":[\"Bacteria associated with Copestylum (Diptera, Syrphidae) larvae and their cactus host Isolatocereus dumortieri\"],\"abstracts\":[\"We describe the gut bacterial diversity inhabiting two saprophagous syrphids and their breeding substrate (decayed tissues of the columnar cactus Isolatocereus dumortieri). We analyzed the gut microbiota of Copestylum latum (scooping larvae that feed on decayed cactus tissues) and Copestylum limbipenne (whose larvae can also feed on semiliquid tissues) using molecular techniques. DNA was extracted from larval guts and cactus tissues. The V1-V3 region of the 16S rRNA genes was amplified and sequenced. A total of 31079 sequences were obtained. The main findings are: C. limbipenne is dominated by several Enterobacteriaceae, including putative nitrogen-fixing genera and pectinolitic species and some denitrifying species, whereas in C. latum unclassified Gammaproteobacteria predominate. Decayed tissues have a dominant lactic acid bacterial community. The bacterial communities were more similar between larval species than between each larva and its breeding substrate. The results suggest that the gut bacterial community in these insects is not strongly affected by diet and must be dependent on other factors, such as vertical transmission, evolutionary history and host innate immunity.\",\"This research was funded by AECID (project A/020305/08), FOMIX CONACYT-Hidalgo (project 95828) and SEP-CONACYT (project 84127) to M. A. M.-G., and BFU2009-12895-C02-01 from the Ministerio de Ciencia e Inovación to A.L. A.P.M. acknowledge the scholarship provided by The Alβan programme, the European Union Programme of High Level Scholarships for Latin America, No. E07D401138MX and CONACYT program (207522) for doctoral fellowship. A.D. is recipient of a fellowship from the Instituto de Salud Carlos III, Spain.\"],\"language\":\"eng\",\"subjects\":[\"Copestylum\",\"Diptera\",\"Syrphidae\",\"Larvae\",\"Bacteria\",\"Cactus\",\"Isolatocereus dumortieri\",\"Zoología\",\"Microbiología\"],\"creators\":[\"Martínez Falcón, Ana Paola\",\"Durbán, Ana\",\"Latorre, Amparo\",\"Antón Botella, Josefa\",\"Marcos García, María Ángeles\"],\"publicationdate\":\"2011-11-23\",\"publisher\":\"Public Library of Science (PLoS)\",\"embargoenddate\":\"\",\"contributor\":[\"Biodiversidad y Biotecnología aplicadas a la Biología de la Conservación\",\"Ecología Microbiana Molecular\",\"Universidad de Alicante. Departamento de Ciencias Ambientales y Recursos Naturales\",\"Universidad de Alicante. Centro Iberoamericano de la Biodiversidad\",\"Universidad de Alicante. Departamento de Fisiología, Genética y Microbiología\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repositorio Institucional de la Universidad de Alicante\"],\"pids\":[{\"value\":\"10.1371/journal.pone.0027443\",\"type\":\"doi\"},{\"value\":\"PMC3223168\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/10045/34158\",\"license\":\"OPEN\",\"hostedby\":\"Repositorio Institucional de la Universidad de Alicante\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3223168\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3223168\",\"id\":\"oai:europepmc.org:2236325\"},\"trust\":0.74245554}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repositorio Institucional de la Universidad de Alicante"},"target_publication_id":{"type":"STRING","value":"oai:rua.ua.es:10045/34158"},"target_publication_author_list":{"type":"LIST_STRING","value":["Martínez Falcón, Ana Paola","Durbán, Ana","Latorre, Amparo","Antón Botella, Josefa","Marcos García, María Ángeles"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2236325"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Copestylum","Diptera","Syrphidae","Larvae","Bacteria","Cactus","Isolatocereus dumortieri","Zoología","Microbiología"]},"trust":{"type":"FLOAT","value":0.74245554},"target_publication_title":{"type":"STRING","value":"Bacteria associated with Copestylum (Diptera, Syrphidae) larvae and their cactus host Isolatocereus dumortieri"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-23"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::e820a45f1dfc7b95282d10b6087e11c0"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:rua.ua.es:10045/34158\",\"titles\":[\"Bacteria associated with Copestylum (Diptera, Syrphidae) larvae and their cactus host Isolatocereus dumortieri\"],\"abstracts\":[\"We describe the gut bacterial diversity inhabiting two saprophagous syrphids and their breeding substrate (decayed tissues of the columnar cactus Isolatocereus dumortieri). We analyzed the gut microbiota of Copestylum latum (scooping larvae that feed on decayed cactus tissues) and Copestylum limbipenne (whose larvae can also feed on semiliquid tissues) using molecular techniques. DNA was extracted from larval guts and cactus tissues. The V1-V3 region of the 16S rRNA genes was amplified and sequenced. A total of 31079 sequences were obtained. The main findings are: C. limbipenne is dominated by several Enterobacteriaceae, including putative nitrogen-fixing genera and pectinolitic species and some denitrifying species, whereas in C. latum unclassified Gammaproteobacteria predominate. Decayed tissues have a dominant lactic acid bacterial community. The bacterial communities were more similar between larval species than between each larva and its breeding substrate. The results suggest that the gut bacterial community in these insects is not strongly affected by diet and must be dependent on other factors, such as vertical transmission, evolutionary history and host innate immunity.\",\"This research was funded by AECID (project A/020305/08), FOMIX CONACYT-Hidalgo (project 95828) and SEP-CONACYT (project 84127) to M. A. M.-G., and BFU2009-12895-C02-01 from the Ministerio de Ciencia e Inovación to A.L. A.P.M. acknowledge the scholarship provided by The Alβan programme, the European Union Programme of High Level Scholarships for Latin America, No. E07D401138MX and CONACYT program (207522) for doctoral fellowship. A.D. is recipient of a fellowship from the Instituto de Salud Carlos III, Spain.\"],\"language\":\"eng\",\"subjects\":[\"Copestylum\",\"Diptera\",\"Syrphidae\",\"Larvae\",\"Bacteria\",\"Cactus\",\"Isolatocereus dumortieri\",\"Zoología\",\"Microbiología\"],\"creators\":[\"Martínez Falcón, Ana Paola\",\"Durbán, Ana\",\"Latorre, Amparo\",\"Antón Botella, Josefa\",\"Marcos García, María Ángeles\"],\"publicationdate\":\"2011-11-23\",\"publisher\":\"Public Library of Science (PLoS)\",\"embargoenddate\":\"\",\"contributor\":[\"Biodiversidad y Biotecnología aplicadas a la Biología de la Conservación\",\"Ecología Microbiana Molecular\",\"Universidad de Alicante. Departamento de Ciencias Ambientales y Recursos Naturales\",\"Universidad de Alicante. Centro Iberoamericano de la Biodiversidad\",\"Universidad de Alicante. Departamento de Fisiología, Genética y Microbiología\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repositorio Institucional de la Universidad de Alicante\"],\"pids\":[{\"value\":\"10.1371/journal.pone.0027443\",\"type\":\"doi\"},{\"value\":\"22132101\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/10045/34158\",\"license\":\"OPEN\",\"hostedby\":\"Repositorio Institucional de la Universidad de Alicante\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"22132101\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3223168\",\"id\":\"oai:europepmc.org:2236325\"},\"trust\":0.74245554}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repositorio Institucional de la Universidad de Alicante"},"target_publication_id":{"type":"STRING","value":"oai:rua.ua.es:10045/34158"},"target_publication_author_list":{"type":"LIST_STRING","value":["Martínez Falcón, Ana Paola","Durbán, Ana","Latorre, Amparo","Antón Botella, Josefa","Marcos García, María Ángeles"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2236325"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Copestylum","Diptera","Syrphidae","Larvae","Bacteria","Cactus","Isolatocereus dumortieri","Zoología","Microbiología"]},"trust":{"type":"FLOAT","value":0.74245554},"target_publication_title":{"type":"STRING","value":"Bacteria associated with Copestylum (Diptera, Syrphidae) larvae and their cactus host Isolatocereus dumortieri"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-23"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::e820a45f1dfc7b95282d10b6087e11c0"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2294363\",\"titles\":[\"Changes in ground beetle diversity and community composition in age structured forests (Coleoptera, Carabidae)\"],\"abstracts\":[\"Abstract We examined diversity, community composition, and wing-state of Carabidae as a function of forest age in Piedmont North Carolina. Carabidae were collected monthly from 396 pitfall traps (12×33 sites) from March 2009 through February 2010, representing 5 forest age classes approximately 0, 10, 50, 85, and 150 years old. A total of 2,568 individuals, representing 30 genera and 63 species, were collected. Carabid species diversity, as estimated by six diversity indices, was significantly different between the oldest and youngest forest age classes for four of the six indices. Most carabid species were habitat generalists, occurring in all or most of the forest age classes. Carabid species composition varied across forest age classes. Seventeen carabid species were identified as potential candidates for ecological indicators of forest age. Non-metric multidimensional scaling (NMDS) showed separation among forest age classes in terms of carabid beetle community composition. The proportion of individuals capable of flight decreased significantly with forest age.\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"Piedmont forests\",\"North Carolina\",\"species richness\",\"ecological indicators\",\"wing-state\",\"pitfall trap\",\"succession\",\"biodiversity\"],\"creators\":[\"Riley, Kathryn N.\",\"Browne, Robert A.\"],\"publicationdate\":\"2011-11-01\",\"publisher\":\"Pensoft Publishers\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"ZooKeys\",\"issn\":\"1313-2989\",\"eissn\":\"1313-2970\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3897/zookeys.147.2102\",\"type\":\"doi\"},{\"value\":\"PMC3286241\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3286241\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://zookeys.pensoft.net/lib/ajax_srv/article_elements_srv.php?action\\u003ddownload_pdf\\u0026item_id\\u003d2931\",\"license\":\"OPEN\",\"hostedby\":\"ZooKeys\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://zookeys.pensoft.net/lib/ajax_srv/article_elements_srv.php?action\\u003ddownload_pdf\\u0026item_id\\u003d2931\",\"license\":\"OPEN\",\"hostedby\":\"ZooKeys\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://zookeys.pensoft.net/lib/ajax_srv/article_elements_srv.php?action\\u003ddownload_pdf\\u0026item_id\\u003d2931\",\"id\":\"oai:doaj.org/article:27e8ad8b0ce04ca381f72a60960b9853\"},\"trust\":0.92898}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2294363"},"target_publication_author_list":{"type":"LIST_STRING","value":["Riley, Kathryn N.","Browne, Robert A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:27e8ad8b0ce04ca381f72a60960b9853"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","Piedmont forests","North Carolina","species richness","ecological indicators","wing-state","pitfall trap","succession","biodiversity"]},"trust":{"type":"FLOAT","value":0.92898},"target_publication_title":{"type":"STRING","value":"Changes in ground beetle diversity and community composition in age structured forests (Coleoptera, Carabidae)"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2294363\",\"titles\":[\"Changes in ground beetle diversity and community composition in age structured forests (Coleoptera, Carabidae)\"],\"abstracts\":[\"Abstract We examined diversity, community composition, and wing-state of Carabidae as a function of forest age in Piedmont North Carolina. Carabidae were collected monthly from 396 pitfall traps (12×33 sites) from March 2009 through February 2010, representing 5 forest age classes approximately 0, 10, 50, 85, and 150 years old. A total of 2,568 individuals, representing 30 genera and 63 species, were collected. Carabid species diversity, as estimated by six diversity indices, was significantly different between the oldest and youngest forest age classes for four of the six indices. Most carabid species were habitat generalists, occurring in all or most of the forest age classes. Carabid species composition varied across forest age classes. Seventeen carabid species were identified as potential candidates for ecological indicators of forest age. Non-metric multidimensional scaling (NMDS) showed separation among forest age classes in terms of carabid beetle community composition. The proportion of individuals capable of flight decreased significantly with forest age.\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"Piedmont forests\",\"North Carolina\",\"species richness\",\"ecological indicators\",\"wing-state\",\"pitfall trap\",\"succession\",\"biodiversity\"],\"creators\":[\"Riley, Kathryn N.\",\"Browne, Robert A.\"],\"publicationdate\":\"2011-11-01\",\"publisher\":\"Pensoft Publishers\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"ZooKeys\",\"issn\":\"1313-2989\",\"eissn\":\"1313-2970\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3897/zookeys.147.2102\",\"type\":\"doi\"},{\"value\":\"PMC3286241\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3286241\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.3897/zookeys.147.2102\",\"license\":\"OPEN\",\"hostedby\":\"ZooKeys\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.3897/zookeys.147.2102\",\"license\":\"OPEN\",\"hostedby\":\"ZooKeys\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Pensoft\",\"url\":\"http://dx.doi.org/10.3897/zookeys.147.2102\",\"id\":\"10.3897/zookeys.147.2102\"},\"trust\":0.1606487}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2294363"},"target_publication_author_list":{"type":"LIST_STRING","value":["Riley, Kathryn N.","Browne, Robert A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.3897/zookeys.147.2102"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdc7e0400d8c1634cdaf8051dbae23db"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","Piedmont forests","North Carolina","species richness","ecological indicators","wing-state","pitfall trap","succession","biodiversity"]},"trust":{"type":"FLOAT","value":0.1606487},"target_publication_title":{"type":"STRING","value":"Changes in ground beetle diversity and community composition in age structured forests (Coleoptera, Carabidae)"},"provenance_datasource_name":{"type":"STRING","value":"Pensoft"},"target_dateofacceptance":{"type":"DATE","value":"2011-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3295872\",\"titles\":[\"Radiofrequency Ablation of Typical Atrial Flutter via Right Jugular Vein due to Bilateral Obstructed Iliac Veins in a Patient with Dilated Cardiomyopathy\"],\"abstracts\":[\"Ablation of cavotricuspid isthmus (CTI) is the gold standard method in the treatment of isthmus dependent atrial flutter (AFl). Venous access was obtained usually via right or left femoral veins. In rare cases of obstruction of iliofemoral veins, ablation of CTI can be performed only through the superior approach. We present a 74-year-old woman of typical AFl and dilated cardiomyopathy that was ablated through the right jugular vein because of obstruction of the left and the right iliac veins. This is the first report of successful ablation of CTI in a patient with dilated cardiomyopathy via superior approach.\"],\"language\":\"eng\",\"subjects\":[\"Case Report\"],\"creators\":[\"Aksu, Tolga\",\"Guler, Tumer Erdem\",\"Golcuk, Sukriye Ebru\",\"Ozcan, Kazım Serhan\",\"Erden, Ismail\"],\"publicationdate\":\"2015-01-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Case Reports in Cardiology\",\"issn\":\"2090-6404\",\"eissn\":\"2090-6412\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2015/401580\",\"type\":\"doi\"},{\"value\":\"PMC4322302\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4322302\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2015/401580\",\"license\":\"OPEN\",\"hostedby\":\"Case Reports in Cardiology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2015/401580\",\"license\":\"OPEN\",\"hostedby\":\"Case Reports in Cardiology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2015/401580\",\"id\":\"oai:doaj.org/article:e61136267fe8479d8f17f483027fa822\"},\"trust\":0.42899954}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3295872"},"target_publication_author_list":{"type":"LIST_STRING","value":["Aksu, Tolga","Guler, Tumer Erdem","Golcuk, Sukriye Ebru","Ozcan, Kazım Serhan","Erden, Ismail"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:e61136267fe8479d8f17f483027fa822"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Case Report"]},"trust":{"type":"FLOAT","value":0.42899954},"target_publication_title":{"type":"STRING","value":"Radiofrequency Ablation of Typical Atrial Flutter via Right Jugular Vein due to Bilateral Obstructed Iliac Veins in a Patient with Dilated Cardiomyopathy"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2015-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/390076\",\"titles\":[\"Bloeden bij Elstar in de vruchtboomkwekerij. Consultancy-onderzoek naar het effect van onderbegroeiing met winterrogge in combinatie met verschillende inknipmomenten op het bloeden van Elstar\"],\"abstracts\":[\"Het bloeden van appelbomen in het tweede teeltjaar kan leiden tot een lagere kwaliteit en zelfs uitval. Bloeden ontstaat rond begin april en wordt o.m. veroorzaakt door een oplopende bodemtemperatuur. De knipbomen staan dan nog niet in blad, de worteldruk neemt toe en de hoofdstam heeft een forse snoeiwond. Door deze combinatie kan het voorkomen dat plantsap a.h.w. door de snoeiwond wordt gedrukt. Dit heeft een negatief effect op de bovenste bladknop(pen). Door het bloeden bestaat het risico op een lagere kwaliteit of uitval. Naast de bodemtemperatuur hebben ook andere factoren zoals het moment van inknippen invloed op het ontstaan van het bloeden.\"],\"language\":\"dut/nld\",\"subjects\":[\"malus\",\"malus\",\"vruchtbomen\",\"fruit trees\",\"afwijkingen, planten\",\"plant disorders\",\"sapstroom\",\"sap flow\",\"uitselecteren\",\"culling\",\"Apples, Pears\",\"Appels, peren\"],\"creators\":[\"Steeg, P. A. H.\",\"Sluis, B. J.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"PPO Bloembollen, Boomkwekerij en Fruit\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/294242\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"External research report\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/390076\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/390076\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/390076\",\"id\":\"wur:oai:library.wur.nl:wurpubs/390076\"},\"trust\":0.1019485}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/390076"},"target_publication_author_list":{"type":"LIST_STRING","value":["Steeg, P. A. H.","Sluis, B. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/390076"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["malus","malus","vruchtbomen","fruit trees","afwijkingen, planten","plant disorders","sapstroom","sap flow","uitselecteren","culling","Apples, Pears","Appels, peren"]},"trust":{"type":"FLOAT","value":0.1019485},"target_publication_title":{"type":"STRING","value":"Bloeden bij Elstar in de vruchtboomkwekerij. Consultancy-onderzoek naar het effect van onderbegroeiing met winterrogge in combinatie met verschillende inknipmomenten op het bloeden van Elstar"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00305446v1\",\"titles\":[\"Comparison of Local and Global Region Merging in the Topological Map\"],\"abstracts\":[\"International audience\",\"The topological map is a model that represents 2D and 3D images subdivision. It aims to allow the use of topological and geometrical features of the subdivision in image processing operations. When handling regions in an image, one of the main operation is the region merging, for example in segmentation process. This paper presents two algorithms of region merging in 3D topological maps: one local which modifies locally the map around merged regions, and another one global which runs through all the elements of the map. We study their complexities and present experimental results to compare both approaches.\"],\"language\":\"eng\",\"subjects\":[\"Image segmentation\",\"Intervoxel boundaries\",\"Combinatorial maps\",\"Region merging\",\"[INFO.INFO-DS] Computer Science/Data Structures and Algorithms\",\"[INFO.INFO-TI] Computer Science/Image Processing\"],\"creators\":[\"Dupas, Alexandre\",\"Damiand, Guillaume\"],\"publicationdate\":\"2008-04-01\",\"publisher\":\"Springer-Verlag\",\"embargoenddate\":\"\",\"contributor\":[\"SIC ; XLIM (XLIM) ; Université de Limoges - CNRS - Université de Limoges - CNRS\",\"SIC ; Laboratoire Bordelais de Recherche en Informatique (LaBRI) ; Université Sciences et Technologies - Bordeaux I - Université Victor Segalen - Bordeaux II - École Nationale Supérieure d\\u0027Électronique, Informatique et Radiocommunications de Bordeaux (ENSEIRB) - CNRS - Université Sciences et Technologies - Bordeaux I - Université Victor Segalen - Bordeaux II - École Nationale Supérieure d\\u0027Électronique, Informatique et Radiocommunications de Bordeaux (ENSEIRB) - CNRS\",\"Image et Son\",\"ANR-06-MDCA-008-05/FOGRIMMI\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/978-3-540-78275-9_37\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00305446\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00305446\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00305446\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00305446\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00305446\"},\"trust\":0.4662444}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00305446v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dupas, Alexandre","Damiand, Guillaume"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00305446"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Image segmentation","Intervoxel boundaries","Combinatorial maps","Region merging","[INFO.INFO-DS] Computer Science/Data Structures and Algorithms","[INFO.INFO-TI] Computer Science/Image Processing"]},"trust":{"type":"FLOAT","value":0.4662444},"target_publication_title":{"type":"STRING","value":"Comparison of Local and Global Region Merging in the Topological Map"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00305446\",\"titles\":[\"Comparison of Local and Global Region Merging in the Topological Map\"],\"abstracts\":[\"The topological map is a model that represents 2D and 3D images subdivision. It aims to allow the use of topological and geometrical features of the subdivision in image processing operations. When handling regions in an image, one of the main operation is the region merging, for example in segmentation process. This paper presents two algorithms of region merging in 3D topological maps: one local which modifies locally the map around merged regions, and another one global which runs through all the elements of the map. We study their complexities and present experimental results to compare both approaches.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_DS] Computer Science/Data Structures and Algorithms\",\"[INFO:INFO_DS] Informatique/Algorithme et structure de données\",\"[INFO:INFO_TI] Computer Science/Image Processing\",\"[INFO:INFO_TI] Informatique/Traitement des images\",\"Combinatorial maps\",\"Intervoxel boundaries\",\"Region merging\",\"Image segmentation\"],\"creators\":[\"Dupas, Alexandre\",\"Damiand, Guillaume\"],\"publicationdate\":\"2008-03-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1007/978-3-540-78275-9_37\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00305446\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00305446\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00305446\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00305446\",\"id\":\"oai:HAL:hal-00305446v1\"},\"trust\":0.58388066}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00305446"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dupas, Alexandre","Damiand, Guillaume"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00305446v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_DS] Computer Science/Data Structures and Algorithms","[INFO:INFO_DS] Informatique/Algorithme et structure de données","[INFO:INFO_TI] Computer Science/Image Processing","[INFO:INFO_TI] Informatique/Traitement des images","Combinatorial maps","Intervoxel boundaries","Region merging","Image segmentation"]},"trust":{"type":"FLOAT","value":0.58388066},"target_publication_title":{"type":"STRING","value":"Comparison of Local and Global Region Merging in the Topological Map"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1418215\",\"titles\":[\"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology.\"],\"abstracts\":[\"Pharmacokinetic/pharmacodynamic (PKPD) modelling is used to describe and quantify dose-concentration-effect relationships. Within paediatric studies in infectious diseases and immunology these methods are often applied to developing guidance on appropriate dosing. In this paper, an introduction to the field of PKPD modelling is given, followed by a review of the PKPD studies that have been undertaken in paediatric infectious diseases and immunology. The main focus is on identifying the methodological approaches used to define the PKPD relationship in these studies. The major findings were that most studies of infectious diseases have developed a PK model and then used simulations to define a dose recommendation based on a pre-defined PD target, which may have been defined in adults or in vitro. For immunological studies much of the modelling has focused on either PK or PD, and since multiple drugs are usually used, delineating the relative contributions of each is challenging. The use of dynamical modelling of in vitro antibacterial studies, and paediatric HIV mechanistic PD models linked with the PK of all drugs, are emerging methods that should enhance PKPD-based recommendations in the future.\"],\"language\":\"und\",\"subjects\":[\"Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)\"],\"creators\":[\"Barker, C. I.\",\"Germovsek, E.\",\"Hoare, R. L.\",\"Lestner, J. M.\",\"Lewis, J.\",\"Standing, J. F.\"],\"publicationdate\":\"2014-01-17\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"10.1016/j.addr.2014.01.002\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1418215/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.addr.2014.01.002\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://openaccess.sgul.ac.uk/107388/1/Pharmacokinetic_pharmacodynamic_modelling_approaches_paediatric_infectious_diseases_immunology.pdf\",\"id\":\"oai:openaccess.sgul.ac.uk:107388\"},\"trust\":0.39030135}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1418215"},"target_publication_author_list":{"type":"LIST_STRING","value":["Barker, C. I.","Germovsek, E.","Hoare, R. L.","Lestner, J. M.","Lewis, J.","Standing, J. F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:openaccess.sgul.ac.uk:107388"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)"]},"trust":{"type":"FLOAT","value":0.39030135},"target_publication_title":{"type":"STRING","value":"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology."},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-17"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1418215\",\"titles\":[\"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology.\"],\"abstracts\":[\"Pharmacokinetic/pharmacodynamic (PKPD) modelling is used to describe and quantify dose-concentration-effect relationships. Within paediatric studies in infectious diseases and immunology these methods are often applied to developing guidance on appropriate dosing. In this paper, an introduction to the field of PKPD modelling is given, followed by a review of the PKPD studies that have been undertaken in paediatric infectious diseases and immunology. The main focus is on identifying the methodological approaches used to define the PKPD relationship in these studies. The major findings were that most studies of infectious diseases have developed a PK model and then used simulations to define a dose recommendation based on a pre-defined PD target, which may have been defined in adults or in vitro. For immunological studies much of the modelling has focused on either PK or PD, and since multiple drugs are usually used, delineating the relative contributions of each is challenging. The use of dynamical modelling of in vitro antibacterial studies, and paediatric HIV mechanistic PD models linked with the PK of all drugs, are emerging methods that should enhance PKPD-based recommendations in the future.\"],\"language\":\"und\",\"subjects\":[\"Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)\"],\"creators\":[\"Barker, C. I.\",\"Germovsek, E.\",\"Hoare, R. L.\",\"Lestner, J. M.\",\"Lewis, J.\",\"Standing, J. F.\"],\"publicationdate\":\"2014-01-17\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"10.1016/j.addr.2014.01.002\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1418215/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.addr.2014.01.002\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://openaccess.sgul.ac.uk/107388/1/Pharmacokinetic_pharmacodynamic_modelling_approaches_paediatric_infectious_diseases_immunology.pdf\",\"id\":\"oai:openaccess.sgul.ac.uk:107388\"},\"trust\":0.39030135}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1418215"},"target_publication_author_list":{"type":"LIST_STRING","value":["Barker, C. I.","Germovsek, E.","Hoare, R. L.","Lestner, J. M.","Lewis, J.","Standing, J. F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:openaccess.sgul.ac.uk:107388"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)"]},"trust":{"type":"FLOAT","value":0.39030135},"target_publication_title":{"type":"STRING","value":"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology."},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-17"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1418215\",\"titles\":[\"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology.\"],\"abstracts\":[\"Pharmacokinetic/pharmacodynamic (PKPD) modelling is used to describe and quantify dose-concentration-effect relationships. Within paediatric studies in infectious diseases and immunology these methods are often applied to developing guidance on appropriate dosing. In this paper, an introduction to the field of PKPD modelling is given, followed by a review of the PKPD studies that have been undertaken in paediatric infectious diseases and immunology. The main focus is on identifying the methodological approaches used to define the PKPD relationship in these studies. The major findings were that most studies of infectious diseases have developed a PK model and then used simulations to define a dose recommendation based on a pre-defined PD target, which may have been defined in adults or in vitro. For immunological studies much of the modelling has focused on either PK or PD, and since multiple drugs are usually used, delineating the relative contributions of each is challenging. The use of dynamical modelling of in vitro antibacterial studies, and paediatric HIV mechanistic PD models linked with the PK of all drugs, are emerging methods that should enhance PKPD-based recommendations in the future.\"],\"language\":\"und\",\"subjects\":[\"Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)\"],\"creators\":[\"Barker, C. I.\",\"Germovsek, E.\",\"Hoare, R. L.\",\"Lestner, J. M.\",\"Lewis, J.\",\"Standing, J. F.\"],\"publicationdate\":\"2014-01-17\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1418215/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"},{\"url\":\"http://openaccess.sgul.ac.uk/107388/1/Pharmacokinetic_pharmacodynamic_modelling_approaches_paediatric_infectious_diseases_immunology.pdf\",\"license\":\"OPEN\",\"hostedby\":\"St George\\u0027s Online Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://openaccess.sgul.ac.uk/107388/1/Pharmacokinetic_pharmacodynamic_modelling_approaches_paediatric_infectious_diseases_immunology.pdf\",\"license\":\"OPEN\",\"hostedby\":\"St George\\u0027s Online Research Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://openaccess.sgul.ac.uk/107388/1/Pharmacokinetic_pharmacodynamic_modelling_approaches_paediatric_infectious_diseases_immunology.pdf\",\"id\":\"oai:openaccess.sgul.ac.uk:107388\"},\"trust\":0.22974122}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1418215"},"target_publication_author_list":{"type":"LIST_STRING","value":["Barker, C. I.","Germovsek, E.","Hoare, R. L.","Lestner, J. M.","Lewis, J.","Standing, J. F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:openaccess.sgul.ac.uk:107388"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)"]},"trust":{"type":"FLOAT","value":0.22974122},"target_publication_title":{"type":"STRING","value":"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology."},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-17"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1418215\",\"titles\":[\"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology.\"],\"abstracts\":[\"Pharmacokinetic/pharmacodynamic (PKPD) modelling is used to describe and quantify dose-concentration-effect relationships. Within paediatric studies in infectious diseases and immunology these methods are often applied to developing guidance on appropriate dosing. In this paper, an introduction to the field of PKPD modelling is given, followed by a review of the PKPD studies that have been undertaken in paediatric infectious diseases and immunology. The main focus is on identifying the methodological approaches used to define the PKPD relationship in these studies. The major findings were that most studies of infectious diseases have developed a PK model and then used simulations to define a dose recommendation based on a pre-defined PD target, which may have been defined in adults or in vitro. For immunological studies much of the modelling has focused on either PK or PD, and since multiple drugs are usually used, delineating the relative contributions of each is challenging. The use of dynamical modelling of in vitro antibacterial studies, and paediatric HIV mechanistic PD models linked with the PK of all drugs, are emerging methods that should enhance PKPD-based recommendations in the future.\"],\"language\":\"und\",\"subjects\":[\"Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)\"],\"creators\":[\"Barker, C. I.\",\"Germovsek, E.\",\"Hoare, R. L.\",\"Lestner, J. M.\",\"Lewis, J.\",\"Standing, J. F.\"],\"publicationdate\":\"2014-01-17\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"10.1016/j.addr.2014.01.002\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1418215/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.addr.2014.01.002\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4076844\",\"id\":\"oai:europepmc.org:3058241\"},\"trust\":0.06745452}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1418215"},"target_publication_author_list":{"type":"LIST_STRING","value":["Barker, C. I.","Germovsek, E.","Hoare, R. L.","Lestner, J. M.","Lewis, J.","Standing, J. F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3058241"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)"]},"trust":{"type":"FLOAT","value":0.06745452},"target_publication_title":{"type":"STRING","value":"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-17"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1418215\",\"titles\":[\"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology.\"],\"abstracts\":[\"Pharmacokinetic/pharmacodynamic (PKPD) modelling is used to describe and quantify dose-concentration-effect relationships. Within paediatric studies in infectious diseases and immunology these methods are often applied to developing guidance on appropriate dosing. In this paper, an introduction to the field of PKPD modelling is given, followed by a review of the PKPD studies that have been undertaken in paediatric infectious diseases and immunology. The main focus is on identifying the methodological approaches used to define the PKPD relationship in these studies. The major findings were that most studies of infectious diseases have developed a PK model and then used simulations to define a dose recommendation based on a pre-defined PD target, which may have been defined in adults or in vitro. For immunological studies much of the modelling has focused on either PK or PD, and since multiple drugs are usually used, delineating the relative contributions of each is challenging. The use of dynamical modelling of in vitro antibacterial studies, and paediatric HIV mechanistic PD models linked with the PK of all drugs, are emerging methods that should enhance PKPD-based recommendations in the future.\"],\"language\":\"und\",\"subjects\":[\"Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)\"],\"creators\":[\"Barker, C. I.\",\"Germovsek, E.\",\"Hoare, R. L.\",\"Lestner, J. M.\",\"Lewis, J.\",\"Standing, J. F.\"],\"publicationdate\":\"2014-01-17\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"PMC4076844\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1418215/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC4076844\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4076844\",\"id\":\"oai:europepmc.org:3058241\"},\"trust\":0.06745452}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1418215"},"target_publication_author_list":{"type":"LIST_STRING","value":["Barker, C. I.","Germovsek, E.","Hoare, R. L.","Lestner, J. M.","Lewis, J.","Standing, J. F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3058241"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)"]},"trust":{"type":"FLOAT","value":0.06745452},"target_publication_title":{"type":"STRING","value":"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-17"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1418215\",\"titles\":[\"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology.\"],\"abstracts\":[\"Pharmacokinetic/pharmacodynamic (PKPD) modelling is used to describe and quantify dose-concentration-effect relationships. Within paediatric studies in infectious diseases and immunology these methods are often applied to developing guidance on appropriate dosing. In this paper, an introduction to the field of PKPD modelling is given, followed by a review of the PKPD studies that have been undertaken in paediatric infectious diseases and immunology. The main focus is on identifying the methodological approaches used to define the PKPD relationship in these studies. The major findings were that most studies of infectious diseases have developed a PK model and then used simulations to define a dose recommendation based on a pre-defined PD target, which may have been defined in adults or in vitro. For immunological studies much of the modelling has focused on either PK or PD, and since multiple drugs are usually used, delineating the relative contributions of each is challenging. The use of dynamical modelling of in vitro antibacterial studies, and paediatric HIV mechanistic PD models linked with the PK of all drugs, are emerging methods that should enhance PKPD-based recommendations in the future.\"],\"language\":\"und\",\"subjects\":[\"Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)\"],\"creators\":[\"Barker, C. I.\",\"Germovsek, E.\",\"Hoare, R. L.\",\"Lestner, J. M.\",\"Lewis, J.\",\"Standing, J. F.\"],\"publicationdate\":\"2014-01-17\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"24440429\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1418215/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"24440429\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4076844\",\"id\":\"oai:europepmc.org:3058241\"},\"trust\":0.06745452}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1418215"},"target_publication_author_list":{"type":"LIST_STRING","value":["Barker, C. I.","Germovsek, E.","Hoare, R. L.","Lestner, J. M.","Lewis, J.","Standing, J. F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3058241"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)"]},"trust":{"type":"FLOAT","value":0.06745452},"target_publication_title":{"type":"STRING","value":"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-17"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1418215\",\"titles\":[\"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology.\"],\"abstracts\":[\"Pharmacokinetic/pharmacodynamic (PKPD) modelling is used to describe and quantify dose-concentration-effect relationships. Within paediatric studies in infectious diseases and immunology these methods are often applied to developing guidance on appropriate dosing. In this paper, an introduction to the field of PKPD modelling is given, followed by a review of the PKPD studies that have been undertaken in paediatric infectious diseases and immunology. The main focus is on identifying the methodological approaches used to define the PKPD relationship in these studies. The major findings were that most studies of infectious diseases have developed a PK model and then used simulations to define a dose recommendation based on a pre-defined PD target, which may have been defined in adults or in vitro. For immunological studies much of the modelling has focused on either PK or PD, and since multiple drugs are usually used, delineating the relative contributions of each is challenging. The use of dynamical modelling of in vitro antibacterial studies, and paediatric HIV mechanistic PD models linked with the PK of all drugs, are emerging methods that should enhance PKPD-based recommendations in the future.\"],\"language\":\"und\",\"subjects\":[\"Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)\"],\"creators\":[\"Barker, C. I.\",\"Germovsek, E.\",\"Hoare, R. L.\",\"Lestner, J. M.\",\"Lewis, J.\",\"Standing, J. F.\"],\"publicationdate\":\"2014-01-17\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"10.1016/j.addr.2014.01.002\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1418215/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/j.addr.2014.01.002\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4076844\",\"id\":\"oai:europepmc.org:3058241\"},\"trust\":0.06745452}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1418215"},"target_publication_author_list":{"type":"LIST_STRING","value":["Barker, C. I.","Germovsek, E.","Hoare, R. L.","Lestner, J. M.","Lewis, J.","Standing, J. F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3058241"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)"]},"trust":{"type":"FLOAT","value":0.06745452},"target_publication_title":{"type":"STRING","value":"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-17"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1418215\",\"titles\":[\"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology.\"],\"abstracts\":[\"Pharmacokinetic/pharmacodynamic (PKPD) modelling is used to describe and quantify dose-concentration-effect relationships. Within paediatric studies in infectious diseases and immunology these methods are often applied to developing guidance on appropriate dosing. In this paper, an introduction to the field of PKPD modelling is given, followed by a review of the PKPD studies that have been undertaken in paediatric infectious diseases and immunology. The main focus is on identifying the methodological approaches used to define the PKPD relationship in these studies. The major findings were that most studies of infectious diseases have developed a PK model and then used simulations to define a dose recommendation based on a pre-defined PD target, which may have been defined in adults or in vitro. For immunological studies much of the modelling has focused on either PK or PD, and since multiple drugs are usually used, delineating the relative contributions of each is challenging. The use of dynamical modelling of in vitro antibacterial studies, and paediatric HIV mechanistic PD models linked with the PK of all drugs, are emerging methods that should enhance PKPD-based recommendations in the future.\"],\"language\":\"und\",\"subjects\":[\"Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)\"],\"creators\":[\"Barker, C. I.\",\"Germovsek, E.\",\"Hoare, R. L.\",\"Lestner, J. M.\",\"Lewis, J.\",\"Standing, J. F.\"],\"publicationdate\":\"2014-01-17\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"PMC4076844\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1418215/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC4076844\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4076844\",\"id\":\"oai:europepmc.org:3058241\"},\"trust\":0.06745452}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1418215"},"target_publication_author_list":{"type":"LIST_STRING","value":["Barker, C. I.","Germovsek, E.","Hoare, R. L.","Lestner, J. M.","Lewis, J.","Standing, J. F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3058241"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)"]},"trust":{"type":"FLOAT","value":0.06745452},"target_publication_title":{"type":"STRING","value":"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-17"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.ucl.ac.uk.OAI2:1418215\",\"titles\":[\"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology.\"],\"abstracts\":[\"Pharmacokinetic/pharmacodynamic (PKPD) modelling is used to describe and quantify dose-concentration-effect relationships. Within paediatric studies in infectious diseases and immunology these methods are often applied to developing guidance on appropriate dosing. In this paper, an introduction to the field of PKPD modelling is given, followed by a review of the PKPD studies that have been undertaken in paediatric infectious diseases and immunology. The main focus is on identifying the methodological approaches used to define the PKPD relationship in these studies. The major findings were that most studies of infectious diseases have developed a PK model and then used simulations to define a dose recommendation based on a pre-defined PD target, which may have been defined in adults or in vitro. For immunological studies much of the modelling has focused on either PK or PD, and since multiple drugs are usually used, delineating the relative contributions of each is challenging. The use of dynamical modelling of in vitro antibacterial studies, and paediatric HIV mechanistic PD models linked with the PK of all drugs, are emerging methods that should enhance PKPD-based recommendations in the future.\"],\"language\":\"und\",\"subjects\":[\"Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)\"],\"creators\":[\"Barker, C. I.\",\"Germovsek, E.\",\"Hoare, R. L.\",\"Lestner, J. M.\",\"Lewis, J.\",\"Standing, J. F.\"],\"publicationdate\":\"2014-01-17\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UCL Discovery\"],\"pids\":[{\"value\":\"24440429\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1418215/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"24440429\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4076844\",\"id\":\"oai:europepmc.org:3058241\"},\"trust\":0.06745452}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_publication_id":{"type":"STRING","value":"oai:eprints.ucl.ac.uk.OAI2:1418215"},"target_publication_author_list":{"type":"LIST_STRING","value":["Barker, C. I.","Germovsek, E.","Hoare, R. L.","Lestner, J. M.","Lewis, J.","Standing, J. F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3058241"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Antibacterial, Antifungal, Antimicrobial, Antiviral (and antiretrovirals), HIV viral and T-cell dynamics, Immune reconstitution, Non-linear mixed effects (NLME), Paediatrics, Pharmacokinetics/pharmacodynamics (PKPD)"]},"trust":{"type":"FLOAT","value":0.06745452},"target_publication_title":{"type":"STRING","value":"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-17"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3058241\",\"titles\":[\"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology ☆\"],\"abstracts\":[\"Pharmacokinetic/pharmacodynamic (PKPD) modelling is used to describe and quantify dose–concentration–effect relationships. Within paediatric studies in infectious diseases and immunology these methods are often applied to developing guidance on appropriate dosing. In this paper, an introduction to the field of PKPD modelling is given, followed by a review of the PKPD studies that have been undertaken in paediatric infectious diseases and immunology. The main focus is on identifying the methodological approaches used to define the PKPD relationship in these studies. The major findings were that most studies of infectious diseases have developed a PK model and then used simulations to define a dose recommendation based on a pre-defined PD target, which may have been defined in adults or in vitro. For immunological studies much of the modelling has focused on either PK or PD, and since multiple drugs are usually used, delineating the relative contributions of each is challenging. The use of dynamical modelling of in vitro antibacterial studies, and paediatric HIV mechanistic PD models linked with the PK of all drugs, are emerging methods that should enhance PKPD-based recommendations in the future.\",\"Graphical abstract\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"Pharmacokinetics/pharmacodynamics (PKPD)\",\"Non-linear mixed effects (NLME)\",\"Paediatrics\",\"Antimicrobial\",\"Antibacterial\",\"Antifungal\",\"Antiviral (and antiretrovirals)\",\"HIV viral and T-cell dynamics\",\"Immune reconstitution\"],\"creators\":[\"Barker, Charlotte I. S.\",\"Germovsek, Eva\",\"Hoare, Rollo L.\",\"Lestner, Jodi M.\",\"Lewis, Joanna\",\"Standing, Joseph F.\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"Elsevier Science Publishers, B.V\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Advanced Drug Delivery Reviews\",\"issn\":\"0169-409X\",\"eissn\":\"1872-8294\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1016/j.addr.2014.01.002\",\"type\":\"doi\"},{\"value\":\"PMC4076844\",\"type\":\"pmc\"},{\"value\":\"24440429\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4076844\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://discovery.ucl.ac.uk/1418215/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://discovery.ucl.ac.uk/1418215/\",\"license\":\"OPEN\",\"hostedby\":\"UCL Discovery\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"UCL Discovery\",\"url\":\"http://discovery.ucl.ac.uk/1418215/\",\"id\":\"oai:eprints.ucl.ac.uk.OAI2:1418215\"},\"trust\":0.5608806}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3058241"},"target_publication_author_list":{"type":"LIST_STRING","value":["Barker, Charlotte I. S.","Germovsek, Eva","Hoare, Rollo L.","Lestner, Jodi M.","Lewis, Joanna","Standing, Joseph F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.ucl.ac.uk.OAI2:1418215"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5737c6ec2e0716f3d8a7a5c4e0de0d9a"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","Pharmacokinetics/pharmacodynamics (PKPD)","Non-linear mixed effects (NLME)","Paediatrics","Antimicrobial","Antibacterial","Antifungal","Antiviral (and antiretrovirals)","HIV viral and T-cell dynamics","Immune reconstitution"]},"trust":{"type":"FLOAT","value":0.5608806},"target_publication_title":{"type":"STRING","value":"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology ☆"},"provenance_datasource_name":{"type":"STRING","value":"UCL Discovery"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3058241\",\"titles\":[\"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology ☆\"],\"abstracts\":[\"Pharmacokinetic/pharmacodynamic (PKPD) modelling is used to describe and quantify dose–concentration–effect relationships. Within paediatric studies in infectious diseases and immunology these methods are often applied to developing guidance on appropriate dosing. In this paper, an introduction to the field of PKPD modelling is given, followed by a review of the PKPD studies that have been undertaken in paediatric infectious diseases and immunology. The main focus is on identifying the methodological approaches used to define the PKPD relationship in these studies. The major findings were that most studies of infectious diseases have developed a PK model and then used simulations to define a dose recommendation based on a pre-defined PD target, which may have been defined in adults or in vitro. For immunological studies much of the modelling has focused on either PK or PD, and since multiple drugs are usually used, delineating the relative contributions of each is challenging. The use of dynamical modelling of in vitro antibacterial studies, and paediatric HIV mechanistic PD models linked with the PK of all drugs, are emerging methods that should enhance PKPD-based recommendations in the future.\",\"Graphical abstract\"],\"language\":\"eng\",\"subjects\":[\"Article\",\"Pharmacokinetics/pharmacodynamics (PKPD)\",\"Non-linear mixed effects (NLME)\",\"Paediatrics\",\"Antimicrobial\",\"Antibacterial\",\"Antifungal\",\"Antiviral (and antiretrovirals)\",\"HIV viral and T-cell dynamics\",\"Immune reconstitution\"],\"creators\":[\"Barker, Charlotte I. S.\",\"Germovsek, Eva\",\"Hoare, Rollo L.\",\"Lestner, Jodi M.\",\"Lewis, Joanna\",\"Standing, Joseph F.\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"Elsevier Science Publishers, B.V\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Advanced Drug Delivery Reviews\",\"issn\":\"0169-409X\",\"eissn\":\"1872-8294\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1016/j.addr.2014.01.002\",\"type\":\"doi\"},{\"value\":\"PMC4076844\",\"type\":\"pmc\"},{\"value\":\"24440429\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4076844\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://openaccess.sgul.ac.uk/107388/1/Pharmacokinetic_pharmacodynamic_modelling_approaches_paediatric_infectious_diseases_immunology.pdf\",\"license\":\"OPEN\",\"hostedby\":\"St George\\u0027s Online Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://openaccess.sgul.ac.uk/107388/1/Pharmacokinetic_pharmacodynamic_modelling_approaches_paediatric_infectious_diseases_immunology.pdf\",\"license\":\"OPEN\",\"hostedby\":\"St George\\u0027s Online Research Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://openaccess.sgul.ac.uk/107388/1/Pharmacokinetic_pharmacodynamic_modelling_approaches_paediatric_infectious_diseases_immunology.pdf\",\"id\":\"oai:openaccess.sgul.ac.uk:107388\"},\"trust\":0.9173442}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3058241"},"target_publication_author_list":{"type":"LIST_STRING","value":["Barker, Charlotte I. S.","Germovsek, Eva","Hoare, Rollo L.","Lestner, Jodi M.","Lewis, Joanna","Standing, Joseph F."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:openaccess.sgul.ac.uk:107388"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article","Pharmacokinetics/pharmacodynamics (PKPD)","Non-linear mixed effects (NLME)","Paediatrics","Antimicrobial","Antibacterial","Antifungal","Antiviral (and antiretrovirals)","HIV viral and T-cell dynamics","Immune reconstitution"]},"trust":{"type":"FLOAT","value":0.9173442},"target_publication_title":{"type":"STRING","value":"Pharmacokinetic/pharmacodynamic modelling approaches in paediatric infectious diseases and immunology ☆"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:publications.theseus.fi:10024/28985\",\"titles\":[\"Murskaamon investointihankkeen esiselvitys : Agnico-Eagle Filand\"],\"abstracts\":[\"Tiivistelmä opinnäytetyön lielellä:\\nTyön päällimmäisenä tehtävänä oli kartoittaa kohteen vika luotettavuusselvityksen perusteella ja tutkia, mitkä kohteet tulee ottaa erityisesti huomioon investointisuunnittelussa sekä mahdollisessa tuotantokapasiteetin noston yhteydessä. Työssä on myös pyritty hahmottamaan 3D Cad -suunnittelulla ongelmakohtia ja löytämään niille mahdollinen työn aikana syntynyt ratkaisu.\\n\\nToisessa vaiheessa tavoitteena oli luoda malli siitä, miten luotettavuustoimintaa voidaan käyttää tehokkaasti ongelmanratkaisuun ja miten tulevaisuudessa voidaan toimia selvityksen tekemisessä Agnico-Eagle Finland Kittilän kaivoksella.\\n\\nTyössä käsiteltiin murskaamoa, hydrauliikkavasaraa, seulaa, kaatotaskua, täryseulasyötintä ja leukamurskainta. Työssä käytiin lävitse myös murskaamon rakenteellisia ongelmia sekä työskentelyä murskaamolla.\\n\\nToimilaitteiden vikoja etsittiin JDE-kunnossapitojärjestelmästä ja tuotannon operaattoreiden lokikirjasta. Viat kirjattiin prosentuaalisesti ylös ja sen jälkeen tutkittiin, miten kriittinen toimilaite on prosessille ja mitkä syyt aiheuttavat tuotannon katkoksia tai menetyksiä.\\n\\nTyön suunnitteluosiossa pyrittiin löytämään vaihtoehtoinen ratkaisu, jolla voidaan poistaa tai vähentää murskaustoiminnon keskeyttävää tukkeutumis- ja jäätymisvaikutusta koko rikastamon tuotantoprosessissa. Varsinaista teknistä suunnittelua ei tässä vaiheessa tehty.\",\"The objective of this thesis was to identify the clearance of target fault and which items need special consideration in investment planning, and a possible connection with production capacity. This thesis has also aimed at outlining problem areas with 3D CAD planning and trying to find a possible solution to the problem.\\n\\nIn the second stage, the goal was to create model of how the reliability of test can effectively be used to solve the problem and how the tests can be carried out in the future at the Agnico-Eagle Kittilä Mine.\\nABSTRACT\\nThe scope of the work is the crushing area including hydraulic hammer, grizzly, hopper, vibration feeder and jaw crusher. This thesis includes also the structural problems of crusher and working at the crusher.\\n\\nEquipment failures were searched in JDE maintenance system and the log book of the operators. The failures were recorded in percentage and after that it was investigated how critical the actuator is in the process and what are the reasons that cause production interruptions or production losses.\\n\\nThe planning section of this thesis tries to find out an alternative solution, which can be eliminated or which can reduce the impact of fault to the production process. The actual technical engineering was not done in this stage.\\n\\nKeywords: Maintenance, failure impact analysis, reliability, criticality assessment.\"],\"language\":\"fin\",\"subjects\":[],\"creators\":[\"Alanne, Janne\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Kemi-Tornion ammattikorkeakoulu\",\"embargoenddate\":\"\",\"contributor\":[\"Kemi-Tornion ammattikorkeakoulu\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Theseus\"],\"pids\":[],\"instances\":[{\"url\":\"http://publications.theseus.fi/handle/10024/28985\",\"license\":\"OPEN\",\"hostedby\":\"Theseus\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.theseus.fi/handle/10024/28985\",\"license\":\"OPEN\",\"hostedby\":\"Theseus\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.theseus.fi/handle/10024/28985\",\"license\":\"OPEN\",\"hostedby\":\"Theseus\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Theseus\",\"url\":\"http://www.theseus.fi/handle/10024/28985\",\"id\":\"oai:www.theseus.fi:10024/28985\"},\"trust\":0.507498}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Theseus"},"target_publication_id":{"type":"STRING","value":"oai:publications.theseus.fi:10024/28985"},"target_publication_author_list":{"type":"LIST_STRING","value":["Alanne, Janne"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.theseus.fi:10024/28985"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1ee3dfcd8a0645a25a35977997223d22"},"trust":{"type":"FLOAT","value":0.507498},"target_publication_title":{"type":"STRING","value":"Murskaamon investointihankkeen esiselvitys : Agnico-Eagle Filand"},"provenance_datasource_name":{"type":"STRING","value":"Theseus"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1ee3dfcd8a0645a25a35977997223d22"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.theseus.fi:10024/28985\",\"titles\":[\"Murskaamon investointihankkeen esiselvitys : Agnico-Eagle Filand\"],\"abstracts\":[\"Tiivistelmä opinnäytetyön lielellä:\\nTyön päällimmäisenä tehtävänä oli kartoittaa kohteen vika luotettavuusselvityksen perusteella ja tutkia, mitkä kohteet tulee ottaa erityisesti huomioon investointisuunnittelussa sekä mahdollisessa tuotantokapasiteetin noston yhteydessä. Työssä on myös pyritty hahmottamaan 3D Cad -suunnittelulla ongelmakohtia ja löytämään niille mahdollinen työn aikana syntynyt ratkaisu.\\n\\nToisessa vaiheessa tavoitteena oli luoda malli siitä, miten luotettavuustoimintaa voidaan käyttää tehokkaasti ongelmanratkaisuun ja miten tulevaisuudessa voidaan toimia selvityksen tekemisessä Agnico-Eagle Finland Kittilän kaivoksella.\\n\\nTyössä käsiteltiin murskaamoa, hydrauliikkavasaraa, seulaa, kaatotaskua, täryseulasyötintä ja leukamurskainta. Työssä käytiin lävitse myös murskaamon rakenteellisia ongelmia sekä työskentelyä murskaamolla.\\n\\nToimilaitteiden vikoja etsittiin JDE-kunnossapitojärjestelmästä ja tuotannon operaattoreiden lokikirjasta. Viat kirjattiin prosentuaalisesti ylös ja sen jälkeen tutkittiin, miten kriittinen toimilaite on prosessille ja mitkä syyt aiheuttavat tuotannon katkoksia tai menetyksiä.\\n\\nTyön suunnitteluosiossa pyrittiin löytämään vaihtoehtoinen ratkaisu, jolla voidaan poistaa tai vähentää murskaustoiminnon keskeyttävää tukkeutumis- ja jäätymisvaikutusta koko rikastamon tuotantoprosessissa. Varsinaista teknistä suunnittelua ei tässä vaiheessa tehty.\",\"The objective of this thesis was to identify the clearance of target fault and which items need special consideration in investment planning, and a possible connection with production capacity. This thesis has also aimed at outlining problem areas with 3D CAD planning and trying to find a possible solution to the problem.\\n\\nIn the second stage, the goal was to create model of how the reliability of test can effectively be used to solve the problem and how the tests can be carried out in the future at the Agnico-Eagle Kittilä Mine.\\nABSTRACT\\nThe scope of the work is the crushing area including hydraulic hammer, grizzly, hopper, vibration feeder and jaw crusher. This thesis includes also the structural problems of crusher and working at the crusher.\\n\\nEquipment failures were searched in JDE maintenance system and the log book of the operators. The failures were recorded in percentage and after that it was investigated how critical the actuator is in the process and what are the reasons that cause production interruptions or production losses.\\n\\nThe planning section of this thesis tries to find out an alternative solution, which can be eliminated or which can reduce the impact of fault to the production process. The actual technical engineering was not done in this stage.\\n\\nKeywords: Maintenance, failure impact analysis, reliability, criticality assessment.\"],\"language\":\"fin\",\"subjects\":[],\"creators\":[\"Alanne, Janne\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Lapin ammattikorkeakoulu\",\"embargoenddate\":\"\",\"contributor\":[\"Kemi-Tornion ammattikorkeakoulu\",\"Lapin ammattikorkeakoulu\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Theseus\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.theseus.fi/handle/10024/28985\",\"license\":\"OPEN\",\"hostedby\":\"Theseus\",\"instancetype\":\"Unknown\"},{\"url\":\"http://publications.theseus.fi/handle/10024/28985\",\"license\":\"OPEN\",\"hostedby\":\"Theseus\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://publications.theseus.fi/handle/10024/28985\",\"license\":\"OPEN\",\"hostedby\":\"Theseus\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Theseus\",\"url\":\"http://publications.theseus.fi/handle/10024/28985\",\"id\":\"oai:publications.theseus.fi:10024/28985\"},\"trust\":0.97857505}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Theseus"},"target_publication_id":{"type":"STRING","value":"oai:www.theseus.fi:10024/28985"},"target_publication_author_list":{"type":"LIST_STRING","value":["Alanne, Janne"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:publications.theseus.fi:10024/28985"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1ee3dfcd8a0645a25a35977997223d22"},"trust":{"type":"FLOAT","value":0.97857505},"target_publication_title":{"type":"STRING","value":"Murskaamon investointihankkeen esiselvitys : Agnico-Eagle Filand"},"provenance_datasource_name":{"type":"STRING","value":"Theseus"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1ee3dfcd8a0645a25a35977997223d22"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/38877\",\"titles\":[\"The fog of fraud: Mitigating fraud by strategic ambiguity\"],\"abstracts\":[\"Most insurance companies publish few data on the occurrence and detection of insurance fraud. This stands in contrast to the previous literature on costly state verification, which has shown that it is optimal to commit to an auditing strategy, as the credible announcement of thoroughly auditing claim reports might act as a powerful deterrent. We show that uncertainty about fraud detection can be an effective strategy to deter ambiguity-averse agents from reporting false insurance claims. If, in addition, the auditing costs of the insurers are heterogeneous, it can be optimal not to commit, because committing to a fraud detection strategy eliminates the ambiguity. Thus strategic ambiguity can be an equilibrium outcome in the market and competition does not force firms to provide the relevant information. This finding is also relevant in other auditing settings and complements the literature on games with ambiguity-averse players.\"],\"language\":\"eng\",\"subjects\":[\"D8\",\"K4\",\"ddc:330\",\"Fraud\",\"Commitment\",\"Ambiguity\",\"Strategic Uncertainty\",\"Costly State Verification\",\"Versicherungsbetrug\",\"Versicherung\",\"Informationsverhalten\",\"Entscheidung bei Unsicherheit\",\"Spieltheorie\",\"Versicherungsökonomik\",\"Theorie\"],\"creators\":[\"Lang, Matthias\",\"Wambach, Achim\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"Max Planck Inst. for Research on Collective Goods Bonn\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/38877\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/52303\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/52303\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/52303\",\"id\":\"oai:econstor.eu:10419/52303\"},\"trust\":0.44962978}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/38877"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lang, Matthias","Wambach, Achim"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/52303"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D8","K4","ddc:330","Fraud","Commitment","Ambiguity","Strategic Uncertainty","Costly State Verification","Versicherungsbetrug","Versicherung","Informationsverhalten","Entscheidung bei Unsicherheit","Spieltheorie","Versicherungsökonomik","Theorie"]},"trust":{"type":"FLOAT","value":0.44962978},"target_publication_title":{"type":"STRING","value":"The fog of fraud: Mitigating fraud by strategic ambiguity"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/38877\",\"titles\":[\"The fog of fraud: Mitigating fraud by strategic ambiguity\"],\"abstracts\":[\"Most insurance companies publish few data on the occurrence and detection of insurance fraud. This stands in contrast to the previous literature on costly state verification, which has shown that it is optimal to commit to an auditing strategy, as the credible announcement of thoroughly auditing claim reports might act as a powerful deterrent. We show that uncertainty about fraud detection can be an effective strategy to deter ambiguity-averse agents from reporting false insurance claims. If, in addition, the auditing costs of the insurers are heterogeneous, it can be optimal not to commit, because committing to a fraud detection strategy eliminates the ambiguity. Thus strategic ambiguity can be an equilibrium outcome in the market and competition does not force firms to provide the relevant information. This finding is also relevant in other auditing settings and complements the literature on games with ambiguity-averse players.\"],\"language\":\"eng\",\"subjects\":[\"D8\",\"K4\",\"ddc:330\",\"Fraud\",\"Commitment\",\"Ambiguity\",\"Strategic Uncertainty\",\"Costly State Verification\",\"Versicherungsbetrug\",\"Versicherung\",\"Informationsverhalten\",\"Entscheidung bei Unsicherheit\",\"Spieltheorie\",\"Versicherungsökonomik\",\"Theorie\"],\"creators\":[\"Lang, Matthias\",\"Wambach, Achim\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"Max Planck Inst. for Research on Collective Goods Bonn\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/38877\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.coll.mpg.de/pdf_dat/2010_24online.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.coll.mpg.de/pdf_dat/2010_24online.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.coll.mpg.de/pdf_dat/2010_24online.pdf\",\"id\":\"oai:RePEc:mpg:wpaper:2010_24\"},\"trust\":0.42845076}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/38877"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lang, Matthias","Wambach, Achim"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:mpg:wpaper:2010_24"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D8","K4","ddc:330","Fraud","Commitment","Ambiguity","Strategic Uncertainty","Costly State Verification","Versicherungsbetrug","Versicherung","Informationsverhalten","Entscheidung bei Unsicherheit","Spieltheorie","Versicherungsökonomik","Theorie"]},"trust":{"type":"FLOAT","value":0.42845076},"target_publication_title":{"type":"STRING","value":"The fog of fraud: Mitigating fraud by strategic ambiguity"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/52303\",\"titles\":[\"The fog of fraud: Mitigating fraud by strategic ambiguity\"],\"abstracts\":[\"Most insurance companies publish few data on the occurrence and detection of insurance fraud. This stands in contrast to the previous literature on costly state verification, which has shown that it is optimal to commit to an auditing strategy, as the credible announcement of thoroughly auditing claim reports might act as a powerful deterrent. We show that uncertainty about fraud detection can be an effective strategy to deter ambiguity-averse agents from reporting false insurance claims. If, in addition, the auditing costs of the insurers are heterogeneous, it can be optimal not to commit, because committing to a fraud-detection strategy eliminates the ambiguity. Thus, strategic ambiguity can be an equilibrium outcome in the market and competition does not force firms to provide the relevant information. This finding is also relevant in other auditing settings, like tax enforcement.\",\"Revised Version October 2011\"],\"language\":\"eng\",\"subjects\":[\"D8\",\"K4\",\"ddc:330\",\"Fraud\",\"Commitment\",\"Ambiguity\",\"Costly State Verification\",\"Audit\",\"Versicherungsökonomik\",\"Theorie\",\"Versicherungsbetrug\",\"Versicherung\",\"Informationsverhalten\",\"Entscheidung bei Unsicherheit\",\"Spieltheorie\"],\"creators\":[\"Lang, Matthias\",\"Wambach, Achim\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Max Planck Inst. for Research on Collective Goods Bonn\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/52303\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/38877\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/38877\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/38877\",\"id\":\"oai:econstor.eu:10419/38877\"},\"trust\":0.12449002}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/52303"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lang, Matthias","Wambach, Achim"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/38877"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D8","K4","ddc:330","Fraud","Commitment","Ambiguity","Costly State Verification","Audit","Versicherungsökonomik","Theorie","Versicherungsbetrug","Versicherung","Informationsverhalten","Entscheidung bei Unsicherheit","Spieltheorie"]},"trust":{"type":"FLOAT","value":0.12449002},"target_publication_title":{"type":"STRING","value":"The fog of fraud: Mitigating fraud by strategic ambiguity"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/52303\",\"titles\":[\"The fog of fraud: Mitigating fraud by strategic ambiguity\"],\"abstracts\":[\"Most insurance companies publish few data on the occurrence and detection of insurance fraud. This stands in contrast to the previous literature on costly state verification, which has shown that it is optimal to commit to an auditing strategy, as the credible announcement of thoroughly auditing claim reports might act as a powerful deterrent. We show that uncertainty about fraud detection can be an effective strategy to deter ambiguity-averse agents from reporting false insurance claims. If, in addition, the auditing costs of the insurers are heterogeneous, it can be optimal not to commit, because committing to a fraud-detection strategy eliminates the ambiguity. Thus, strategic ambiguity can be an equilibrium outcome in the market and competition does not force firms to provide the relevant information. This finding is also relevant in other auditing settings, like tax enforcement.\",\"Revised Version October 2011\"],\"language\":\"eng\",\"subjects\":[\"D8\",\"K4\",\"ddc:330\",\"Fraud\",\"Commitment\",\"Ambiguity\",\"Costly State Verification\",\"Audit\",\"Versicherungsökonomik\",\"Theorie\",\"Versicherungsbetrug\",\"Versicherung\",\"Informationsverhalten\",\"Entscheidung bei Unsicherheit\",\"Spieltheorie\"],\"creators\":[\"Lang, Matthias\",\"Wambach, Achim\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"Max Planck Inst. for Research on Collective Goods Bonn\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/52303\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.coll.mpg.de/pdf_dat/2010_24online.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.coll.mpg.de/pdf_dat/2010_24online.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.coll.mpg.de/pdf_dat/2010_24online.pdf\",\"id\":\"oai:RePEc:mpg:wpaper:2010_24\"},\"trust\":0.70938885}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/52303"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lang, Matthias","Wambach, Achim"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:mpg:wpaper:2010_24"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D8","K4","ddc:330","Fraud","Commitment","Ambiguity","Costly State Verification","Audit","Versicherungsökonomik","Theorie","Versicherungsbetrug","Versicherung","Informationsverhalten","Entscheidung bei Unsicherheit","Spieltheorie"]},"trust":{"type":"FLOAT","value":0.70938885},"target_publication_title":{"type":"STRING","value":"The fog of fraud: Mitigating fraud by strategic ambiguity"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:mpg:wpaper:2010_24\",\"titles\":[\"The fog of fraud – mitigating fraud by strategic ambiguity\"],\"abstracts\":[\"Most insurance companies publish few data on the occurrence and detection of insurance fraud. This stands in contrast to the previous literature on costly state verification, which has shown that it is optimal to commit to an auditing strategy, as the credible announcement of thoroughly auditing claim reports might act as a powerful deterrent. We show that uncertainty about fraud detection can be an effective strategy to deter ambiguity-averse agents from reporting false insurance claims. If, in addition, the auditing costs of the insurers are heterogeneous, it can be optimal not to commit, because committing to a fraud detection strategy eliminates the ambiguity. Thus strategic ambiguity can be an equilibrium outcome in the market and competition does not force firms to provide the relevant information. This finding is also relevant in other auditing settings and complements the literature on games with ambiguity-averse players.\"],\"language\":\"und\",\"subjects\":[\"commitment, Ambiguity, Fraud, Strategic Uncertainty, Costly State Verification\"],\"creators\":[\"Matthias Lang\",\"Achim Wambach\"],\"publicationdate\":\"2010-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.coll.mpg.de/pdf_dat/2010_24online.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/38877\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/38877\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/38877\",\"id\":\"oai:econstor.eu:10419/38877\"},\"trust\":0.7580954}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:mpg:wpaper:2010_24"},"target_publication_author_list":{"type":"LIST_STRING","value":["Matthias Lang","Achim Wambach"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/38877"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["commitment, Ambiguity, Fraud, Strategic Uncertainty, Costly State Verification"]},"trust":{"type":"FLOAT","value":0.7580954},"target_publication_title":{"type":"STRING","value":"The fog of fraud – mitigating fraud by strategic ambiguity"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2010-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:mpg:wpaper:2010_24\",\"titles\":[\"The fog of fraud – mitigating fraud by strategic ambiguity\"],\"abstracts\":[\"Most insurance companies publish few data on the occurrence and detection of insurance fraud. This stands in contrast to the previous literature on costly state verification, which has shown that it is optimal to commit to an auditing strategy, as the credible announcement of thoroughly auditing claim reports might act as a powerful deterrent. We show that uncertainty about fraud detection can be an effective strategy to deter ambiguity-averse agents from reporting false insurance claims. If, in addition, the auditing costs of the insurers are heterogeneous, it can be optimal not to commit, because committing to a fraud detection strategy eliminates the ambiguity. Thus strategic ambiguity can be an equilibrium outcome in the market and competition does not force firms to provide the relevant information. This finding is also relevant in other auditing settings and complements the literature on games with ambiguity-averse players.\"],\"language\":\"und\",\"subjects\":[\"commitment, Ambiguity, Fraud, Strategic Uncertainty, Costly State Verification\"],\"creators\":[\"Matthias Lang\",\"Achim Wambach\"],\"publicationdate\":\"2010-05-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.coll.mpg.de/pdf_dat/2010_24online.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/52303\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/52303\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/52303\",\"id\":\"oai:econstor.eu:10419/52303\"},\"trust\":0.71400034}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:mpg:wpaper:2010_24"},"target_publication_author_list":{"type":"LIST_STRING","value":["Matthias Lang","Achim Wambach"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/52303"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["commitment, Ambiguity, Fraud, Strategic Uncertainty, Costly State Verification"]},"trust":{"type":"FLOAT","value":0.71400034},"target_publication_title":{"type":"STRING","value":"The fog of fraud – mitigating fraud by strategic ambiguity"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2010-05-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ub.rug.nl:dbi/4bb30cfa2732a\",\"titles\":[\"Delta 5-sterole en provitamiene D met vertakte sykettings\"],\"abstracts\":[\"Windaus, Lettré and Schenk synthesised 7-dehydrocholesterol (I) by pyrolysis of the dibenzoate of 7-hydroxycholestrol. On comparing this syntetic provitamin D with ergosterol (II) they came to the conclusion that a number of steroids differing in the degree of unsaturation and in the length of the side chain, but having the same system of conjugated double bonds in ring B of the nucleus, would be convertible to antirachitic substances (vitamins D) by irradiation with ultra-violet light. ...\\n\\nZie: Summary\"],\"language\":\"dut/nld\",\"subjects\":[],\"creators\":[\"Louw, Daniel Francois\"],\"publicationdate\":\"1953-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"University of Groningen Digital Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://irs.ub.rug.nl/ppn/864464355\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"https://www.rug.nl/research/portal/en/publications/delta-5sterole-en-provitamiene-d-met-vertakte-sykettings(b550c32c-2667-418f-bee4-17f20dfde5d8).html\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://www.rug.nl/research/portal/en/publications/delta-5sterole-en-provitamiene-d-met-vertakte-sykettings(b550c32c-2667-418f-bee4-17f20dfde5d8).html\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"https://www.rug.nl/research/portal/en/publications/delta-5sterole-en-provitamiene-d-met-vertakte-sykettings(b550c32c-2667-418f-bee4-17f20dfde5d8).html\",\"id\":\"rug:oai:pure.rug.nl:publications/b550c32c-2667-418f-bee4-17f20dfde5d8\"},\"trust\":0.29709965}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"University of Groningen Digital Archive"},"target_publication_id":{"type":"STRING","value":"oai:ub.rug.nl:dbi/4bb30cfa2732a"},"target_publication_author_list":{"type":"LIST_STRING","value":["Louw, Daniel Francois"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["rug:oai:pure.rug.nl:publications/b550c32c-2667-418f-bee4-17f20dfde5d8"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.29709965},"target_publication_title":{"type":"STRING","value":"Delta 5-sterole en provitamiene D met vertakte sykettings"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1953-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::a2557a7b2e94197ff767970b67041697"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:emse-00979195v1\",\"titles\":[\"Experimental investigations of internal and effective stresses during fatigue loading of high-strength steel\"],\"abstracts\":[\"International audience\",\"Low cycle fatigue tests are performed on a high strength tempered martensitic steel at different plastic strain amplitudes at room temperature. Internal and effective components of the flow stress are analyzed using Handfield and Dickson\\u0027s method. The internal stress is affected by the plastic strain amplitude. Conversely, the evolution of the athermal component of the effective stress with the number of cycles is independent of the plastic strain amplitude. The thermal part of the effective stress increases with the plastic strain amplitude, but remains constant with plastic strain accumulation. Microstructural changes in the cyclically deformed material are investigated by means of transmission electronic mycroscopy and X-Ray characterizations. Internal and effective stress evolutions are discussed based on these observations\"],\"language\":\"eng\",\"subjects\":[\"High strength steel\",\"Fatigue\",\"Internal stress\",\"Effectivestress\",\"Dislocations\",\"[SPI.MAT] Engineering Sciences/Materials\",\"[SPI.MECA.MEMA] Engineering Sciences/Mechanics/Mechanics of materials\",\"[PHYS.MECA.MEMA] Physics/Mechanics/Mechanics of materials\"],\"creators\":[\"Vucko, Flavien\",\"Bosch, Cédric\",\"Delafosse, David\"],\"publicationdate\":\"2014-01-15\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[\"UMR 5307 - Laboratoire Georges Friedel (LGF-ENSMSE) ; École Nationale Supérieure des Mines - Saint-Étienne\",\"Département Mécanique physique et interfaces (MPI-ENSMSE) ; SMS - École Nationale Supérieure des Mines - Saint-Étienne\",\"Centre Science des Matériaux et des Structures (SMS-ENSMSE) ; École Nationale Supérieure des Mines - Saint-Étienne\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1016/j.msea.2014.01.016\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal-emse.ccsd.cnrs.fr/emse-00979195\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal-emse.ccsd.cnrs.fr/emse-00979195\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-emse.ccsd.cnrs.fr/emse-00979195\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-emse.ccsd.cnrs.fr/emse-00979195\",\"id\":\"oai:hal-emse.ccsd.cnrs.fr:emse-00979195\"},\"trust\":0.17917705}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:emse-00979195v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Vucko, Flavien","Bosch, Cédric","Delafosse, David"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal-emse.ccsd.cnrs.fr:emse-00979195"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["High strength steel","Fatigue","Internal stress","Effectivestress","Dislocations","[SPI.MAT] Engineering Sciences/Materials","[SPI.MECA.MEMA] Engineering Sciences/Mechanics/Mechanics of materials","[PHYS.MECA.MEMA] Physics/Mechanics/Mechanics of materials"]},"trust":{"type":"FLOAT","value":0.17917705},"target_publication_title":{"type":"STRING","value":"Experimental investigations of internal and effective stresses during fatigue loading of high-strength steel"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal-emse.ccsd.cnrs.fr:emse-00979195\",\"titles\":[\"Experimental investigations of internal and effective stresses during fatigue loading of high-strength steel\"],\"abstracts\":[\"Low cycle fatigue tests are performed on a high strength tempered martensitic steel at different plastic strain amplitudes at room temperature. Internal and effective components of the flow stress are analyzed using Handfield and Dickson\\u0027s method. The internal stress is affected by the plastic strain amplitude. Conversely, the evolution of the athermal component of the effective stress with the number of cycles is independent of the plastic strain amplitude. The thermal part of the effective stress increases with the plastic strain amplitude, but remains constant with plastic strain accumulation. Microstructural changes in the cyclically deformed material are investigated by means of transmission electronic mycroscopy and X-Ray characterizations. Internal and effective stress evolutions are discussed based on these observations\"],\"language\":\"eng\",\"subjects\":[\"[SPI:MAT] Engineering Sciences/Materials\",\"[SPI:MAT] Sciences de l\\u0027ingénieur/Matériaux\",\"[SPI:MECA:MEMA] Engineering Sciences/Mechanics/Mechanics of materials\",\"[SPI:MECA:MEMA] Sciences de l\\u0027ingénieur/Mécanique/Mécanique des matériaux\",\"[PHYS:MECA:MEMA] Physics/Mechanics/Mechanics of materials\",\"[PHYS:MECA:MEMA] Physique/Mécanique/Mécanique des matériaux\",\"High strength steel\",\"Fatigue\",\"Internal stress\",\"Effectivestress\",\"Dislocations\"],\"creators\":[\"Vucko, Flavien\",\"Bosch, Cédric\",\"Delafosse, David\"],\"publicationdate\":\"2014-01-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1016/j.msea.2014.01.016\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal-emse.ccsd.cnrs.fr/emse-00979195\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://hal-emse.ccsd.cnrs.fr/emse-00979195\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-emse.ccsd.cnrs.fr/emse-00979195\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-emse.ccsd.cnrs.fr/emse-00979195\",\"id\":\"oai:HAL:emse-00979195v1\"},\"trust\":0.4267807}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal-emse.ccsd.cnrs.fr:emse-00979195"},"target_publication_author_list":{"type":"LIST_STRING","value":["Vucko, Flavien","Bosch, Cédric","Delafosse, David"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:emse-00979195v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SPI:MAT] Engineering Sciences/Materials","[SPI:MAT] Sciences de l\u0027ingénieur/Matériaux","[SPI:MECA:MEMA] Engineering Sciences/Mechanics/Mechanics of materials","[SPI:MECA:MEMA] Sciences de l\u0027ingénieur/Mécanique/Mécanique des matériaux","[PHYS:MECA:MEMA] Physics/Mechanics/Mechanics of materials","[PHYS:MECA:MEMA] Physique/Mécanique/Mécanique des matériaux","High strength steel","Fatigue","Internal stress","Effectivestress","Dislocations"]},"trust":{"type":"FLOAT","value":0.4267807},"target_publication_title":{"type":"STRING","value":"Experimental investigations of internal and effective stresses during fatigue loading of high-strength steel"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:srt:wpaper:0414\",\"titles\":[\"Are regional systems greening the economy? The role of environmental innovations and agglomeration forces.\"],\"abstracts\":[\"The adoption and diffusion of environmental innovations (EIs) is crucial to greening the economy and achieving win-win environmental-economic gains. A large and increasing literature has focused on the levers underlying EIs that are external to the firm, such as stakeholders\\u0027 pressure and policy pressure. Little attention, however, has been devoted so far to the possible role of local spatial spillovers. The latter can be very relevant since growth depends on strong idiosyncratic regional factors - such asagglomeration economies - that must be integrated with the challenges posed by global markets. To overcome this drawback of the existing literature, we analyse here a rich dataset that covers the innovative activities and economic performances of firms in the Emilia-Romagna Region in Italy, a manufacturing district-rich area. We analyse firms\\u0027 performances through a two-step procedure. First, we look at the relevance of spatial levers, namely whether the agglomeration of EIs induces EIs in a given firm. Second, we test whether EIs have significantly increased firms\\u0027 economic performances. As to the importance of spatial levers, the role of agglomeration turns out to be fairly local in nature:we find that spillovers are significantly inducing innovation within municipal boundaries, which is coherent with the district-based Marshallian economies of north- eastern Italy. Regarding economic performances, firms\\u0027 productivity is positively related to EI adoption; in particular,firms that adopt EIs and organizational change show a better economic performance.Our findings suggest that EIscanbe a key source of growth for regional systems, particularly when spurred by local spillovers, and an important way outof the ongoing crisis.\"],\"language\":\"und\",\"subjects\":[\"environmental innovations, firm economic performances, local spillovers, manufacturing, agglomeration\"],\"creators\":[\"Davide Antonioli\",\"Simone Borghesi\",\"Massimiliano Mazzanti\"],\"publicationdate\":\"2014-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.sustainability-seeds.org/papers/RePec/srt/wpaper/0414.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/102004\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/102004\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/102004\",\"id\":\"oai:econstor.eu:10419/102004\"},\"trust\":0.4318375}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:srt:wpaper:0414"},"target_publication_author_list":{"type":"LIST_STRING","value":["Davide Antonioli","Simone Borghesi","Massimiliano Mazzanti"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/102004"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["environmental innovations, firm economic performances, local spillovers, manufacturing, agglomeration"]},"trust":{"type":"FLOAT","value":0.4318375},"target_publication_title":{"type":"STRING","value":"Are regional systems greening the economy? The role of environmental innovations and agglomeration forces."},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2014-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:srt:wpaper:0414\",\"titles\":[\"Are regional systems greening the economy? The role of environmental innovations and agglomeration forces.\"],\"abstracts\":[\"The adoption and diffusion of environmental innovations (EIs) is crucial to greening the economy and achieving win-win environmental-economic gains. A large and increasing literature has focused on the levers underlying EIs that are external to the firm, such as stakeholders\\u0027 pressure and policy pressure. Little attention, however, has been devoted so far to the possible role of local spatial spillovers. The latter can be very relevant since growth depends on strong idiosyncratic regional factors - such asagglomeration economies - that must be integrated with the challenges posed by global markets. To overcome this drawback of the existing literature, we analyse here a rich dataset that covers the innovative activities and economic performances of firms in the Emilia-Romagna Region in Italy, a manufacturing district-rich area. We analyse firms\\u0027 performances through a two-step procedure. First, we look at the relevance of spatial levers, namely whether the agglomeration of EIs induces EIs in a given firm. Second, we test whether EIs have significantly increased firms\\u0027 economic performances. As to the importance of spatial levers, the role of agglomeration turns out to be fairly local in nature:we find that spillovers are significantly inducing innovation within municipal boundaries, which is coherent with the district-based Marshallian economies of north- eastern Italy. Regarding economic performances, firms\\u0027 productivity is positively related to EI adoption; in particular,firms that adopt EIs and organizational change show a better economic performance.Our findings suggest that EIscanbe a key source of growth for regional systems, particularly when spurred by local spillovers, and an important way outof the ongoing crisis.\"],\"language\":\"und\",\"subjects\":[\"environmental innovations, firm economic performances, local spillovers, manufacturing, agglomeration\"],\"creators\":[\"Davide Antonioli\",\"Simone Borghesi\",\"Massimiliano Mazzanti\"],\"publicationdate\":\"2014-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.sustainability-seeds.org/papers/RePec/srt/wpaper/0414.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.feem.it/userfiles/attach/20144181553434NDL2014-042.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.feem.it/userfiles/attach/20144181553434NDL2014-042.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.feem.it/userfiles/attach/20144181553434NDL2014-042.pdf\",\"id\":\"oai:RePEc:fem:femwpa:2014.42\"},\"trust\":0.6597572}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:srt:wpaper:0414"},"target_publication_author_list":{"type":"LIST_STRING","value":["Davide Antonioli","Simone Borghesi","Massimiliano Mazzanti"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fem:femwpa:2014.42"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["environmental innovations, firm economic performances, local spillovers, manufacturing, agglomeration"]},"trust":{"type":"FLOAT","value":0.6597572},"target_publication_title":{"type":"STRING","value":"Are regional systems greening the economy? The role of environmental innovations and agglomeration forces."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/102004\",\"titles\":[\"Are Regional Systems Greening the Economy? the Role of Environmental Innovations and Agglomeration Forces\"],\"abstracts\":[\"The adoption and diffusion of environmental innovations (EIs) is crucial to greening the economy and achieving win-win environmental – economic gains. A large and increasing literature has focused on the levers underlying EIs that are external to the firm, such as stakeholders’ pressure and policy pressure. Little attention, however, has been devoted so far to the possible role of local spatial spillovers which are one of the factors affecting sector/geographical specialisations. We analyse a rich dataset that covers the innovative activities and economic performances of firms in the Emilia-Romagna region in Italy, an area rich of manufacturing districts. We analyse EIs drivers and effects on firms’ performances through a two-step procedure. First, we look at the relevance of spatial levers, namely whether the agglomeration of EIs induces EIs in a given firm. Second, we test whether EIs are significantly related to firms’ economic performances. As to the importance of spatial levers, the role of agglomeration turns out to be fairly local in nature: we find that spillovers are significantly inducing innovation within municipal boundaries. Regarding economic performances, firms\\u0027 productivity is positively related to EI adoption; in particular, firms that jointly adopt EIs and organizational changes show a better economic performance.\"],\"language\":\"eng\",\"subjects\":[\"Q5\",\"Q55\",\"ddc:330\",\"Environmental Innovations\",\"Firm Economic Performances\",\"Local Spillovers\",\"Manufacturing\",\"Agglomeration.\"],\"creators\":[\"Antonioli, Davide\",\"Borghesi, Simone\",\"Mazzanti, Massimiliano\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"Fondazione Eni Enrico Mattei (FEEM) Milano\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/102004\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.sustainability-seeds.org/papers/RePec/srt/wpaper/0414.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.sustainability-seeds.org/papers/RePec/srt/wpaper/0414.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.sustainability-seeds.org/papers/RePec/srt/wpaper/0414.pdf\",\"id\":\"oai:RePEc:srt:wpaper:0414\"},\"trust\":0.22256845}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/102004"},"target_publication_author_list":{"type":"LIST_STRING","value":["Antonioli, Davide","Borghesi, Simone","Mazzanti, Massimiliano"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:srt:wpaper:0414"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Q5","Q55","ddc:330","Environmental Innovations","Firm Economic Performances","Local Spillovers","Manufacturing","Agglomeration."]},"trust":{"type":"FLOAT","value":0.22256845},"target_publication_title":{"type":"STRING","value":"Are Regional Systems Greening the Economy? the Role of Environmental Innovations and Agglomeration Forces"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/102004\",\"titles\":[\"Are Regional Systems Greening the Economy? the Role of Environmental Innovations and Agglomeration Forces\"],\"abstracts\":[\"The adoption and diffusion of environmental innovations (EIs) is crucial to greening the economy and achieving win-win environmental – economic gains. A large and increasing literature has focused on the levers underlying EIs that are external to the firm, such as stakeholders’ pressure and policy pressure. Little attention, however, has been devoted so far to the possible role of local spatial spillovers which are one of the factors affecting sector/geographical specialisations. We analyse a rich dataset that covers the innovative activities and economic performances of firms in the Emilia-Romagna region in Italy, an area rich of manufacturing districts. We analyse EIs drivers and effects on firms’ performances through a two-step procedure. First, we look at the relevance of spatial levers, namely whether the agglomeration of EIs induces EIs in a given firm. Second, we test whether EIs are significantly related to firms’ economic performances. As to the importance of spatial levers, the role of agglomeration turns out to be fairly local in nature: we find that spillovers are significantly inducing innovation within municipal boundaries. Regarding economic performances, firms\\u0027 productivity is positively related to EI adoption; in particular, firms that jointly adopt EIs and organizational changes show a better economic performance.\"],\"language\":\"eng\",\"subjects\":[\"Q5\",\"Q55\",\"ddc:330\",\"Environmental Innovations\",\"Firm Economic Performances\",\"Local Spillovers\",\"Manufacturing\",\"Agglomeration.\"],\"creators\":[\"Antonioli, Davide\",\"Borghesi, Simone\",\"Mazzanti, Massimiliano\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"Fondazione Eni Enrico Mattei (FEEM) Milano\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/102004\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.feem.it/userfiles/attach/20144181553434NDL2014-042.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.feem.it/userfiles/attach/20144181553434NDL2014-042.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.feem.it/userfiles/attach/20144181553434NDL2014-042.pdf\",\"id\":\"oai:RePEc:fem:femwpa:2014.42\"},\"trust\":0.2848931}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/102004"},"target_publication_author_list":{"type":"LIST_STRING","value":["Antonioli, Davide","Borghesi, Simone","Mazzanti, Massimiliano"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fem:femwpa:2014.42"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Q5","Q55","ddc:330","Environmental Innovations","Firm Economic Performances","Local Spillovers","Manufacturing","Agglomeration."]},"trust":{"type":"FLOAT","value":0.2848931},"target_publication_title":{"type":"STRING","value":"Are Regional Systems Greening the Economy? the Role of Environmental Innovations and Agglomeration Forces"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fem:femwpa:2014.42\",\"titles\":[\"Are Regional Systems Greening the Economy? the Role of Environmental Innovations and Agglomeration Forces\"],\"abstracts\":[\"The adoption and diffusion of environmental innovations (EIs) is crucial to greening the economy and achieving win-win environmental – economic gains. A large and increasing literature has focused on the levers underlying EIs that are external to the firm, such as stakeholders’ pressure and policy pressure. Little attention, however, has been devoted so far to the possible role of local spatial spillovers which are one of the factors affecting sector/geographical specialisations. We analyse a rich dataset that covers the innovative activities and economic performances of firms in the Emilia-Romagna region in Italy, an area rich of manufacturing districts. We analyse EIs drivers and effects on firms’ performances through a two-step procedure. First, we look at the relevance of spatial levers, namely whether the agglomeration of EIs induces EIs in a given firm. Second, we test whether EIs are significantly related to firms’ economic performances. As to the importance of spatial levers, the role of agglomeration turns out to be fairly local in nature: we find that spillovers are significantly inducing innovation within municipal boundaries. Regarding economic performances, firms\\u0027 productivity is positively related to EI adoption; in particular, firms that jointly adopt EIs and organizational changes show a better economic performance.\"],\"language\":\"und\",\"subjects\":[\"Environmental Innovations, Firm Economic Performances, Local Spillovers, Manufacturing, Agglomeration.\"],\"creators\":[\"Davide Antonioli\",\"Simone Borghesi\",\"Massimiliano Mazzanti\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.feem.it/userfiles/attach/20144181553434NDL2014-042.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.sustainability-seeds.org/papers/RePec/srt/wpaper/0414.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.sustainability-seeds.org/papers/RePec/srt/wpaper/0414.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.sustainability-seeds.org/papers/RePec/srt/wpaper/0414.pdf\",\"id\":\"oai:RePEc:srt:wpaper:0414\"},\"trust\":0.7164062}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fem:femwpa:2014.42"},"target_publication_author_list":{"type":"LIST_STRING","value":["Davide Antonioli","Simone Borghesi","Massimiliano Mazzanti"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:srt:wpaper:0414"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Environmental Innovations, Firm Economic Performances, Local Spillovers, Manufacturing, Agglomeration."]},"trust":{"type":"FLOAT","value":0.7164062},"target_publication_title":{"type":"STRING","value":"Are Regional Systems Greening the Economy? the Role of Environmental Innovations and Agglomeration Forces"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fem:femwpa:2014.42\",\"titles\":[\"Are Regional Systems Greening the Economy? the Role of Environmental Innovations and Agglomeration Forces\"],\"abstracts\":[\"The adoption and diffusion of environmental innovations (EIs) is crucial to greening the economy and achieving win-win environmental – economic gains. A large and increasing literature has focused on the levers underlying EIs that are external to the firm, such as stakeholders’ pressure and policy pressure. Little attention, however, has been devoted so far to the possible role of local spatial spillovers which are one of the factors affecting sector/geographical specialisations. We analyse a rich dataset that covers the innovative activities and economic performances of firms in the Emilia-Romagna region in Italy, an area rich of manufacturing districts. We analyse EIs drivers and effects on firms’ performances through a two-step procedure. First, we look at the relevance of spatial levers, namely whether the agglomeration of EIs induces EIs in a given firm. Second, we test whether EIs are significantly related to firms’ economic performances. As to the importance of spatial levers, the role of agglomeration turns out to be fairly local in nature: we find that spillovers are significantly inducing innovation within municipal boundaries. Regarding economic performances, firms\\u0027 productivity is positively related to EI adoption; in particular, firms that jointly adopt EIs and organizational changes show a better economic performance.\"],\"language\":\"und\",\"subjects\":[\"Environmental Innovations, Firm Economic Performances, Local Spillovers, Manufacturing, Agglomeration.\"],\"creators\":[\"Davide Antonioli\",\"Simone Borghesi\",\"Massimiliano Mazzanti\"],\"publicationdate\":\"2014-04-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.feem.it/userfiles/attach/20144181553434NDL2014-042.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/102004\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/102004\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/102004\",\"id\":\"oai:econstor.eu:10419/102004\"},\"trust\":0.37698346}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fem:femwpa:2014.42"},"target_publication_author_list":{"type":"LIST_STRING","value":["Davide Antonioli","Simone Borghesi","Massimiliano Mazzanti"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/102004"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Environmental Innovations, Firm Economic Performances, Local Spillovers, Manufacturing, Agglomeration."]},"trust":{"type":"FLOAT","value":0.37698346},"target_publication_title":{"type":"STRING","value":"Are Regional Systems Greening the Economy? the Role of Environmental Innovations and Agglomeration Forces"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2014-04-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:sae:urbstu:v:36:y:1999:i:7:p:1195-1215\",\"titles\":[\"Growth-pole Strategies in Regional Economic Planning: A Retrospective View\"],\"abstracts\":[\"The paper undertakes a detailed examination of growth-pole strategies, an emphasis in regional economic planning during the 1960s which never lived up to its early promise. The initial concern is with the origins of the strategy, particularly the manner in which the work of Perroux (on dominance and economic space) became modified to form a normative concept in regional economic planning. Consideration is given to the various regional-problem settings in which the growth-pole strategy has been advocated. These settings reflected such policy concerns as depressed-area revival, the encouragement of regional deconcentration, the modification of a national urban system, the pursuit of interregional balance, etc. Attention then turns to the fundamental nature and underlying rationale of the strategy. The paper is continued in Part 2 which appears in the next issue of the journal.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Parr, John B.\"],\"publicationdate\":\"1999-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Urban Studies\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://usj.sagepub.com/content/36/7/1195.abstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://usj.sagepub.com/content/36/8/1247.abstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://usj.sagepub.com/content/36/8/1247.abstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://usj.sagepub.com/content/36/8/1247.abstract\",\"id\":\"oai:RePEc:sae:urbstu:v:36:y:1999:i:8:p:1247-1268\"},\"trust\":0.44925958}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:sae:urbstu:v:36:y:1999:i:7:p:1195-1215"},"target_publication_author_list":{"type":"LIST_STRING","value":["Parr, John B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:sae:urbstu:v:36:y:1999:i:8:p:1247-1268"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.44925958},"target_publication_title":{"type":"STRING","value":"Growth-pole Strategies in Regional Economic Planning: A Retrospective View"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1999-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:sae:urbstu:v:36:y:1999:i:8:p:1247-1268\",\"titles\":[\"Growth-pole Strategies in Regional Economic Planning: A Retrospective View\"],\"abstracts\":[\"The paper continues from Part 1 which appeared in the previous issue of the journal. The primary concern is with neglected aspects of the growth-pole strategy, particularly as these relate to its implementation. Of importance here are the spatial configuration of the planned poles, the economic activity to be located within these, the spillover effects of a planned pole, and the presence of a pole within an existing urban system. Consideration is also given to the failure, abandonment and non-adoption of the strategy and to the reasons for this. It is argued that growth-pole strategy has never been evaluated in terms of an adequate conceptual framework, and the rudiments of one such framework are outlined.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Parr, John B.\"],\"publicationdate\":\"1999-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Urban Studies\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://usj.sagepub.com/content/36/8/1247.abstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://usj.sagepub.com/content/36/7/1195.abstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://usj.sagepub.com/content/36/7/1195.abstract\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://usj.sagepub.com/content/36/7/1195.abstract\",\"id\":\"oai:RePEc:sae:urbstu:v:36:y:1999:i:7:p:1195-1215\"},\"trust\":0.38519502}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:sae:urbstu:v:36:y:1999:i:8:p:1247-1268"},"target_publication_author_list":{"type":"LIST_STRING","value":["Parr, John B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:sae:urbstu:v:36:y:1999:i:7:p:1195-1215"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.38519502},"target_publication_title":{"type":"STRING","value":"Growth-pole Strategies in Regional Economic Planning: A Retrospective View"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1999-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cbu:jrnlec:y:2011:v:1:p:157-166\",\"titles\":[\"The Fiscal Pressure in the EU Member States\"],\"abstracts\":[\"The development of an economy is determined in a significant proportion by the tax system structure, by how it exercises its functions and ensures the collection of state resources. A high tax efficiency, due to the acceptability of tax provisions are the ideal conditions of any tax system. In this context, it is obvious that most tax systems have undergone significant changes under the impact of the action of a complex system of factors. Increased need for resources in various countries was reflected in attempts to identify the relationship that allows both the securing of the necessary funds and their economic and social development. The quantification of the fiscal pressure on the EU member states show a wide range of tax rates. This paper makes a comparative analysis of the degree of taxation in the EU member states.\"],\"language\":\"und\",\"subjects\":[\"fiscal pressure, direct taxes, indirect taxes\"],\"creators\":[\"DOBROTĂ GABRIELA\",\"CHIRCULESCU MARIA FELICIA\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Constatin Brancusi University of Targu Jiu Annals - Economy Series\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.utgjiu.ro/revista/ec/pdf/2011-01/13_GABRIELA_DOBROTA.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.utgjiu.ro/revista/ec/pdf/2011-01/13_GABRIELA_DOBROTA.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Analele Universităţii Constantin Brâncuşi din Târgu Jiu : Seria Economie\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.utgjiu.ro/revista/ec/pdf/2011-01/13_GABRIELA_DOBROTA.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Analele Universităţii Constantin Brâncuşi din Târgu Jiu : Seria Economie\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.utgjiu.ro/revista/ec/pdf/2011-01/13_GABRIELA_DOBROTA.pdf\",\"id\":\"oai:doaj.org/article:0d49dfc1375a4abea0e55fe9361ec35c\"},\"trust\":0.20398521}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cbu:jrnlec:y:2011:v:1:p:157-166"},"target_publication_author_list":{"type":"LIST_STRING","value":["DOBROTĂ GABRIELA","CHIRCULESCU MARIA FELICIA"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:0d49dfc1375a4abea0e55fe9361ec35c"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["fiscal pressure, direct taxes, indirect taxes"]},"trust":{"type":"FLOAT","value":0.20398521},"target_publication_title":{"type":"STRING","value":"The Fiscal Pressure in the EU Member States"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:66bf5b08-2682-4d86-b810-e8c88f9e58e1\",\"titles\":[\"Targeted rehabilitation to improve outcome after total knee replacement (TRIO): study protocol for a randomised controlled trial.\"],\"abstracts\":[\"BACKGROUND: Approximately 20% of patients are not satisfied with the outcome of total knee replacement, great volumes of which are carried out yearly. Physiotherapy is often provided by the NHS to address dysfunction following knee replacement; however the efficacy of this is unknown. Although clinically it is accepted that therapy is useful, provision of physiotherapy to all patients post-operatively does not enhance outcomes at one year. No study has previously assessed the effect of targeting therapy to individuals struggling to recover in the early post-operative phase.The aim of the TRIO study is to determine whether stratifying care by targeting physiotherapy to those individuals performing poorly following knee replacement is effective in improving the one year outcomes. We are also investigating whether the structure of the physiotherapy provision itself influences outcomes. METHODS/DESIGN: The study is a multi-centre prospective randomised controlled trial (RCT) of patients undergoing primary total knee replacement, with treatment targeted at those deemed most susceptible to gain from it. Use of the national PROMS programme for pre-operative data collection allows us to screen all patients at initial post-operative clinical review, and recruit only those deemed to be recovering slowly.We aim to recruit 440 patients through various NHS orthopaedic centres who will undergo six weeks of physiotherapy. The intervention will be either \\u0027intensive\\u0027 involving both hospital and home-based functional exercise rehabilitation, or \\u0027standard of care\\u0027 consisting of home exercises. Patients will be randomised to either group using a web-based system. Both groups will receive pre and post-intervention physiotherapy review. Patients will be followed-up to one year post-operation. The primary outcome measure is the Oxford Knee Score. Secondary outcomes are patient satisfaction, functional ability, pain scores and cost-effectiveness. TRIAL REGISTRATION: Current Controlled Trials ISRCTN23357609. ClinicalTrials.gov NCT01849445.\"],\"language\":\"eng\",\"subjects\":[\"Humans\",\"Knee Joint\",\"Pain Measurement\",\"Treatment Outcome\",\"Clinical Protocols\",\"Arthroplasty, Replacement, Knee\",\"Questionnaires\",\"Prospective Studies\",\"Cost-Benefit Analysis\",\"Health Care Costs\",\"Physical Therapy Modalities\",\"Patient Satisfaction\",\"Research Design\",\"Patient Selection\",\"Time Factors\",\"Recovery of Function\",\"Disability Evaluation\",\"Biomechanical Phenomena\",\"Great Britain\"],\"creators\":[\"Simpson, Ah\",\"Hamilton, Df\",\"Beard, Dj\",\"Barker, Kl\",\"Wilton, T.\",\"Hutchison, Jd\",\"Tuck, C.\",\"Stoddard, A.\",\"Macfarlane, Gj\",\"Murray, Gd\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1186/1745-6215-15-44\",\"type\":\"doi\"},{\"value\":\"PMC3911957\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:66bf5b08-2682-4d86-b810-e8c88f9e58e1\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3911957\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3911957\",\"id\":\"oai:europepmc.org:2897740\"},\"trust\":0.41418308}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:66bf5b08-2682-4d86-b810-e8c88f9e58e1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Simpson, Ah","Hamilton, Df","Beard, Dj","Barker, Kl","Wilton, T.","Hutchison, Jd","Tuck, C.","Stoddard, A.","Macfarlane, Gj","Murray, Gd"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2897740"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Humans","Knee Joint","Pain Measurement","Treatment Outcome","Clinical Protocols","Arthroplasty, Replacement, Knee","Questionnaires","Prospective Studies","Cost-Benefit Analysis","Health Care Costs","Physical Therapy Modalities","Patient Satisfaction","Research Design","Patient Selection","Time Factors","Recovery of Function","Disability Evaluation","Biomechanical Phenomena","Great Britain"]},"trust":{"type":"FLOAT","value":0.41418308},"target_publication_title":{"type":"STRING","value":"Targeted rehabilitation to improve outcome after total knee replacement (TRIO): study protocol for a randomised controlled trial."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:66bf5b08-2682-4d86-b810-e8c88f9e58e1\",\"titles\":[\"Targeted rehabilitation to improve outcome after total knee replacement (TRIO): study protocol for a randomised controlled trial.\"],\"abstracts\":[\"BACKGROUND: Approximately 20% of patients are not satisfied with the outcome of total knee replacement, great volumes of which are carried out yearly. Physiotherapy is often provided by the NHS to address dysfunction following knee replacement; however the efficacy of this is unknown. Although clinically it is accepted that therapy is useful, provision of physiotherapy to all patients post-operatively does not enhance outcomes at one year. No study has previously assessed the effect of targeting therapy to individuals struggling to recover in the early post-operative phase.The aim of the TRIO study is to determine whether stratifying care by targeting physiotherapy to those individuals performing poorly following knee replacement is effective in improving the one year outcomes. We are also investigating whether the structure of the physiotherapy provision itself influences outcomes. METHODS/DESIGN: The study is a multi-centre prospective randomised controlled trial (RCT) of patients undergoing primary total knee replacement, with treatment targeted at those deemed most susceptible to gain from it. Use of the national PROMS programme for pre-operative data collection allows us to screen all patients at initial post-operative clinical review, and recruit only those deemed to be recovering slowly.We aim to recruit 440 patients through various NHS orthopaedic centres who will undergo six weeks of physiotherapy. The intervention will be either \\u0027intensive\\u0027 involving both hospital and home-based functional exercise rehabilitation, or \\u0027standard of care\\u0027 consisting of home exercises. Patients will be randomised to either group using a web-based system. Both groups will receive pre and post-intervention physiotherapy review. Patients will be followed-up to one year post-operation. The primary outcome measure is the Oxford Knee Score. Secondary outcomes are patient satisfaction, functional ability, pain scores and cost-effectiveness. TRIAL REGISTRATION: Current Controlled Trials ISRCTN23357609. ClinicalTrials.gov NCT01849445.\"],\"language\":\"eng\",\"subjects\":[\"Humans\",\"Knee Joint\",\"Pain Measurement\",\"Treatment Outcome\",\"Clinical Protocols\",\"Arthroplasty, Replacement, Knee\",\"Questionnaires\",\"Prospective Studies\",\"Cost-Benefit Analysis\",\"Health Care Costs\",\"Physical Therapy Modalities\",\"Patient Satisfaction\",\"Research Design\",\"Patient Selection\",\"Time Factors\",\"Recovery of Function\",\"Disability Evaluation\",\"Biomechanical Phenomena\",\"Great Britain\"],\"creators\":[\"Simpson, Ah\",\"Hamilton, Df\",\"Beard, Dj\",\"Barker, Kl\",\"Wilton, T.\",\"Hutchison, Jd\",\"Tuck, C.\",\"Stoddard, A.\",\"Macfarlane, Gj\",\"Murray, Gd\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1186/1745-6215-15-44\",\"type\":\"doi\"},{\"value\":\"24484541\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:66bf5b08-2682-4d86-b810-e8c88f9e58e1\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"24484541\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3911957\",\"id\":\"oai:europepmc.org:2897740\"},\"trust\":0.41418308}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:66bf5b08-2682-4d86-b810-e8c88f9e58e1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Simpson, Ah","Hamilton, Df","Beard, Dj","Barker, Kl","Wilton, T.","Hutchison, Jd","Tuck, C.","Stoddard, A.","Macfarlane, Gj","Murray, Gd"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2897740"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Humans","Knee Joint","Pain Measurement","Treatment Outcome","Clinical Protocols","Arthroplasty, Replacement, Knee","Questionnaires","Prospective Studies","Cost-Benefit Analysis","Health Care Costs","Physical Therapy Modalities","Patient Satisfaction","Research Design","Patient Selection","Time Factors","Recovery of Function","Disability Evaluation","Biomechanical Phenomena","Great Britain"]},"trust":{"type":"FLOAT","value":0.41418308},"target_publication_title":{"type":"STRING","value":"Targeted rehabilitation to improve outcome after total knee replacement (TRIO): study protocol for a randomised controlled trial."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:inserm-00391007v1\",\"titles\":[\"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas.\"],\"abstracts\":[\"International audience\",\"OBJECTIVE: Scintigraphy with a radiolabeled somatostatin analog ((111)In-diethylenetriaminepenta-acetic acid octreotide) detects the somatostatin receptors that are found in vitro in all meningiomas. Previous studies have proved the benefit of radioimmunoguided surgery, with a hand-held gamma probe, for the assessment and removal of neuroendocrine tumors. We conducted a study to determine whether intraoperative radiodetection of somatostatin receptors is feasible and could increase the probability of complete meningioma resection, especially for bone-invasive en plaque meningiomas, which are difficult to control surgically. METHODS: Eighteen patients with en plaque sphenoid wing and cranial convexity meningiomas were studied by preoperative and postoperative somatostatin receptor scintigraphy. In 10 of them, intraoperative radiodetection with a hand-held gamma probe was performed 24 hours after the intravenous administration of (111)In-diethylenetriaminepenta-acetic acid octreotide. This procedure was combined with a computer-aided navigation system. RESULTS: All preoperative scintigrams were positive. Intraoperative gamma probe detection was achieved for the invaded bone, dura, and periorbit of sphenoid wing meningiomas. The average tumor/nontumor count ratio was 2:1, with a maximum of 12:1, thus allowing precise detection capable of defining the tumor margins. In three cases of sphenoid wing meningiomas, postoperative scintigrams were helpful for the determination of recurrences that magnetic resonance imaging failed to detect. CONCLUSION: These preliminary data show that intraoperative radiodetection of somatostatin receptors with a hand-held gamma probe is feasible and may be helpful to guide the surgical removal of bone-invasive en plaque meningiomas. Preoperative and postoperative scintigraphy may be useful for the management and follow-up of patients with these tumors.\"],\"language\":\"eng\",\"subjects\":[\"bone invasion\",\"intraoperative radiodetection\",\"meningiomas\",\"somatostatin receptor scintigraphy\",\"[SDV.MHEP.CHI] Life Sciences/Human health and pathology/Surgery\"],\"creators\":[\"Gay, Emmanuel\",\"Vuillez, Jean Philippe\",\"Palombi, Olivier\",\"Brard, Pierre Yves\",\"Bessou, Pierre\",\"Passagia, Jean Guy\"],\"publicationdate\":\"2005-07-01\",\"publisher\":\"Lippincott, Williams \\u0026 Wilkins\",\"embargoenddate\":\"\",\"contributor\":[\"Département de neurochirurgie ; CHU Grenoble - Université Joseph Fourier - Grenoble I\",\"Service de médecine nucléaire et biophysique ; CHU Grenoble - Hôpital Michallon\",\"Département de neuro-radiologie ; CHU Grenoble - Université Joseph Fourier - Grenoble I\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"PMC2756774\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2756774\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2756774\",\"id\":\"oai:europepmc.org:2539571\"},\"trust\":0.98138773}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:inserm-00391007v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gay, Emmanuel","Vuillez, Jean Philippe","Palombi, Olivier","Brard, Pierre Yves","Bessou, Pierre","Passagia, Jean Guy"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2539571"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["bone invasion","intraoperative radiodetection","meningiomas","somatostatin receptor scintigraphy","[SDV.MHEP.CHI] Life Sciences/Human health and pathology/Surgery"]},"trust":{"type":"FLOAT","value":0.98138773},"target_publication_title":{"type":"STRING","value":"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2005-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:inserm-00391007v1\",\"titles\":[\"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas.\"],\"abstracts\":[\"International audience\",\"OBJECTIVE: Scintigraphy with a radiolabeled somatostatin analog ((111)In-diethylenetriaminepenta-acetic acid octreotide) detects the somatostatin receptors that are found in vitro in all meningiomas. Previous studies have proved the benefit of radioimmunoguided surgery, with a hand-held gamma probe, for the assessment and removal of neuroendocrine tumors. We conducted a study to determine whether intraoperative radiodetection of somatostatin receptors is feasible and could increase the probability of complete meningioma resection, especially for bone-invasive en plaque meningiomas, which are difficult to control surgically. METHODS: Eighteen patients with en plaque sphenoid wing and cranial convexity meningiomas were studied by preoperative and postoperative somatostatin receptor scintigraphy. In 10 of them, intraoperative radiodetection with a hand-held gamma probe was performed 24 hours after the intravenous administration of (111)In-diethylenetriaminepenta-acetic acid octreotide. This procedure was combined with a computer-aided navigation system. RESULTS: All preoperative scintigrams were positive. Intraoperative gamma probe detection was achieved for the invaded bone, dura, and periorbit of sphenoid wing meningiomas. The average tumor/nontumor count ratio was 2:1, with a maximum of 12:1, thus allowing precise detection capable of defining the tumor margins. In three cases of sphenoid wing meningiomas, postoperative scintigrams were helpful for the determination of recurrences that magnetic resonance imaging failed to detect. CONCLUSION: These preliminary data show that intraoperative radiodetection of somatostatin receptors with a hand-held gamma probe is feasible and may be helpful to guide the surgical removal of bone-invasive en plaque meningiomas. Preoperative and postoperative scintigraphy may be useful for the management and follow-up of patients with these tumors.\"],\"language\":\"eng\",\"subjects\":[\"bone invasion\",\"intraoperative radiodetection\",\"meningiomas\",\"somatostatin receptor scintigraphy\",\"[SDV.MHEP.CHI] Life Sciences/Human health and pathology/Surgery\"],\"creators\":[\"Gay, Emmanuel\",\"Vuillez, Jean Philippe\",\"Palombi, Olivier\",\"Brard, Pierre Yves\",\"Bessou, Pierre\",\"Passagia, Jean Guy\"],\"publicationdate\":\"2005-07-01\",\"publisher\":\"Lippincott, Williams \\u0026 Wilkins\",\"embargoenddate\":\"\",\"contributor\":[\"Département de neurochirurgie ; CHU Grenoble - Université Joseph Fourier - Grenoble I\",\"Service de médecine nucléaire et biophysique ; CHU Grenoble - Hôpital Michallon\",\"Département de neuro-radiologie ; CHU Grenoble - Université Joseph Fourier - Grenoble I\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"PMC2756774\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2756774\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2756774\",\"id\":\"oai:europepmc.org:2539571\"},\"trust\":0.98138773}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:inserm-00391007v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gay, Emmanuel","Vuillez, Jean Philippe","Palombi, Olivier","Brard, Pierre Yves","Bessou, Pierre","Passagia, Jean Guy"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2539571"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["bone invasion","intraoperative radiodetection","meningiomas","somatostatin receptor scintigraphy","[SDV.MHEP.CHI] Life Sciences/Human health and pathology/Surgery"]},"trust":{"type":"FLOAT","value":0.98138773},"target_publication_title":{"type":"STRING","value":"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2005-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:inserm-00391007v1\",\"titles\":[\"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas.\"],\"abstracts\":[\"International audience\",\"OBJECTIVE: Scintigraphy with a radiolabeled somatostatin analog ((111)In-diethylenetriaminepenta-acetic acid octreotide) detects the somatostatin receptors that are found in vitro in all meningiomas. Previous studies have proved the benefit of radioimmunoguided surgery, with a hand-held gamma probe, for the assessment and removal of neuroendocrine tumors. We conducted a study to determine whether intraoperative radiodetection of somatostatin receptors is feasible and could increase the probability of complete meningioma resection, especially for bone-invasive en plaque meningiomas, which are difficult to control surgically. METHODS: Eighteen patients with en plaque sphenoid wing and cranial convexity meningiomas were studied by preoperative and postoperative somatostatin receptor scintigraphy. In 10 of them, intraoperative radiodetection with a hand-held gamma probe was performed 24 hours after the intravenous administration of (111)In-diethylenetriaminepenta-acetic acid octreotide. This procedure was combined with a computer-aided navigation system. RESULTS: All preoperative scintigrams were positive. Intraoperative gamma probe detection was achieved for the invaded bone, dura, and periorbit of sphenoid wing meningiomas. The average tumor/nontumor count ratio was 2:1, with a maximum of 12:1, thus allowing precise detection capable of defining the tumor margins. In three cases of sphenoid wing meningiomas, postoperative scintigrams were helpful for the determination of recurrences that magnetic resonance imaging failed to detect. CONCLUSION: These preliminary data show that intraoperative radiodetection of somatostatin receptors with a hand-held gamma probe is feasible and may be helpful to guide the surgical removal of bone-invasive en plaque meningiomas. Preoperative and postoperative scintigraphy may be useful for the management and follow-up of patients with these tumors.\"],\"language\":\"eng\",\"subjects\":[\"bone invasion\",\"intraoperative radiodetection\",\"meningiomas\",\"somatostatin receptor scintigraphy\",\"[SDV.MHEP.CHI] Life Sciences/Human health and pathology/Surgery\"],\"creators\":[\"Gay, Emmanuel\",\"Vuillez, Jean Philippe\",\"Palombi, Olivier\",\"Brard, Pierre Yves\",\"Bessou, Pierre\",\"Passagia, Jean Guy\"],\"publicationdate\":\"2005-07-01\",\"publisher\":\"Lippincott, Williams \\u0026 Wilkins\",\"embargoenddate\":\"\",\"contributor\":[\"Département de neurochirurgie ; CHU Grenoble - Université Joseph Fourier - Grenoble I\",\"Service de médecine nucléaire et biophysique ; CHU Grenoble - Hôpital Michallon\",\"Département de neuro-radiologie ; CHU Grenoble - Université Joseph Fourier - Grenoble I\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"id\":\"oai:www.hal.inserm.fr:inserm-00391007\"},\"trust\":0.8433845}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:inserm-00391007v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gay, Emmanuel","Vuillez, Jean Philippe","Palombi, Olivier","Brard, Pierre Yves","Bessou, Pierre","Passagia, Jean Guy"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.hal.inserm.fr:inserm-00391007"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["bone invasion","intraoperative radiodetection","meningiomas","somatostatin receptor scintigraphy","[SDV.MHEP.CHI] Life Sciences/Human health and pathology/Surgery"]},"trust":{"type":"FLOAT","value":0.8433845},"target_publication_title":{"type":"STRING","value":"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2539571\",\"titles\":[\"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas\"],\"abstracts\":[\"\"],\"language\":\"eng\",\"subjects\":[\"Article\"],\"creators\":[\"Gay, Emmanuel\",\"Vuillez, Jean Philippe\",\"Palombi, Olivier\",\"Brard, Pierre Yves\",\"Bessou, Pierre\",\"Passagia, Jean Guy\"],\"publicationdate\":\"2005-07-01\",\"publisher\":\"Lippincott Williams \\u0026 Wilkins\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC2756774\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2756774\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"id\":\"oai:HAL:inserm-00391007v1\"},\"trust\":0.349279}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2539571"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gay, Emmanuel","Vuillez, Jean Philippe","Palombi, Olivier","Brard, Pierre Yves","Bessou, Pierre","Passagia, Jean Guy"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:inserm-00391007v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article"]},"trust":{"type":"FLOAT","value":0.349279},"target_publication_title":{"type":"STRING","value":"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2539571\",\"titles\":[\"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas\"],\"abstracts\":[\"\",\"International audience\",\"OBJECTIVE: Scintigraphy with a radiolabeled somatostatin analog ((111)In-diethylenetriaminepenta-acetic acid octreotide) detects the somatostatin receptors that are found in vitro in all meningiomas. Previous studies have proved the benefit of radioimmunoguided surgery, with a hand-held gamma probe, for the assessment and removal of neuroendocrine tumors. We conducted a study to determine whether intraoperative radiodetection of somatostatin receptors is feasible and could increase the probability of complete meningioma resection, especially for bone-invasive en plaque meningiomas, which are difficult to control surgically. METHODS: Eighteen patients with en plaque sphenoid wing and cranial convexity meningiomas were studied by preoperative and postoperative somatostatin receptor scintigraphy. In 10 of them, intraoperative radiodetection with a hand-held gamma probe was performed 24 hours after the intravenous administration of (111)In-diethylenetriaminepenta-acetic acid octreotide. This procedure was combined with a computer-aided navigation system. RESULTS: All preoperative scintigrams were positive. Intraoperative gamma probe detection was achieved for the invaded bone, dura, and periorbit of sphenoid wing meningiomas. The average tumor/nontumor count ratio was 2:1, with a maximum of 12:1, thus allowing precise detection capable of defining the tumor margins. In three cases of sphenoid wing meningiomas, postoperative scintigrams were helpful for the determination of recurrences that magnetic resonance imaging failed to detect. CONCLUSION: These preliminary data show that intraoperative radiodetection of somatostatin receptors with a hand-held gamma probe is feasible and may be helpful to guide the surgical removal of bone-invasive en plaque meningiomas. Preoperative and postoperative scintigraphy may be useful for the management and follow-up of patients with these tumors.\"],\"language\":\"eng\",\"subjects\":[\"Article\"],\"creators\":[\"Gay, Emmanuel\",\"Vuillez, Jean Philippe\",\"Palombi, Olivier\",\"Brard, Pierre Yves\",\"Bessou, Pierre\",\"Passagia, Jean Guy\"],\"publicationdate\":\"2005-07-01\",\"publisher\":\"Lippincott Williams \\u0026 Wilkins\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC2756774\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2756774\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"International audience\",\"OBJECTIVE: Scintigraphy with a radiolabeled somatostatin analog ((111)In-diethylenetriaminepenta-acetic acid octreotide) detects the somatostatin receptors that are found in vitro in all meningiomas. Previous studies have proved the benefit of radioimmunoguided surgery, with a hand-held gamma probe, for the assessment and removal of neuroendocrine tumors. We conducted a study to determine whether intraoperative radiodetection of somatostatin receptors is feasible and could increase the probability of complete meningioma resection, especially for bone-invasive en plaque meningiomas, which are difficult to control surgically. METHODS: Eighteen patients with en plaque sphenoid wing and cranial convexity meningiomas were studied by preoperative and postoperative somatostatin receptor scintigraphy. In 10 of them, intraoperative radiodetection with a hand-held gamma probe was performed 24 hours after the intravenous administration of (111)In-diethylenetriaminepenta-acetic acid octreotide. This procedure was combined with a computer-aided navigation system. RESULTS: All preoperative scintigrams were positive. Intraoperative gamma probe detection was achieved for the invaded bone, dura, and periorbit of sphenoid wing meningiomas. The average tumor/nontumor count ratio was 2:1, with a maximum of 12:1, thus allowing precise detection capable of defining the tumor margins. In three cases of sphenoid wing meningiomas, postoperative scintigrams were helpful for the determination of recurrences that magnetic resonance imaging failed to detect. CONCLUSION: These preliminary data show that intraoperative radiodetection of somatostatin receptors with a hand-held gamma probe is feasible and may be helpful to guide the surgical removal of bone-invasive en plaque meningiomas. Preoperative and postoperative scintigraphy may be useful for the management and follow-up of patients with these tumors.\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"id\":\"oai:HAL:inserm-00391007v1\"},\"trust\":0.0754807}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2539571"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gay, Emmanuel","Vuillez, Jean Philippe","Palombi, Olivier","Brard, Pierre Yves","Bessou, Pierre","Passagia, Jean Guy"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:inserm-00391007v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article"]},"trust":{"type":"FLOAT","value":0.0754807},"target_publication_title":{"type":"STRING","value":"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2539571\",\"titles\":[\"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas\"],\"abstracts\":[\"\"],\"language\":\"eng\",\"subjects\":[\"Article\"],\"creators\":[\"Gay, Emmanuel\",\"Vuillez, Jean Philippe\",\"Palombi, Olivier\",\"Brard, Pierre Yves\",\"Bessou, Pierre\",\"Passagia, Jean Guy\"],\"publicationdate\":\"2005-07-01\",\"publisher\":\"Lippincott Williams \\u0026 Wilkins\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC2756774\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2756774\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"id\":\"oai:www.hal.inserm.fr:inserm-00391007\"},\"trust\":0.5159762}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2539571"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gay, Emmanuel","Vuillez, Jean Philippe","Palombi, Olivier","Brard, Pierre Yves","Bessou, Pierre","Passagia, Jean Guy"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.hal.inserm.fr:inserm-00391007"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article"]},"trust":{"type":"FLOAT","value":0.5159762},"target_publication_title":{"type":"STRING","value":"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2539571\",\"titles\":[\"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas\"],\"abstracts\":[\"\",\"OBJECTIVE: Scintigraphy with a radiolabeled somatostatin analog ((111)In-diethylenetriaminepenta-acetic acid octreotide) detects the somatostatin receptors that are found in vitro in all meningiomas. Previous studies have proved the benefit of radioimmunoguided surgery, with a hand-held gamma probe, for the assessment and removal of neuroendocrine tumors. We conducted a study to determine whether intraoperative radiodetection of somatostatin receptors is feasible and could increase the probability of complete meningioma resection, especially for bone-invasive en plaque meningiomas, which are difficult to control surgically. METHODS: Eighteen patients with en plaque sphenoid wing and cranial convexity meningiomas were studied by preoperative and postoperative somatostatin receptor scintigraphy. In 10 of them, intraoperative radiodetection with a hand-held gamma probe was performed 24 hours after the intravenous administration of (111)In-diethylenetriaminepenta-acetic acid octreotide. This procedure was combined with a computer-aided navigation system. RESULTS: All preoperative scintigrams were positive. Intraoperative gamma probe detection was achieved for the invaded bone, dura, and periorbit of sphenoid wing meningiomas. The average tumor/nontumor count ratio was 2:1, with a maximum of 12:1, thus allowing precise detection capable of defining the tumor margins. In three cases of sphenoid wing meningiomas, postoperative scintigrams were helpful for the determination of recurrences that magnetic resonance imaging failed to detect. CONCLUSION: These preliminary data show that intraoperative radiodetection of somatostatin receptors with a hand-held gamma probe is feasible and may be helpful to guide the surgical removal of bone-invasive en plaque meningiomas. Preoperative and postoperative scintigraphy may be useful for the management and follow-up of patients with these tumors.\"],\"language\":\"eng\",\"subjects\":[\"Article\"],\"creators\":[\"Gay, Emmanuel\",\"Vuillez, Jean Philippe\",\"Palombi, Olivier\",\"Brard, Pierre Yves\",\"Bessou, Pierre\",\"Passagia, Jean Guy\"],\"publicationdate\":\"2005-07-01\",\"publisher\":\"Lippincott Williams \\u0026 Wilkins\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC2756774\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2756774\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"OBJECTIVE: Scintigraphy with a radiolabeled somatostatin analog ((111)In-diethylenetriaminepenta-acetic acid octreotide) detects the somatostatin receptors that are found in vitro in all meningiomas. Previous studies have proved the benefit of radioimmunoguided surgery, with a hand-held gamma probe, for the assessment and removal of neuroendocrine tumors. We conducted a study to determine whether intraoperative radiodetection of somatostatin receptors is feasible and could increase the probability of complete meningioma resection, especially for bone-invasive en plaque meningiomas, which are difficult to control surgically. METHODS: Eighteen patients with en plaque sphenoid wing and cranial convexity meningiomas were studied by preoperative and postoperative somatostatin receptor scintigraphy. In 10 of them, intraoperative radiodetection with a hand-held gamma probe was performed 24 hours after the intravenous administration of (111)In-diethylenetriaminepenta-acetic acid octreotide. This procedure was combined with a computer-aided navigation system. RESULTS: All preoperative scintigrams were positive. Intraoperative gamma probe detection was achieved for the invaded bone, dura, and periorbit of sphenoid wing meningiomas. The average tumor/nontumor count ratio was 2:1, with a maximum of 12:1, thus allowing precise detection capable of defining the tumor margins. In three cases of sphenoid wing meningiomas, postoperative scintigrams were helpful for the determination of recurrences that magnetic resonance imaging failed to detect. CONCLUSION: These preliminary data show that intraoperative radiodetection of somatostatin receptors with a hand-held gamma probe is feasible and may be helpful to guide the surgical removal of bone-invasive en plaque meningiomas. Preoperative and postoperative scintigraphy may be useful for the management and follow-up of patients with these tumors.\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"id\":\"oai:www.hal.inserm.fr:inserm-00391007\"},\"trust\":0.41379434}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2539571"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gay, Emmanuel","Vuillez, Jean Philippe","Palombi, Olivier","Brard, Pierre Yves","Bessou, Pierre","Passagia, Jean Guy"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.hal.inserm.fr:inserm-00391007"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article"]},"trust":{"type":"FLOAT","value":0.41379434},"target_publication_title":{"type":"STRING","value":"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.hal.inserm.fr:inserm-00391007\",\"titles\":[\"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas.\"],\"abstracts\":[\"OBJECTIVE: Scintigraphy with a radiolabeled somatostatin analog ((111)In-diethylenetriaminepenta-acetic acid octreotide) detects the somatostatin receptors that are found in vitro in all meningiomas. Previous studies have proved the benefit of radioimmunoguided surgery, with a hand-held gamma probe, for the assessment and removal of neuroendocrine tumors. We conducted a study to determine whether intraoperative radiodetection of somatostatin receptors is feasible and could increase the probability of complete meningioma resection, especially for bone-invasive en plaque meningiomas, which are difficult to control surgically. METHODS: Eighteen patients with en plaque sphenoid wing and cranial convexity meningiomas were studied by preoperative and postoperative somatostatin receptor scintigraphy. In 10 of them, intraoperative radiodetection with a hand-held gamma probe was performed 24 hours after the intravenous administration of (111)In-diethylenetriaminepenta-acetic acid octreotide. This procedure was combined with a computer-aided navigation system. RESULTS: All preoperative scintigrams were positive. Intraoperative gamma probe detection was achieved for the invaded bone, dura, and periorbit of sphenoid wing meningiomas. The average tumor/nontumor count ratio was 2:1, with a maximum of 12:1, thus allowing precise detection capable of defining the tumor margins. In three cases of sphenoid wing meningiomas, postoperative scintigrams were helpful for the determination of recurrences that magnetic resonance imaging failed to detect. CONCLUSION: These preliminary data show that intraoperative radiodetection of somatostatin receptors with a hand-held gamma probe is feasible and may be helpful to guide the surgical removal of bone-invasive en plaque meningiomas. Preoperative and postoperative scintigraphy may be useful for the management and follow-up of patients with these tumors.\"],\"language\":\"eng\",\"subjects\":[\"[SDV:MHEP:CHI] Life Sciences/Human health and pathology/Surgery\",\"[SDV:MHEP:CHI] Sciences du Vivant/Médecine humaine et pathologie/Chirurgie\",\"bone invasion\",\"intraoperative radiodetection\",\"meningiomas\",\"somatostatin receptor scintigraphy\"],\"creators\":[\"Gay, Emmanuel\",\"Vuillez, Jean Philippe\",\"Palombi, Olivier\",\"Brard, Pierre Yves\",\"Bessou, Pierre\",\"Passagia, Jean Guy\"],\"publicationdate\":\"2005-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"id\":\"oai:HAL:inserm-00391007v1\"},\"trust\":0.13388205}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:www.hal.inserm.fr:inserm-00391007"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gay, Emmanuel","Vuillez, Jean Philippe","Palombi, Olivier","Brard, Pierre Yves","Bessou, Pierre","Passagia, Jean Guy"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:inserm-00391007v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:MHEP:CHI] Life Sciences/Human health and pathology/Surgery","[SDV:MHEP:CHI] Sciences du Vivant/Médecine humaine et pathologie/Chirurgie","bone invasion","intraoperative radiodetection","meningiomas","somatostatin receptor scintigraphy"]},"trust":{"type":"FLOAT","value":0.13388205},"target_publication_title":{"type":"STRING","value":"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:www.hal.inserm.fr:inserm-00391007\",\"titles\":[\"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas.\"],\"abstracts\":[\"OBJECTIVE: Scintigraphy with a radiolabeled somatostatin analog ((111)In-diethylenetriaminepenta-acetic acid octreotide) detects the somatostatin receptors that are found in vitro in all meningiomas. Previous studies have proved the benefit of radioimmunoguided surgery, with a hand-held gamma probe, for the assessment and removal of neuroendocrine tumors. We conducted a study to determine whether intraoperative radiodetection of somatostatin receptors is feasible and could increase the probability of complete meningioma resection, especially for bone-invasive en plaque meningiomas, which are difficult to control surgically. METHODS: Eighteen patients with en plaque sphenoid wing and cranial convexity meningiomas were studied by preoperative and postoperative somatostatin receptor scintigraphy. In 10 of them, intraoperative radiodetection with a hand-held gamma probe was performed 24 hours after the intravenous administration of (111)In-diethylenetriaminepenta-acetic acid octreotide. This procedure was combined with a computer-aided navigation system. RESULTS: All preoperative scintigrams were positive. Intraoperative gamma probe detection was achieved for the invaded bone, dura, and periorbit of sphenoid wing meningiomas. The average tumor/nontumor count ratio was 2:1, with a maximum of 12:1, thus allowing precise detection capable of defining the tumor margins. In three cases of sphenoid wing meningiomas, postoperative scintigrams were helpful for the determination of recurrences that magnetic resonance imaging failed to detect. CONCLUSION: These preliminary data show that intraoperative radiodetection of somatostatin receptors with a hand-held gamma probe is feasible and may be helpful to guide the surgical removal of bone-invasive en plaque meningiomas. Preoperative and postoperative scintigraphy may be useful for the management and follow-up of patients with these tumors.\"],\"language\":\"eng\",\"subjects\":[\"[SDV:MHEP:CHI] Life Sciences/Human health and pathology/Surgery\",\"[SDV:MHEP:CHI] Sciences du Vivant/Médecine humaine et pathologie/Chirurgie\",\"bone invasion\",\"intraoperative radiodetection\",\"meningiomas\",\"somatostatin receptor scintigraphy\"],\"creators\":[\"Gay, Emmanuel\",\"Vuillez, Jean Philippe\",\"Palombi, Olivier\",\"Brard, Pierre Yves\",\"Bessou, Pierre\",\"Passagia, Jean Guy\"],\"publicationdate\":\"2005-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"PMC2756774\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2756774\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2756774\",\"id\":\"oai:europepmc.org:2539571\"},\"trust\":0.3872853}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:www.hal.inserm.fr:inserm-00391007"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gay, Emmanuel","Vuillez, Jean Philippe","Palombi, Olivier","Brard, Pierre Yves","Bessou, Pierre","Passagia, Jean Guy"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2539571"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:MHEP:CHI] Life Sciences/Human health and pathology/Surgery","[SDV:MHEP:CHI] Sciences du Vivant/Médecine humaine et pathologie/Chirurgie","bone invasion","intraoperative radiodetection","meningiomas","somatostatin receptor scintigraphy"]},"trust":{"type":"FLOAT","value":0.3872853},"target_publication_title":{"type":"STRING","value":"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2005-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:www.hal.inserm.fr:inserm-00391007\",\"titles\":[\"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas.\"],\"abstracts\":[\"OBJECTIVE: Scintigraphy with a radiolabeled somatostatin analog ((111)In-diethylenetriaminepenta-acetic acid octreotide) detects the somatostatin receptors that are found in vitro in all meningiomas. Previous studies have proved the benefit of radioimmunoguided surgery, with a hand-held gamma probe, for the assessment and removal of neuroendocrine tumors. We conducted a study to determine whether intraoperative radiodetection of somatostatin receptors is feasible and could increase the probability of complete meningioma resection, especially for bone-invasive en plaque meningiomas, which are difficult to control surgically. METHODS: Eighteen patients with en plaque sphenoid wing and cranial convexity meningiomas were studied by preoperative and postoperative somatostatin receptor scintigraphy. In 10 of them, intraoperative radiodetection with a hand-held gamma probe was performed 24 hours after the intravenous administration of (111)In-diethylenetriaminepenta-acetic acid octreotide. This procedure was combined with a computer-aided navigation system. RESULTS: All preoperative scintigrams were positive. Intraoperative gamma probe detection was achieved for the invaded bone, dura, and periorbit of sphenoid wing meningiomas. The average tumor/nontumor count ratio was 2:1, with a maximum of 12:1, thus allowing precise detection capable of defining the tumor margins. In three cases of sphenoid wing meningiomas, postoperative scintigrams were helpful for the determination of recurrences that magnetic resonance imaging failed to detect. CONCLUSION: These preliminary data show that intraoperative radiodetection of somatostatin receptors with a hand-held gamma probe is feasible and may be helpful to guide the surgical removal of bone-invasive en plaque meningiomas. Preoperative and postoperative scintigraphy may be useful for the management and follow-up of patients with these tumors.\"],\"language\":\"eng\",\"subjects\":[\"[SDV:MHEP:CHI] Life Sciences/Human health and pathology/Surgery\",\"[SDV:MHEP:CHI] Sciences du Vivant/Médecine humaine et pathologie/Chirurgie\",\"bone invasion\",\"intraoperative radiodetection\",\"meningiomas\",\"somatostatin receptor scintigraphy\"],\"creators\":[\"Gay, Emmanuel\",\"Vuillez, Jean Philippe\",\"Palombi, Olivier\",\"Brard, Pierre Yves\",\"Bessou, Pierre\",\"Passagia, Jean Guy\"],\"publicationdate\":\"2005-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"PMC2756774\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://www.hal.inserm.fr/inserm-00391007\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2756774\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2756774\",\"id\":\"oai:europepmc.org:2539571\"},\"trust\":0.3872853}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:www.hal.inserm.fr:inserm-00391007"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gay, Emmanuel","Vuillez, Jean Philippe","Palombi, Olivier","Brard, Pierre Yves","Bessou, Pierre","Passagia, Jean Guy"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2539571"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:MHEP:CHI] Life Sciences/Human health and pathology/Surgery","[SDV:MHEP:CHI] Sciences du Vivant/Médecine humaine et pathologie/Chirurgie","bone invasion","intraoperative radiodetection","meningiomas","somatostatin receptor scintigraphy"]},"trust":{"type":"FLOAT","value":0.3872853},"target_publication_title":{"type":"STRING","value":"Intraoperative and postoperative gamma detection of somatostatin receptors in bone-invasive en plaque meningiomas."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2005-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:37cd4d3c-2752-4a68-af45-2d8505f89a1c\",\"titles\":[\"An introduction to C-infinity schemes and C-infinity algebraic geometry\"],\"abstracts\":[\"\\u003cp\\u003eIf X is a smooth manifold then the R-algebra C\\u003csup\\u003e∞\\u003c/sup\\u003e(X) of smooth functions\\nc : X → R is a \\\"C∞-ring\\\". That is, for each smooth function ƒ : R\\u003csup\\u003en\\u003c/sup\\u003e\\n→ R there is an \\u003ci\\u003en\\u003c/i\\u003e-fold operation Φƒ : C\\u003csup\\u003e∞\\u003c/sup\\u003e(X)\\u003csup\\u003en\\u003c/sup\\u003e → C\\u003csup\\u003e∞\\u003c/sup\\u003e(X)\\nacting by Φƒ: (c\\u003csub\\u003e1\\u003c/sub\\u003e,...,c\\u003csub\\u003en\\u003c/sub\\u003e) |→ f(c\\u003csub\\u003e1\\u003c/sub\\u003e,...,c\\u003csub\\u003en\\u003c/sub\\u003e), and these operations\\nΦƒ satisfy many natural identities. Thus, C\\u003csup\\u003e∞\\u003c/sup\\u003e(X) actually has a far\\nricher structure than the obvious R-algebra structure.\\u003c/p\\u003e\\n\\n \\u003cp\\u003eWe explain a version of algebraic geometry in which rings or algebras are\\nreplaced by C\\u003csup\\u003e∞\\u003c/sup\\u003e-rings. As schemes are the basic objects in algebraic\\ngeometry, the new basic objects are \\\"C\\u003csup\\u003e∞\\u003c/sup\\u003e-schemes\\\", a category of\\ngeometric objects generalizing manifolds, and whose morphisms generalize smooth\\nmaps. We also discuss \\\"C\\u003csup\\u003e∞\\u003c/sup\\u003e-stacks\\\", including Deligne-Mumford C\\u003csup\\u003e∞\\u003c/sup\\u003e-stacks, \\na 2-category of geometric objects generalizing orbifolds. We study\\nquasicoherent and coherent sheaves on C\\u003csup\\u003e∞\\u003c/sup\\u003e-schemes and C-infinity stacks,\\nand orbifold strata of Deligne-Mumford C\\u003csup\\u003e∞\\u003c/sup\\u003e-stacks. This enables us to\\nuse the tools of algebraic geometry in differential geometry, and to describe\\nsingular spaces such as moduli spaces occurring in differential geometric\\nproblems.\\u003c/p\\u003e\"],\"language\":\"und\",\"subjects\":[\"math.DG\",\"math.DG\",\"math.AG\"],\"creators\":[\"Joyce, Dominic\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.4310/SDG.2012.v17.n1.a7\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:37cd4d3c-2752-4a68-af45-2d8505f89a1c\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/1104.4951\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1104.4951\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1104.4951\",\"id\":\"oai:arXiv.org:1104.4951\"},\"trust\":0.782043}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:37cd4d3c-2752-4a68-af45-2d8505f89a1c"},"target_publication_author_list":{"type":"LIST_STRING","value":["Joyce, Dominic"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1104.4951"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["math.DG","math.DG","math.AG"]},"trust":{"type":"FLOAT","value":0.782043},"target_publication_title":{"type":"STRING","value":"An introduction to C-infinity schemes and C-infinity algebraic geometry"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:37cd4d3c-2752-4a68-af45-2d8505f89a1c\",\"titles\":[\"An introduction to C-infinity schemes and C-infinity algebraic geometry\"],\"abstracts\":[\"\\u003cp\\u003eIf X is a smooth manifold then the R-algebra C\\u003csup\\u003e∞\\u003c/sup\\u003e(X) of smooth functions\\nc : X → R is a \\\"C∞-ring\\\". That is, for each smooth function ƒ : R\\u003csup\\u003en\\u003c/sup\\u003e\\n→ R there is an \\u003ci\\u003en\\u003c/i\\u003e-fold operation Φƒ : C\\u003csup\\u003e∞\\u003c/sup\\u003e(X)\\u003csup\\u003en\\u003c/sup\\u003e → C\\u003csup\\u003e∞\\u003c/sup\\u003e(X)\\nacting by Φƒ: (c\\u003csub\\u003e1\\u003c/sub\\u003e,...,c\\u003csub\\u003en\\u003c/sub\\u003e) |→ f(c\\u003csub\\u003e1\\u003c/sub\\u003e,...,c\\u003csub\\u003en\\u003c/sub\\u003e), and these operations\\nΦƒ satisfy many natural identities. Thus, C\\u003csup\\u003e∞\\u003c/sup\\u003e(X) actually has a far\\nricher structure than the obvious R-algebra structure.\\u003c/p\\u003e\\n\\n \\u003cp\\u003eWe explain a version of algebraic geometry in which rings or algebras are\\nreplaced by C\\u003csup\\u003e∞\\u003c/sup\\u003e-rings. As schemes are the basic objects in algebraic\\ngeometry, the new basic objects are \\\"C\\u003csup\\u003e∞\\u003c/sup\\u003e-schemes\\\", a category of\\ngeometric objects generalizing manifolds, and whose morphisms generalize smooth\\nmaps. We also discuss \\\"C\\u003csup\\u003e∞\\u003c/sup\\u003e-stacks\\\", including Deligne-Mumford C\\u003csup\\u003e∞\\u003c/sup\\u003e-stacks, \\na 2-category of geometric objects generalizing orbifolds. We study\\nquasicoherent and coherent sheaves on C\\u003csup\\u003e∞\\u003c/sup\\u003e-schemes and C-infinity stacks,\\nand orbifold strata of Deligne-Mumford C\\u003csup\\u003e∞\\u003c/sup\\u003e-stacks. This enables us to\\nuse the tools of algebraic geometry in differential geometry, and to describe\\nsingular spaces such as moduli spaces occurring in differential geometric\\nproblems.\\u003c/p\\u003e\"],\"language\":\"und\",\"subjects\":[\"math.DG\",\"math.DG\",\"math.AG\"],\"creators\":[\"Joyce, Dominic\"],\"publicationdate\":\"2012-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.4310/SDG.2012.v17.n1.a7\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:37cd4d3c-2752-4a68-af45-2d8505f89a1c\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/1104.4951\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1104.4951\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1104.4951\",\"id\":\"oai:arXiv.org:1104.4951\"},\"trust\":0.782043}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:37cd4d3c-2752-4a68-af45-2d8505f89a1c"},"target_publication_author_list":{"type":"LIST_STRING","value":["Joyce, Dominic"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1104.4951"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["math.DG","math.DG","math.AG"]},"trust":{"type":"FLOAT","value":0.782043},"target_publication_title":{"type":"STRING","value":"An introduction to C-infinity schemes and C-infinity algebraic geometry"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2012-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1104.4951\",\"titles\":[\"An introduction to C-infinity schemes and C-infinity algebraic geometry\"],\"abstracts\":[\" This is a survey of the author\\u0027s paper arXiv:1001.0023 on \\\"Algebraic Geometry\\nover C-infinity rings\\\".\\n If X is a smooth manifold then the R-algebra C^\\\\infty(X) of smooth functions\\nc : X --\\u003e R is a \\\"C-infinity ring\\\". That is, for each smooth function f : R^n\\n--\\u003e R there is an n-fold operation \\\\Phi_f : C^\\\\infty(X)^n --\\u003e C^\\\\infty(X)\\nacting by \\\\Phi_f: (c_1,...,c_n) |--\\u003e f(c_1,...,c_n), and these operations\\n\\\\Phi_f satisfy many natural identities. Thus, C^\\\\infty(X) actually has a far\\nricher structure than the obvious R-algebra structure.\\n We explain a version of algebraic geometry in which rings or algebras are\\nreplaced by C-infinity rings. As schemes are the basic objects in algebraic\\ngeometry, the new basic objects are \\\"C-infinity schemes\\\", a category of\\ngeometric objects generalizing manifolds, and whose morphisms generalize smooth\\nmaps. We also discuss \\\"C-infinity stacks\\\", including Deligne-Mumford C-infinity\\nstacks, a 2-category of geometric objects generalizing orbifolds. We study\\nquasicoherent and coherent sheaves on C-infinity schemes and C-infinity stacks,\\nand orbifold strata of Deligne-Mumford C-infinity stacks. This enables us to\\nuse the tools of algebraic geometry in differential geometry, and to describe\\nsingular spaces such as moduli spaces occurring in differential geometric\\nproblems.\\n Many of these ideas are not new: C-infinity rings and C-infinity schemes have\\nlong been part of synthetic differential geometry. But we develop them in new\\ndirections. In a new book, surveyed in arXiv:1206.4207 and at greater length in\\narXiv:1208.4948, the author uses C-infinity algebraic geometry to develop a\\ntheory of \\\"derived differential geometry\\\", which studies \\\"d-manifolds\\\" and\\n\\\"d-orbifolds\\\", derived versions of smooth manifolds and orbifolds. D-orbifolds\\nwill have applications in symplectic geometry, as the geometric structure on\\nmoduli spaces of J-holomorphic curves.\\n\",\"Comment: (v2) 28 pages. Updated in line with new version of arXiv:1001.0023\"],\"language\":\"eng\",\"subjects\":[\"Mathematics - Differential Geometry\",\"Mathematics - Algebraic Geometry\"],\"creators\":[\"Joyce, Dominic\"],\"publicationdate\":\"2011-04-26\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.4310/SDG.2012.v17.n1.a7\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1104.4951\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.4310/SDG.2012.v17.n1.a7\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:37cd4d3c-2752-4a68-af45-2d8505f89a1c\",\"id\":\"oai:ora.ox.ac.uk:uuid:37cd4d3c-2752-4a68-af45-2d8505f89a1c\"},\"trust\":0.34321046}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1104.4951"},"target_publication_author_list":{"type":"LIST_STRING","value":["Joyce, Dominic"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:37cd4d3c-2752-4a68-af45-2d8505f89a1c"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematics - Differential Geometry","Mathematics - Algebraic Geometry"]},"trust":{"type":"FLOAT","value":0.34321046},"target_publication_title":{"type":"STRING","value":"An introduction to C-infinity schemes and C-infinity algebraic geometry"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-04-26"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1104.4951\",\"titles\":[\"An introduction to C-infinity schemes and C-infinity algebraic geometry\"],\"abstracts\":[\" This is a survey of the author\\u0027s paper arXiv:1001.0023 on \\\"Algebraic Geometry\\nover C-infinity rings\\\".\\n If X is a smooth manifold then the R-algebra C^\\\\infty(X) of smooth functions\\nc : X --\\u003e R is a \\\"C-infinity ring\\\". That is, for each smooth function f : R^n\\n--\\u003e R there is an n-fold operation \\\\Phi_f : C^\\\\infty(X)^n --\\u003e C^\\\\infty(X)\\nacting by \\\\Phi_f: (c_1,...,c_n) |--\\u003e f(c_1,...,c_n), and these operations\\n\\\\Phi_f satisfy many natural identities. Thus, C^\\\\infty(X) actually has a far\\nricher structure than the obvious R-algebra structure.\\n We explain a version of algebraic geometry in which rings or algebras are\\nreplaced by C-infinity rings. As schemes are the basic objects in algebraic\\ngeometry, the new basic objects are \\\"C-infinity schemes\\\", a category of\\ngeometric objects generalizing manifolds, and whose morphisms generalize smooth\\nmaps. We also discuss \\\"C-infinity stacks\\\", including Deligne-Mumford C-infinity\\nstacks, a 2-category of geometric objects generalizing orbifolds. We study\\nquasicoherent and coherent sheaves on C-infinity schemes and C-infinity stacks,\\nand orbifold strata of Deligne-Mumford C-infinity stacks. This enables us to\\nuse the tools of algebraic geometry in differential geometry, and to describe\\nsingular spaces such as moduli spaces occurring in differential geometric\\nproblems.\\n Many of these ideas are not new: C-infinity rings and C-infinity schemes have\\nlong been part of synthetic differential geometry. But we develop them in new\\ndirections. In a new book, surveyed in arXiv:1206.4207 and at greater length in\\narXiv:1208.4948, the author uses C-infinity algebraic geometry to develop a\\ntheory of \\\"derived differential geometry\\\", which studies \\\"d-manifolds\\\" and\\n\\\"d-orbifolds\\\", derived versions of smooth manifolds and orbifolds. D-orbifolds\\nwill have applications in symplectic geometry, as the geometric structure on\\nmoduli spaces of J-holomorphic curves.\\n\",\"Comment: (v2) 28 pages. Updated in line with new version of arXiv:1001.0023\"],\"language\":\"eng\",\"subjects\":[\"Mathematics - Differential Geometry\",\"Mathematics - Algebraic Geometry\"],\"creators\":[\"Joyce, Dominic\"],\"publicationdate\":\"2011-04-26\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.4310/SDG.2012.v17.n1.a7\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1104.4951\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.4310/SDG.2012.v17.n1.a7\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:37cd4d3c-2752-4a68-af45-2d8505f89a1c\",\"id\":\"oai:ora.ox.ac.uk:uuid:37cd4d3c-2752-4a68-af45-2d8505f89a1c\"},\"trust\":0.34321046}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1104.4951"},"target_publication_author_list":{"type":"LIST_STRING","value":["Joyce, Dominic"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:37cd4d3c-2752-4a68-af45-2d8505f89a1c"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematics - Differential Geometry","Mathematics - Algebraic Geometry"]},"trust":{"type":"FLOAT","value":0.34321046},"target_publication_title":{"type":"STRING","value":"An introduction to C-infinity schemes and C-infinity algebraic geometry"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-04-26"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberch:12049\",\"titles\":[\"Liquidity Risk, Cash Flow Constraints, and Systemic Feedbacks\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sujit Kapadia\",\"Matthias Drehmann\",\"John Elliott\",\"Gabriel Sterne\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/chapters/c12049.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"},{\"url\":\"http://www.bankofengland.co.uk/research/Documents/workingpapers/2012/wp456.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.bankofengland.co.uk/research/Documents/workingpapers/2012/wp456.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.bankofengland.co.uk/research/Documents/workingpapers/2012/wp456.pdf\",\"id\":\"oai:RePEc:boe:boeewp:0469\"},\"trust\":0.6895174}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberch:12049"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sujit Kapadia","Matthias Drehmann","John Elliott","Gabriel Sterne"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:boe:boeewp:0469"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.6895174},"target_publication_title":{"type":"STRING","value":"Liquidity Risk, Cash Flow Constraints, and Systemic Feedbacks"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberch:12049\",\"titles\":[\"Liquidity Risk, Cash Flow Constraints, and Systemic Feedbacks\"],\"abstracts\":[\"The endogenous evolution of liquidity risk is a key driver of financial crises. This paper models liquidity feedbacks in a quantitative model of systemic risk. The model incorporates a number of channels important in the current financial crisis. As banks lose access to longer-term funding markets, their liabilities become increasingly short term, further undermining confidence. Stressed banks’ defensive actions include liquidity hoarding and asset fire sales. This behaviour can trigger funding problems at other banks and may ultimately cause them to fail. In presenting results, we analyse scenarios in which these channels of contagion operate, and conduct illustrative simulations to show how liquidity feedbacks may markedly amplify distress.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sujit Kapadia\",\"Matthias Drehmann\",\"John Elliott\",\"Gabriel Sterne\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/chapters/c12049.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"The endogenous evolution of liquidity risk is a key driver of financial crises. This paper models liquidity feedbacks in a quantitative model of systemic risk. The model incorporates a number of channels important in the current financial crisis. As banks lose access to longer-term funding markets, their liabilities become increasingly short term, further undermining confidence. Stressed banks’ defensive actions include liquidity hoarding and asset fire sales. This behaviour can trigger funding problems at other banks and may ultimately cause them to fail. In presenting results, we analyse scenarios in which these channels of contagion operate, and conduct illustrative simulations to show how liquidity feedbacks may markedly amplify distress.\"]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.bankofengland.co.uk/research/Documents/workingpapers/2012/wp456.pdf\",\"id\":\"oai:RePEc:boe:boeewp:0469\"},\"trust\":0.7598435}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberch:12049"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sujit Kapadia","Matthias Drehmann","John Elliott","Gabriel Sterne"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:boe:boeewp:0469"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.7598435},"target_publication_title":{"type":"STRING","value":"Liquidity Risk, Cash Flow Constraints, and Systemic Feedbacks"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberch:12049\",\"titles\":[\"Liquidity Risk, Cash Flow Constraints, and Systemic Feedbacks\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Sujit Kapadia\",\"Matthias Drehmann\",\"John Elliott\",\"Gabriel Sterne\"],\"publicationdate\":\"2012-06-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/chapters/c12049.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"2012-06-21\"},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.bankofengland.co.uk/research/Documents/workingpapers/2012/wp456.pdf\",\"id\":\"oai:RePEc:boe:boeewp:0469\"},\"trust\":0.6831396}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberch:12049"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sujit Kapadia","Matthias Drehmann","John Elliott","Gabriel Sterne"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:boe:boeewp:0469"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.6831396},"target_publication_title":{"type":"STRING","value":"Liquidity Risk, Cash Flow Constraints, and Systemic Feedbacks"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:boe:boeewp:0469\",\"titles\":[\"Liquidity risk, cash-flow constraints and systemic feedbacks\"],\"abstracts\":[\"The endogenous evolution of liquidity risk is a key driver of financial crises. This paper models liquidity feedbacks in a quantitative model of systemic risk. The model incorporates a number of channels important in the current financial crisis. As banks lose access to longer-term funding markets, their liabilities become increasingly short term, further undermining confidence. Stressed banks’ defensive actions include liquidity hoarding and asset fire sales. This behaviour can trigger funding problems at other banks and may ultimately cause them to fail. In presenting results, we analyse scenarios in which these channels of contagion operate, and conduct illustrative simulations to show how liquidity feedbacks may markedly amplify distress.\"],\"language\":\"und\",\"subjects\":[\"Systemic risk; funding liquidity risk; contagion; stress testing\"],\"creators\":[\"Kapadia, Sujit\",\"Drehmann, Mathias\",\"Elliott, John\",\"Sterne, Gabriel\"],\"publicationdate\":\"2012-06-21\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.bankofengland.co.uk/research/Documents/workingpapers/2012/wp456.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.nber.org/chapters/c12049.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.nber.org/chapters/c12049.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.nber.org/chapters/c12049.pdf\",\"id\":\"oai:RePEc:nbr:nberch:12049\"},\"trust\":0.9542005}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:boe:boeewp:0469"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kapadia, Sujit","Drehmann, Mathias","Elliott, John","Sterne, Gabriel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:nbr:nberch:12049"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Systemic risk; funding liquidity risk; contagion; stress testing"]},"trust":{"type":"FLOAT","value":0.9542005},"target_publication_title":{"type":"STRING","value":"Liquidity risk, cash-flow constraints and systemic feedbacks"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-06-21"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fgv:epgrbe:v:27:n:1:a:4\",\"titles\":[\"Notas sobre a III Conferência Interamericana sobre tributação patrocinada pela Organização dos Estados Americanos- OEA\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Maria Alice Fernandes Josias\"],\"publicationdate\":\"1973-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Revista Brasileira de Economia\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://bibliotecadigital.fgv.br/ojs/index.php/rbe/article/view/107\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://bibliotecadigital.fgv.br/ojs/index.php/rbe/article/view/107\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://bibliotecadigital.fgv.br/ojs/index.php/rbe/article/view/107\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://bibliotecadigital.fgv.br/ojs/index.php/rbe/article/view/107\",\"id\":\"oai:RePEc:fgv:epgrbe:v:27:y:1973:i:1:a:107\"},\"trust\":0.79844713}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fgv:epgrbe:v:27:n:1:a:4"},"target_publication_author_list":{"type":"LIST_STRING","value":["Maria Alice Fernandes Josias"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fgv:epgrbe:v:27:y:1973:i:1:a:107"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.79844713},"target_publication_title":{"type":"STRING","value":"Notas sobre a III Conferência Interamericana sobre tributação patrocinada pela Organização dos Estados Americanos- OEA"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1973-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:fgv:epgrbe:v:27:y:1973:i:1:a:107\",\"titles\":[\"Notas sobre a III Conferência Interamericana sobre tributação patrocinada pela Organização dos Estados Americanos- OEA\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Josias, Maria Alice Fernandes\"],\"publicationdate\":\"1973-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Revista Brasileira de Economia\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://bibliotecadigital.fgv.br/ojs/index.php/rbe/article/view/107\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://bibliotecadigital.fgv.br/ojs/index.php/rbe/article/view/107\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://bibliotecadigital.fgv.br/ojs/index.php/rbe/article/view/107\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://bibliotecadigital.fgv.br/ojs/index.php/rbe/article/view/107\",\"id\":\"oai:RePEc:fgv:epgrbe:v:27:n:1:a:4\"},\"trust\":0.5460456}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:fgv:epgrbe:v:27:y:1973:i:1:a:107"},"target_publication_author_list":{"type":"LIST_STRING","value":["Josias, Maria Alice Fernandes"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:fgv:epgrbe:v:27:n:1:a:4"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.5460456},"target_publication_title":{"type":"STRING","value":"Notas sobre a III Conferência Interamericana sobre tributação patrocinada pela Organização dos Estados Americanos- OEA"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1973-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uvapub:128844\",\"titles\":[\"Provability logics for relative interpretability\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Mathematical logic\"],\"creators\":[\"Veltman, F. J. M. M.\",\"Jongh, D.\"],\"publicationdate\":\"1990-01-01\",\"publisher\":\"Plenum Press\",\"embargoenddate\":\"\",\"contributor\":[\"Petkov, P.P.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit van Amsterdam Digital Academic Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://dare.uva.nl/record/128844\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/11245/1.422512\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/11245/1.422512\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit van Amsterdam Digital Academic Repository\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/11245/1.422512\",\"id\":\"uvapub:oai:uva.nl:422512\"},\"trust\":0.6113766}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit van Amsterdam Digital Academic Repository"},"target_publication_id":{"type":"STRING","value":"oai:uvapub:128844"},"target_publication_author_list":{"type":"LIST_STRING","value":["Veltman, F. J. M. M.","Jongh, D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uvapub:oai:uva.nl:422512"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematical logic"]},"trust":{"type":"FLOAT","value":0.6113766},"target_publication_title":{"type":"STRING","value":"Provability logics for relative interpretability"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1990-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::bc6dc48b743dc5d013b1abaebd2faed2"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2893449\",\"titles\":[\"Experimental Simulation of Evaporation-Driven Silica Sinter Formation and Microbial Silicification in Hot Spring Systems\"],\"abstracts\":[\"Evaporation of silica-rich geothermal waters is one of the main abiotic drivers of the formation of silica sinters around hot springs. An important role in sinter structural development is also played by the indigenous microbial communities, which are fossilized and eventually encased in the silica matrix. The combination of these two factors results in a wide variety of sinter structures and fabrics. Despite this, no previous experimental fossilization studies have focused on evaporative-driven silica precipitation. We present here the results of several experiments aimed at simulating the formation of sinters through evaporation. Silica solutions at different concentrations were repeatedly allowed to evaporate in both the presence and absence of the cyanobacterium Synechococcus elongatus. Without microorganisms, consecutive silica additions led to the formation of well-laminated deposits. By contrast, when microorganisms were present, they acted as reactive surfaces for heterogeneous silica particle nucleation; depending on the initial silica concentration, the deposits were then either porous with a mixture of silicified and unmineralized cells, or they formed a denser structure with a complete entombment of the cells by a thick silica crust. The deposits obtained experimentally showed numerous similarities in terms of their fabric to those previously reported for natural hot springs, demonstrating the complex interplay between abiotic and biotic processes during silica sinter growth. Key Words: Silica—Cyanobacteria—Fossilization—Hot springs—Stromatolites. Astrobiology 13, 163–176.\"],\"language\":\"eng\",\"subjects\":[\"Research Articles\"],\"creators\":[\"Orange, François\",\"Lalonde, Stefan V.\",\"Konhauser, Kurt O.\"],\"publicationdate\":\"2013-02-01\",\"publisher\":\"Mary Ann Liebert, Inc.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC3582282\",\"type\":\"pmc\"},{\"value\":\"10.1089/ast.2012.0887\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3582282\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1089/ast.2012.0887\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-insu.archives-ouvertes.fr/insu-00808448\",\"id\":\"oai:hal-insu.archives-ouvertes.fr:insu-00808448\"},\"trust\":0.8178895}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2893449"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orange, François","Lalonde, Stefan V.","Konhauser, Kurt O."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal-insu.archives-ouvertes.fr:insu-00808448"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Articles"]},"trust":{"type":"FLOAT","value":0.8178895},"target_publication_title":{"type":"STRING","value":"Experimental Simulation of Evaporation-Driven Silica Sinter Formation and Microbial Silicification in Hot Spring Systems"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2893449\",\"titles\":[\"Experimental Simulation of Evaporation-Driven Silica Sinter Formation and Microbial Silicification in Hot Spring Systems\"],\"abstracts\":[\"Evaporation of silica-rich geothermal waters is one of the main abiotic drivers of the formation of silica sinters around hot springs. An important role in sinter structural development is also played by the indigenous microbial communities, which are fossilized and eventually encased in the silica matrix. The combination of these two factors results in a wide variety of sinter structures and fabrics. Despite this, no previous experimental fossilization studies have focused on evaporative-driven silica precipitation. We present here the results of several experiments aimed at simulating the formation of sinters through evaporation. Silica solutions at different concentrations were repeatedly allowed to evaporate in both the presence and absence of the cyanobacterium Synechococcus elongatus. Without microorganisms, consecutive silica additions led to the formation of well-laminated deposits. By contrast, when microorganisms were present, they acted as reactive surfaces for heterogeneous silica particle nucleation; depending on the initial silica concentration, the deposits were then either porous with a mixture of silicified and unmineralized cells, or they formed a denser structure with a complete entombment of the cells by a thick silica crust. The deposits obtained experimentally showed numerous similarities in terms of their fabric to those previously reported for natural hot springs, demonstrating the complex interplay between abiotic and biotic processes during silica sinter growth. Key Words: Silica—Cyanobacteria—Fossilization—Hot springs—Stromatolites. Astrobiology 13, 163–176.\"],\"language\":\"eng\",\"subjects\":[\"Research Articles\"],\"creators\":[\"Orange, François\",\"Lalonde, Stefan V.\",\"Konhauser, Kurt O.\"],\"publicationdate\":\"2013-02-01\",\"publisher\":\"Mary Ann Liebert, Inc.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC3582282\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3582282\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://hal-insu.archives-ouvertes.fr/insu-00808448\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-insu.archives-ouvertes.fr/insu-00808448\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-insu.archives-ouvertes.fr/insu-00808448\",\"id\":\"oai:hal-insu.archives-ouvertes.fr:insu-00808448\"},\"trust\":0.4442482}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2893449"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orange, François","Lalonde, Stefan V.","Konhauser, Kurt O."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal-insu.archives-ouvertes.fr:insu-00808448"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Articles"]},"trust":{"type":"FLOAT","value":0.4442482},"target_publication_title":{"type":"STRING","value":"Experimental Simulation of Evaporation-Driven Silica Sinter Formation and Microbial Silicification in Hot Spring Systems"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2893449\",\"titles\":[\"Experimental Simulation of Evaporation-Driven Silica Sinter Formation and Microbial Silicification in Hot Spring Systems\"],\"abstracts\":[\"Evaporation of silica-rich geothermal waters is one of the main abiotic drivers of the formation of silica sinters around hot springs. An important role in sinter structural development is also played by the indigenous microbial communities, which are fossilized and eventually encased in the silica matrix. The combination of these two factors results in a wide variety of sinter structures and fabrics. Despite this, no previous experimental fossilization studies have focused on evaporative-driven silica precipitation. We present here the results of several experiments aimed at simulating the formation of sinters through evaporation. Silica solutions at different concentrations were repeatedly allowed to evaporate in both the presence and absence of the cyanobacterium Synechococcus elongatus. Without microorganisms, consecutive silica additions led to the formation of well-laminated deposits. By contrast, when microorganisms were present, they acted as reactive surfaces for heterogeneous silica particle nucleation; depending on the initial silica concentration, the deposits were then either porous with a mixture of silicified and unmineralized cells, or they formed a denser structure with a complete entombment of the cells by a thick silica crust. The deposits obtained experimentally showed numerous similarities in terms of their fabric to those previously reported for natural hot springs, demonstrating the complex interplay between abiotic and biotic processes during silica sinter growth. Key Words: Silica—Cyanobacteria—Fossilization—Hot springs—Stromatolites. Astrobiology 13, 163–176.\"],\"language\":\"eng\",\"subjects\":[\"Research Articles\"],\"creators\":[\"Orange, François\",\"Lalonde, Stefan V.\",\"Konhauser, Kurt O.\"],\"publicationdate\":\"2013-02-01\",\"publisher\":\"Mary Ann Liebert, Inc.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC3582282\",\"type\":\"pmc\"},{\"value\":\"10.1089/ast.2012.0887\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3582282\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1089/ast.2012.0887\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal-insu.archives-ouvertes.fr/insu-00808448\",\"id\":\"oai:HAL:insu-00808448v1\"},\"trust\":0.12460166}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2893449"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orange, François","Lalonde, Stefan V.","Konhauser, Kurt O."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:insu-00808448v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Articles"]},"trust":{"type":"FLOAT","value":0.12460166},"target_publication_title":{"type":"STRING","value":"Experimental Simulation of Evaporation-Driven Silica Sinter Formation and Microbial Silicification in Hot Spring Systems"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2893449\",\"titles\":[\"Experimental Simulation of Evaporation-Driven Silica Sinter Formation and Microbial Silicification in Hot Spring Systems\"],\"abstracts\":[\"Evaporation of silica-rich geothermal waters is one of the main abiotic drivers of the formation of silica sinters around hot springs. An important role in sinter structural development is also played by the indigenous microbial communities, which are fossilized and eventually encased in the silica matrix. The combination of these two factors results in a wide variety of sinter structures and fabrics. Despite this, no previous experimental fossilization studies have focused on evaporative-driven silica precipitation. We present here the results of several experiments aimed at simulating the formation of sinters through evaporation. Silica solutions at different concentrations were repeatedly allowed to evaporate in both the presence and absence of the cyanobacterium Synechococcus elongatus. Without microorganisms, consecutive silica additions led to the formation of well-laminated deposits. By contrast, when microorganisms were present, they acted as reactive surfaces for heterogeneous silica particle nucleation; depending on the initial silica concentration, the deposits were then either porous with a mixture of silicified and unmineralized cells, or they formed a denser structure with a complete entombment of the cells by a thick silica crust. The deposits obtained experimentally showed numerous similarities in terms of their fabric to those previously reported for natural hot springs, demonstrating the complex interplay between abiotic and biotic processes during silica sinter growth. Key Words: Silica—Cyanobacteria—Fossilization—Hot springs—Stromatolites. Astrobiology 13, 163–176.\"],\"language\":\"eng\",\"subjects\":[\"Research Articles\"],\"creators\":[\"Orange, François\",\"Lalonde, Stefan V.\",\"Konhauser, Kurt O.\"],\"publicationdate\":\"2013-02-01\",\"publisher\":\"Mary Ann Liebert, Inc.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC3582282\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3582282\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"https://hal-insu.archives-ouvertes.fr/insu-00808448\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal-insu.archives-ouvertes.fr/insu-00808448\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal-insu.archives-ouvertes.fr/insu-00808448\",\"id\":\"oai:HAL:insu-00808448v1\"},\"trust\":0.25927407}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2893449"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orange, François","Lalonde, Stefan V.","Konhauser, Kurt O."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:insu-00808448v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Articles"]},"trust":{"type":"FLOAT","value":0.25927407},"target_publication_title":{"type":"STRING","value":"Experimental Simulation of Evaporation-Driven Silica Sinter Formation and Microbial Silicification in Hot Spring Systems"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:hal-insu.archives-ouvertes.fr:insu-00808448\",\"titles\":[\"Experimental simulation of evaporation-driven silica sinter formation and microbial silicification in hot spring systems.\"],\"abstracts\":[\"Evaporation of silica-rich geothermal waters is one of the main abiotic drivers of the formation of silica sinters around hot springs. An important role in sinter structural development is also played by the indigenous microbial communities, which are fossilized and eventually encased in the silica matrix. The combination of these two factors results in a wide variety of sinter structures and fabrics. Despite this, no previous experimental fossilization studies have focused on evaporative-driven silica precipitation. We present here the results of several experiments aimed at simulating the formation of sinters through evaporation. Silica solutions at different concentrations were repeatedly allowed to evaporate in both the presence and absence of the cyanobacterium Synechococcus elongatus. Without microorganisms, consecutive silica additions led to the formation of well-laminated deposits. By contrast, when microorganisms were present, they acted as reactive surfaces for heterogeneous silica particle nucleation; depending on the initial silica concentration, the deposits were then either porous with a mixture of silicified and unmineralized cells, or they formed a denser structure with a complete entombment of the cells by a thick silica crust. The deposits obtained experimentally showed numerous similarities in terms of their fabric to those previously reported for natural hot springs, demonstrating the complex interplay between abiotic and biotic processes during silica sinter growth.\"],\"language\":\"eng\",\"subjects\":[\"[SDU:STU:GC] Sciences of the Universe/Earth Sciences/Geochemistry\",\"[SDU:STU:GC] Planète et Univers/Sciences de la Terre/Géochimie\",\"[SDE:MCG] Environmental Sciences/Global Changes\",\"[SDE:MCG] Sciences de l\\u0027environnement/Milieux et Changements globaux\",\"[SDE] Environmental Sciences\",\"[SDE] Sciences de l\\u0027environnement\",\"Silica\",\"Cyanobacteria\",\"Fossilization\",\"Hot springs\",\"Stromatolites\",\"YELLOWSTONE-NATIONAL-PARK\",\"WAIOTAPU GEOTHERMAL AREA\",\"CELL-SURFACE REACTIVITY\",\"ACID-BASE PROPERTIES\",\"BLUE-GREEN-ALGAE\",\"NEW-ZEALAND\",\"NORTH-ISLAND\",\"CYANOBACTERIAL SILICIFICATION\",\"STROMATOLITES\",\"GROWTH\"],\"creators\":[\"Orange, François\",\"Lalonde, Stefan V.\",\"Konhauser, Kurt O.\"],\"publicationdate\":\"2013-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1089/ast.2012.0887\",\"type\":\"doi\"},{\"value\":\"PMC3582282\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://hal-insu.archives-ouvertes.fr/insu-00808448\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3582282\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3582282\",\"id\":\"oai:europepmc.org:2893449\"},\"trust\":0.706374}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal-insu.archives-ouvertes.fr:insu-00808448"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orange, François","Lalonde, Stefan V.","Konhauser, Kurt O."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2893449"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDU:STU:GC] Sciences of the Universe/Earth Sciences/Geochemistry","[SDU:STU:GC] Planète et Univers/Sciences de la Terre/Géochimie","[SDE:MCG] Environmental Sciences/Global Changes","[SDE:MCG] Sciences de l\u0027environnement/Milieux et Changements globaux","[SDE] Environmental Sciences","[SDE] Sciences de l\u0027environnement","Silica","Cyanobacteria","Fossilization","Hot springs","Stromatolites","YELLOWSTONE-NATIONAL-PARK","WAIOTAPU GEOTHERMAL AREA","CELL-SURFACE REACTIVITY","ACID-BASE PROPERTIES","BLUE-GREEN-ALGAE","NEW-ZEALAND","NORTH-ISLAND","CYANOBACTERIAL SILICIFICATION","STROMATOLITES","GROWTH"]},"trust":{"type":"FLOAT","value":0.706374},"target_publication_title":{"type":"STRING","value":"Experimental simulation of evaporation-driven silica sinter formation and microbial silicification in hot spring systems."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2013-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal-insu.archives-ouvertes.fr:insu-00808448\",\"titles\":[\"Experimental simulation of evaporation-driven silica sinter formation and microbial silicification in hot spring systems.\"],\"abstracts\":[\"Evaporation of silica-rich geothermal waters is one of the main abiotic drivers of the formation of silica sinters around hot springs. An important role in sinter structural development is also played by the indigenous microbial communities, which are fossilized and eventually encased in the silica matrix. The combination of these two factors results in a wide variety of sinter structures and fabrics. Despite this, no previous experimental fossilization studies have focused on evaporative-driven silica precipitation. We present here the results of several experiments aimed at simulating the formation of sinters through evaporation. Silica solutions at different concentrations were repeatedly allowed to evaporate in both the presence and absence of the cyanobacterium Synechococcus elongatus. Without microorganisms, consecutive silica additions led to the formation of well-laminated deposits. By contrast, when microorganisms were present, they acted as reactive surfaces for heterogeneous silica particle nucleation; depending on the initial silica concentration, the deposits were then either porous with a mixture of silicified and unmineralized cells, or they formed a denser structure with a complete entombment of the cells by a thick silica crust. The deposits obtained experimentally showed numerous similarities in terms of their fabric to those previously reported for natural hot springs, demonstrating the complex interplay between abiotic and biotic processes during silica sinter growth.\"],\"language\":\"eng\",\"subjects\":[\"[SDU:STU:GC] Sciences of the Universe/Earth Sciences/Geochemistry\",\"[SDU:STU:GC] Planète et Univers/Sciences de la Terre/Géochimie\",\"[SDE:MCG] Environmental Sciences/Global Changes\",\"[SDE:MCG] Sciences de l\\u0027environnement/Milieux et Changements globaux\",\"[SDE] Environmental Sciences\",\"[SDE] Sciences de l\\u0027environnement\",\"Silica\",\"Cyanobacteria\",\"Fossilization\",\"Hot springs\",\"Stromatolites\",\"YELLOWSTONE-NATIONAL-PARK\",\"WAIOTAPU GEOTHERMAL AREA\",\"CELL-SURFACE REACTIVITY\",\"ACID-BASE PROPERTIES\",\"BLUE-GREEN-ALGAE\",\"NEW-ZEALAND\",\"NORTH-ISLAND\",\"CYANOBACTERIAL SILICIFICATION\",\"STROMATOLITES\",\"GROWTH\"],\"creators\":[\"Orange, François\",\"Lalonde, Stefan V.\",\"Konhauser, Kurt O.\"],\"publicationdate\":\"2013-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1089/ast.2012.0887\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal-insu.archives-ouvertes.fr/insu-00808448\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal-insu.archives-ouvertes.fr/insu-00808448\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal-insu.archives-ouvertes.fr/insu-00808448\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal-insu.archives-ouvertes.fr/insu-00808448\",\"id\":\"oai:HAL:insu-00808448v1\"},\"trust\":0.15911222}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal-insu.archives-ouvertes.fr:insu-00808448"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orange, François","Lalonde, Stefan V.","Konhauser, Kurt O."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:insu-00808448v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDU:STU:GC] Sciences of the Universe/Earth Sciences/Geochemistry","[SDU:STU:GC] Planète et Univers/Sciences de la Terre/Géochimie","[SDE:MCG] Environmental Sciences/Global Changes","[SDE:MCG] Sciences de l\u0027environnement/Milieux et Changements globaux","[SDE] Environmental Sciences","[SDE] Sciences de l\u0027environnement","Silica","Cyanobacteria","Fossilization","Hot springs","Stromatolites","YELLOWSTONE-NATIONAL-PARK","WAIOTAPU GEOTHERMAL AREA","CELL-SURFACE REACTIVITY","ACID-BASE PROPERTIES","BLUE-GREEN-ALGAE","NEW-ZEALAND","NORTH-ISLAND","CYANOBACTERIAL SILICIFICATION","STROMATOLITES","GROWTH"]},"trust":{"type":"FLOAT","value":0.15911222},"target_publication_title":{"type":"STRING","value":"Experimental simulation of evaporation-driven silica sinter formation and microbial silicification in hot spring systems."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:insu-00808448v1\",\"titles\":[\"Experimental simulation of evaporation-driven silica sinter formation and microbial silicification in hot spring systems.\"],\"abstracts\":[\"International audience\",\"Evaporation of silica-rich geothermal waters is one of the main abiotic drivers of the formation of silica sinters around hot springs. An important role in sinter structural development is also played by the indigenous microbial communities, which are fossilized and eventually encased in the silica matrix. The combination of these two factors results in a wide variety of sinter structures and fabrics. Despite this, no previous experimental fossilization studies have focused on evaporative-driven silica precipitation. We present here the results of several experiments aimed at simulating the formation of sinters through evaporation. Silica solutions at different concentrations were repeatedly allowed to evaporate in both the presence and absence of the cyanobacterium Synechococcus elongatus. Without microorganisms, consecutive silica additions led to the formation of well-laminated deposits. By contrast, when microorganisms were present, they acted as reactive surfaces for heterogeneous silica particle nucleation; depending on the initial silica concentration, the deposits were then either porous with a mixture of silicified and unmineralized cells, or they formed a denser structure with a complete entombment of the cells by a thick silica crust. The deposits obtained experimentally showed numerous similarities in terms of their fabric to those previously reported for natural hot springs, demonstrating the complex interplay between abiotic and biotic processes during silica sinter growth.\"],\"language\":\"eng\",\"subjects\":[\"Silica\",\"Cyanobacteria\",\"Fossilization\",\"Hot springs\",\"Stromatolites\",\"YELLOWSTONE-NATIONAL-PARK\",\"WAIOTAPU GEOTHERMAL AREA\",\"CELL-SURFACE REACTIVITY\",\"ACID-BASE PROPERTIES\",\"BLUE-GREEN-ALGAE\",\"NEW-ZEALAND\",\"NORTH-ISLAND\",\"CYANOBACTERIAL SILICIFICATION\",\"STROMATOLITES\",\"GROWTH\",\"[SDU.STU.GC] Sciences of the Universe/Earth Sciences/Geochemistry\",\"[SDE.MCG] Environmental Sciences/Global Changes\",\"[SDE] Environmental Sciences\"],\"creators\":[\"Orange, François\",\"Lalonde, Stefan V.\",\"Konhauser, Kurt O.\"],\"publicationdate\":\"2013-02-01\",\"publisher\":\"Mary Ann Liebert\",\"embargoenddate\":\"\",\"contributor\":[\"Department of Earth and Atmospheric Sciences ; University of Alberta\",\"Domaines Océaniques ; INSU - Université de Bretagne Occidentale (UBO) - Observatoire des Sciences de l\\u0027Univers - Institut Universitaire Européen de la Mer (IUEM) - Institut d\\u0027écologie et environnement - CNRS\",\"European Science Foundation ArchEnviron Exchange Grant 2723 Natural Sciences and Engineering Research Council of Canada\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1089/ast.2012.0887\",\"type\":\"doi\"},{\"value\":\"PMC3582282\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"https://hal-insu.archives-ouvertes.fr/insu-00808448\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3582282\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3582282\",\"id\":\"oai:europepmc.org:2893449\"},\"trust\":0.2888835}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:insu-00808448v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orange, François","Lalonde, Stefan V.","Konhauser, Kurt O."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2893449"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Silica","Cyanobacteria","Fossilization","Hot springs","Stromatolites","YELLOWSTONE-NATIONAL-PARK","WAIOTAPU GEOTHERMAL AREA","CELL-SURFACE REACTIVITY","ACID-BASE PROPERTIES","BLUE-GREEN-ALGAE","NEW-ZEALAND","NORTH-ISLAND","CYANOBACTERIAL SILICIFICATION","STROMATOLITES","GROWTH","[SDU.STU.GC] Sciences of the Universe/Earth Sciences/Geochemistry","[SDE.MCG] Environmental Sciences/Global Changes","[SDE] Environmental Sciences"]},"trust":{"type":"FLOAT","value":0.2888835},"target_publication_title":{"type":"STRING","value":"Experimental simulation of evaporation-driven silica sinter formation and microbial silicification in hot spring systems."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2013-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:insu-00808448v1\",\"titles\":[\"Experimental simulation of evaporation-driven silica sinter formation and microbial silicification in hot spring systems.\"],\"abstracts\":[\"International audience\",\"Evaporation of silica-rich geothermal waters is one of the main abiotic drivers of the formation of silica sinters around hot springs. An important role in sinter structural development is also played by the indigenous microbial communities, which are fossilized and eventually encased in the silica matrix. The combination of these two factors results in a wide variety of sinter structures and fabrics. Despite this, no previous experimental fossilization studies have focused on evaporative-driven silica precipitation. We present here the results of several experiments aimed at simulating the formation of sinters through evaporation. Silica solutions at different concentrations were repeatedly allowed to evaporate in both the presence and absence of the cyanobacterium Synechococcus elongatus. Without microorganisms, consecutive silica additions led to the formation of well-laminated deposits. By contrast, when microorganisms were present, they acted as reactive surfaces for heterogeneous silica particle nucleation; depending on the initial silica concentration, the deposits were then either porous with a mixture of silicified and unmineralized cells, or they formed a denser structure with a complete entombment of the cells by a thick silica crust. The deposits obtained experimentally showed numerous similarities in terms of their fabric to those previously reported for natural hot springs, demonstrating the complex interplay between abiotic and biotic processes during silica sinter growth.\"],\"language\":\"eng\",\"subjects\":[\"Silica\",\"Cyanobacteria\",\"Fossilization\",\"Hot springs\",\"Stromatolites\",\"YELLOWSTONE-NATIONAL-PARK\",\"WAIOTAPU GEOTHERMAL AREA\",\"CELL-SURFACE REACTIVITY\",\"ACID-BASE PROPERTIES\",\"BLUE-GREEN-ALGAE\",\"NEW-ZEALAND\",\"NORTH-ISLAND\",\"CYANOBACTERIAL SILICIFICATION\",\"STROMATOLITES\",\"GROWTH\",\"[SDU.STU.GC] Sciences of the Universe/Earth Sciences/Geochemistry\",\"[SDE.MCG] Environmental Sciences/Global Changes\",\"[SDE] Environmental Sciences\"],\"creators\":[\"Orange, François\",\"Lalonde, Stefan V.\",\"Konhauser, Kurt O.\"],\"publicationdate\":\"2013-02-01\",\"publisher\":\"Mary Ann Liebert\",\"embargoenddate\":\"\",\"contributor\":[\"Department of Earth and Atmospheric Sciences ; University of Alberta\",\"Domaines Océaniques ; INSU - Université de Bretagne Occidentale (UBO) - Observatoire des Sciences de l\\u0027Univers - Institut Universitaire Européen de la Mer (IUEM) - Institut d\\u0027écologie et environnement - CNRS\",\"European Science Foundation ArchEnviron Exchange Grant 2723 Natural Sciences and Engineering Research Council of Canada\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1089/ast.2012.0887\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal-insu.archives-ouvertes.fr/insu-00808448\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal-insu.archives-ouvertes.fr/insu-00808448\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-insu.archives-ouvertes.fr/insu-00808448\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-insu.archives-ouvertes.fr/insu-00808448\",\"id\":\"oai:hal-insu.archives-ouvertes.fr:insu-00808448\"},\"trust\":0.0826928}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:insu-00808448v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Orange, François","Lalonde, Stefan V.","Konhauser, Kurt O."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal-insu.archives-ouvertes.fr:insu-00808448"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Silica","Cyanobacteria","Fossilization","Hot springs","Stromatolites","YELLOWSTONE-NATIONAL-PARK","WAIOTAPU GEOTHERMAL AREA","CELL-SURFACE REACTIVITY","ACID-BASE PROPERTIES","BLUE-GREEN-ALGAE","NEW-ZEALAND","NORTH-ISLAND","CYANOBACTERIAL SILICIFICATION","STROMATOLITES","GROWTH","[SDU.STU.GC] Sciences of the Universe/Earth Sciences/Geochemistry","[SDE.MCG] Environmental Sciences/Global Changes","[SDE] Environmental Sciences"]},"trust":{"type":"FLOAT","value":0.0826928},"target_publication_title":{"type":"STRING","value":"Experimental simulation of evaporation-driven silica sinter formation and microbial silicification in hot spring systems."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:jpa-00240858v1\",\"titles\":[\"The American Journal of Science ; 4e série ; t. XV ; janvier-juin 1903\"],\"abstracts\":[\"Pas de Résumé disponible\"],\"language\":\"fra/fre\",\"subjects\":[\"[PHYS.HIST] Physics/Physics archives\"],\"creators\":[\"Bénard, H.\"],\"publicationdate\":\"1904-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphystap:019040030016700\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00240858\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00240858\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00240858\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/jpa-00240858\",\"id\":\"oai:hal.archives-ouvertes.fr:jpa-00240858\"},\"trust\":0.74819887}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:jpa-00240858v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bénard, H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:jpa-00240858"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.HIST] Physics/Physics archives"]},"trust":{"type":"FLOAT","value":0.74819887},"target_publication_title":{"type":"STRING","value":"The American Journal of Science ; 4e série ; t. XV ; janvier-juin 1903"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1904-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:jpa-00240858\",\"titles\":[\"The American Journal of Science ; 4e série ; t. XV ; janvier-juin 1903\"],\"abstracts\":[\"Pas de Résumé disponible\"],\"language\":\"fra/fre\",\"subjects\":[\"[PHYS:HIST] Physics/Physics archives\",\"[PHYS:HIST] Physique/Articles anciens\"],\"creators\":[\"Bénard, H.\"],\"publicationdate\":\"1904-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1051/jphystap:019040030016700\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/jpa-00240858\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00240858\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/jpa-00240858\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/jpa-00240858\",\"id\":\"oai:HAL:jpa-00240858v1\"},\"trust\":0.6507841}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:jpa-00240858"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bénard, H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:jpa-00240858v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:HIST] Physics/Physics archives","[PHYS:HIST] Physique/Articles anciens"]},"trust":{"type":"FLOAT","value":0.6507841},"target_publication_title":{"type":"STRING","value":"The American Journal of Science ; 4e série ; t. XV ; janvier-juin 1903"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1904-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00521013\",\"titles\":[\"SYAL : UN NOUVEL OUTIL POUR LE DEVELOPPEMENT DE TERRITOIRES MARGINAUX. LES LEÇONS DE L\\u0027ALLIANCE DES AGRO-INDUSTRIES RURALES DE LA SELVA LACANDONA, CHIAPAS.\"],\"abstracts\":[\"Since its beginnings in the eighties, Rural Agro-Industry (RAI) has emerged as an effective way to fight against poverty in marginalized rural areas, because of its ability to contribute to the overall improvement of small producers\\u0027 living conditions. This development tool has been completed in the nineties by the Localized Agri-food Systems concept (SYAL in French) and the process of their activation. From the experience of a RAI development project promoted in the Selva Lacandona (Chiapas, Mexico), we present some lessons learned from this development project. One of the principal results was to identify and define the conditions of RAI sustainability in the Selva Lacandona. If economics profitability of the micro-enterprises proved to be essential to ensure their viability, it does not seem central as it doesn\\u0027t represent a real problem. On the other hand, two aspects appeared to be fundamental to guarantee the RAI sustainable development in such marginalized region: the necessity of a prior favorable environment, in particular trough the presence of functional local public goods, and the resolution of organization and leadership problems.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:SA:AEP] Life Sciences/Agricultural sciences/Agriculture, economy and politics\",\"[SDV:SA:AEP] Sciences du Vivant/Sciences agricoles/Agriculture, économie et politique\",\"Local Agri-food Systems\",\"rural poverty\",\"collective action\",\"Mexico\"],\"creators\":[\"Boucher, Francois\",\"Requier-Desjardins, Denis\",\"Brun, Virginie\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00521013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00521013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00521013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00521013\",\"id\":\"oai:HAL:hal-00521013v1\"},\"trust\":0.25571316}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00521013"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boucher, Francois","Requier-Desjardins, Denis","Brun, Virginie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00521013v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:SA:AEP] Life Sciences/Agricultural sciences/Agriculture, economy and politics","[SDV:SA:AEP] Sciences du Vivant/Sciences agricoles/Agriculture, économie et politique","Local Agri-food Systems","rural poverty","collective action","Mexico"]},"trust":{"type":"FLOAT","value":0.25571316},"target_publication_title":{"type":"STRING","value":"SYAL : UN NOUVEL OUTIL POUR LE DEVELOPPEMENT DE TERRITOIRES MARGINAUX. LES LEÇONS DE L\u0027ALLIANCE DES AGRO-INDUSTRIES RURALES DE LA SELVA LACANDONA, CHIAPAS."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00521013v1\",\"titles\":[\"SYAL : UN NOUVEL OUTIL POUR LE DEVELOPPEMENT DE TERRITOIRES MARGINAUX. LES LEÇONS DE L\\u0027ALLIANCE DES AGRO-INDUSTRIES RURALES DE LA SELVA LACANDONA, CHIAPAS.\"],\"abstracts\":[\"N° ISBN - 978-2-7380-1284-5\",\"International audience\",\"Since its beginnings in the eighties, Rural Agro-Industry (RAI) has emerged as an effective way to fight against poverty in marginalized rural areas, because of its ability to contribute to the overall improvement of small producers\\u0027 living conditions. This development tool has been completed in the nineties by the Localized Agri-food Systems concept (SYAL in French) and the process of their activation. From the experience of a RAI development project promoted in the Selva Lacandona (Chiapas, Mexico), we present some lessons learned from this development project. One of the principal results was to identify and define the conditions of RAI sustainability in the Selva Lacandona. If economics profitability of the micro-enterprises proved to be essential to ensure their viability, it does not seem central as it doesn\\u0027t represent a real problem. On the other hand, two aspects appeared to be fundamental to guarantee the RAI sustainable development in such marginalized region: the necessity of a prior favorable environment, in particular trough the presence of functional local public goods, and the resolution of organization and leadership problems.\"],\"language\":\"fra/fre\",\"subjects\":[\"Local Agri-food Systems\",\"rural poverty\",\"collective action\",\"Mexico\",\"[SDV.SA.AEP] Life Sciences/Agricultural sciences/Agriculture, economy and politics\"],\"creators\":[\"Boucher, Francois\",\"Requier-Desjardins, Denis\",\"Brun, Virginie\"],\"publicationdate\":\"2010-06-28\",\"publisher\":\"Cirad-Inra-SupAgro\",\"embargoenddate\":\"\",\"contributor\":[\"Innovation et Développement dans l\\u0027Agriculture et l\\u0027Agro-alimentaire (Innovation) ; Institut national de la recherche agronomique (INRA) - Centre de coopération internationale en recherche agronomique pour le développement [CIRAD]\",\"Sciences Po Toulouse - Institut d\\u0027études politiques de Toulouse (IEP Toulouse) ; Institut d\\u0027Études Politiques [IEP] - Toulouse - Université des Sciences Sociales - Toulouse I - Fondation Nationale des Sciences Politiques [FNSP]\",\"Inter-American Institute for Cooperation on Agriculture (IICA) ; Inter-American Institute for Cooperation on Agriculture\",\"Emilie COUDEL, Hubert DEVAUTOUR, Christophe-Toussaint SOULARD, Bernard HUBERT\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00521013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00521013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00521013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00521013\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00521013\"},\"trust\":0.3652733}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00521013v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boucher, Francois","Requier-Desjardins, Denis","Brun, Virginie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00521013"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Local Agri-food Systems","rural poverty","collective action","Mexico","[SDV.SA.AEP] Life Sciences/Agricultural sciences/Agriculture, economy and politics"]},"trust":{"type":"FLOAT","value":0.3652733},"target_publication_title":{"type":"STRING","value":"SYAL : UN NOUVEL OUTIL POUR LE DEVELOPPEMENT DE TERRITOIRES MARGINAUX. LES LEÇONS DE L\u0027ALLIANCE DES AGRO-INDUSTRIES RURALES DE LA SELVA LACANDONA, CHIAPAS."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-06-28"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/130564\",\"titles\":[\"Information, financial aid and training participation: Evidence from a randomized field experiment\"],\"abstracts\":[\"To increase employee participation in training activities, the German government introduced a large-scale training voucher program in 2008 that reduces training fees by half. Based on a randomized field experiment, this paper analyzes whether providing information about the existence and the conditions of the training voucher had an effect on actual training activities of employees. Because the voucher was newly introduced, only one-fourth of the eligible employees knew the voucher exists at the time of the experiment. The information intervention informed a random sample of eligible employees by telephone about the program details and conditions. The results indicate that the information significantly increased treated individuals\\u0027 knowledge of the program but had no effect on voucher take-up or participation in training activities. Additional descriptive analyses suggest that the reasons for these zero effects are that the demand for self-financed training is low and that liquidity constraints do not discourage many employees from training participation.\",\"Im Jahr 2008 wurde in Deutschland das Programm Bildungsprämie eingeführt. Mit diesem Weiterbildungsgutschein, der eine 50-prozentige Erstattung der Weiterbildungskosten umfasst, sollen Erwerbstätige zu Weiterbildung angeregt werden. Anhand eines randomisierten Feldexperiments untersucht die Studie, ob ein verstärktes Bekanntmachen des Gutscheins mittels einer \\u0027Informationsintervention\\u0027 zu Änderungen im Weiterbildungsverhalten von Erwerbstätigen führt. Da der Gutschein erst kürzlich eingeführt wurde, war die Bekanntheit zum Zeitpunkt des Feldexperiments vergleichsweise gering. Die Ergebnisse zeigen, dass die Informationsintervention die Bekanntheit der Bildungsprämie signifikant erhöht hat, die Teilnahme an Weiterbildung hierdurch jedoch nicht verändert wurde. Ergänzende Analysen legen nahe, dass der fehlende Einfluss auf die Weiterbildungsteilnahme auf eine insgesamt geringe Nachfrage nach eigenfinanzierter Weiterbildung zurückzuführen ist sowie auf den Umstand, dass finanzielle Beschränkungen nur wenige Erwerbstätige von Weiterbildung abhalten und die Behebung dieser finanziellen Beschränkungen daher kaum Wirkung entfaltet.\"],\"language\":\"eng\",\"subjects\":[\"I22\",\"D83\",\"H52\",\"ddc:330\",\"training participation\",\"voucher\",\"financial aid\",\"randomized field experiment\",\"information treatment\"],\"creators\":[\"Görlitz, Katja\",\"Tamm, Marcus\"],\"publicationdate\":\"2016-01-01\",\"publisher\":\"Rheinisch-Westfälisches Institut für Wirtschaftsforschung (RWI) Essen\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[{\"value\":\"10.4419/86788712\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/130564\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/130588\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/130588\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/130588\",\"id\":\"oai:econstor.eu:10419/130588\"},\"trust\":0.5612785}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/130564"},"target_publication_author_list":{"type":"LIST_STRING","value":["Görlitz, Katja","Tamm, Marcus"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/130588"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I22","D83","H52","ddc:330","training participation","voucher","financial aid","randomized field experiment","information treatment"]},"trust":{"type":"FLOAT","value":0.5612785},"target_publication_title":{"type":"STRING","value":"Information, financial aid and training participation: Evidence from a randomized field experiment"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2016-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/130588\",\"titles\":[\"Information, financial aid and training participation: Evidence from a randomized field experiment\"],\"abstracts\":[\"To increase employee participation in training activities, the German government introduced a large-scale training voucher program in 2008 that reduces training fees by half. Based on a randomized field experiment, this paper analyzes whether providing information about the existence and the conditions of the training voucher had an effect on actual training activities of employees. Because the voucher was newly introduced, only one-fourth of the eligible employees knew the voucher exists at the time of the experiment. The information intervention informed a random sample of eligible employees by telephone about the program details and conditions. The results indicate that the information significantly increased treated individuals´ knowledge of the program but had no effect on voucher take-up or participation in training activities. Additional descriptive analyses suggest that the reasons for these zero effects are that the demand for self-financed training is low and that liquidity constraints do not discourage many employees from training participation.\"],\"language\":\"eng\",\"subjects\":[\"I22\",\"D83\",\"H52\",\"ddc:330\",\"training participation\",\"voucher\",\"financial aid\",\"randomized field experiment\",\"information treatment\"],\"creators\":[\"Görlitz, Katja\",\"Tamm, Marcus\"],\"publicationdate\":\"2016-01-01\",\"publisher\":\"Freie Universität Berlin Berlin\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[{\"value\":\"10.4419/86788712\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/130588\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.4419/86788712\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/130564\",\"id\":\"oai:econstor.eu:10419/130564\"},\"trust\":0.7056223}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/130588"},"target_publication_author_list":{"type":"LIST_STRING","value":["Görlitz, Katja","Tamm, Marcus"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/130564"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I22","D83","H52","ddc:330","training participation","voucher","financial aid","randomized field experiment","information treatment"]},"trust":{"type":"FLOAT","value":0.7056223},"target_publication_title":{"type":"STRING","value":"Information, financial aid and training participation: Evidence from a randomized field experiment"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2016-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/130588\",\"titles\":[\"Information, financial aid and training participation: Evidence from a randomized field experiment\"],\"abstracts\":[\"To increase employee participation in training activities, the German government introduced a large-scale training voucher program in 2008 that reduces training fees by half. Based on a randomized field experiment, this paper analyzes whether providing information about the existence and the conditions of the training voucher had an effect on actual training activities of employees. Because the voucher was newly introduced, only one-fourth of the eligible employees knew the voucher exists at the time of the experiment. The information intervention informed a random sample of eligible employees by telephone about the program details and conditions. The results indicate that the information significantly increased treated individuals´ knowledge of the program but had no effect on voucher take-up or participation in training activities. Additional descriptive analyses suggest that the reasons for these zero effects are that the demand for self-financed training is low and that liquidity constraints do not discourage many employees from training participation.\"],\"language\":\"eng\",\"subjects\":[\"I22\",\"D83\",\"H52\",\"ddc:330\",\"training participation\",\"voucher\",\"financial aid\",\"randomized field experiment\",\"information treatment\"],\"creators\":[\"Görlitz, Katja\",\"Tamm, Marcus\"],\"publicationdate\":\"2016-01-01\",\"publisher\":\"Freie Universität Berlin Berlin\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[{\"value\":\"10.4419/86788712\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/130588\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.4419/86788712\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/130564\",\"id\":\"oai:econstor.eu:10419/130564\"},\"trust\":0.7056223}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/130588"},"target_publication_author_list":{"type":"LIST_STRING","value":["Görlitz, Katja","Tamm, Marcus"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/130564"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I22","D83","H52","ddc:330","training participation","voucher","financial aid","randomized field experiment","information treatment"]},"trust":{"type":"FLOAT","value":0.7056223},"target_publication_title":{"type":"STRING","value":"Information, financial aid and training participation: Evidence from a randomized field experiment"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2016-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/130588\",\"titles\":[\"Information, financial aid and training participation: Evidence from a randomized field experiment\"],\"abstracts\":[\"To increase employee participation in training activities, the German government introduced a large-scale training voucher program in 2008 that reduces training fees by half. Based on a randomized field experiment, this paper analyzes whether providing information about the existence and the conditions of the training voucher had an effect on actual training activities of employees. Because the voucher was newly introduced, only one-fourth of the eligible employees knew the voucher exists at the time of the experiment. The information intervention informed a random sample of eligible employees by telephone about the program details and conditions. The results indicate that the information significantly increased treated individuals´ knowledge of the program but had no effect on voucher take-up or participation in training activities. Additional descriptive analyses suggest that the reasons for these zero effects are that the demand for self-financed training is low and that liquidity constraints do not discourage many employees from training participation.\"],\"language\":\"eng\",\"subjects\":[\"I22\",\"D83\",\"H52\",\"ddc:330\",\"training participation\",\"voucher\",\"financial aid\",\"randomized field experiment\",\"information treatment\"],\"creators\":[\"Görlitz, Katja\",\"Tamm, Marcus\"],\"publicationdate\":\"2016-01-01\",\"publisher\":\"Freie Universität Berlin Berlin\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/130588\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/130564\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/130564\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/130564\",\"id\":\"oai:econstor.eu:10419/130564\"},\"trust\":0.29691714}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/130588"},"target_publication_author_list":{"type":"LIST_STRING","value":["Görlitz, Katja","Tamm, Marcus"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/130564"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["I22","D83","H52","ddc:330","training participation","voucher","financial aid","randomized field experiment","information treatment"]},"trust":{"type":"FLOAT","value":0.29691714},"target_publication_title":{"type":"STRING","value":"Information, financial aid and training participation: Evidence from a randomized field experiment"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2016-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:depot.knaw.nl:14997\",\"titles\":[\"Weak phylogenetic signal in physiological traits of methane-oxidizing bacteria.\"],\"abstracts\":[\"The presence of phylogenetic signal is assumed to be ubiquitous. However, for microorganisms, this may not be true given that they display high physiological flexibility and have fast regeneration. This may result in fundamentally different patterns of resemblance, that is, in variable strength of phylogenetic signal. However, in microbiological inferences, trait similarities and therewith microbial interactions with its environment are mostly assumed to follow evolutionary relatedness. Here, we tested whether indeed a straightforward relationship between relatedness and physiological traits exists for aerobic methane-oxidizing bacteria (MOB). We generated a comprehensive data set that included 30 MOB strains with quantitative physiological trait information. Phylogenetic trees were built from the 16S rRNA gene, a common phylogenetic marker, and the pmoA gene which encodes a subunit of the key enzyme involved in the first step of methane oxidation. We used a Blomberg\\u0027s K from comparative biology to quantify the strength of phylogenetic signal of physiological traits. Phylogenetic signal was strongest for physiological traits associated with optimal growth pH and temperature indicating that adaptations to habitat are very strongly conserved in MOB. However, those physiological traits that are associated with kinetics of methane oxidation had only weak phylogenetic signals and were more pronounced with the pmoA than with the 16S rRNA gene phylogeny. In conclusion, our results give evidence that approaches based solely on taxonomical information will not yield further advancement on microbial eco-evolutionary interactions with its environment. This is a novel insight on the connection between function and phylogeny within microbes and adds new understanding on the evolution of physiological traits across microbes, plants and animals.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Krause, S.\",\"Bodegom, P. M.\",\"Cornwell, W. K.\",\"Bodelier, P. L. E.\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"KNAW Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://depot.knaw.nl/14997/\",\"license\":\"OPEN\",\"hostedby\":\"KNAW Repository\",\"instancetype\":\"Article\"},{\"url\":\"https://pure.knaw.nl/portal/en/publications/weak-phylogenetic-signal-in-physiological-traits-of-methaneoxidizing-bacteria(e48da510-729f-4804-be49-af4e0a531423).html\",\"license\":\"OPEN\",\"hostedby\":\"KNAW Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://pure.knaw.nl/portal/en/publications/weak-phylogenetic-signal-in-physiological-traits-of-methaneoxidizing-bacteria(e48da510-729f-4804-be49-af4e0a531423).html\",\"license\":\"OPEN\",\"hostedby\":\"KNAW Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"https://pure.knaw.nl/portal/en/publications/weak-phylogenetic-signal-in-physiological-traits-of-methaneoxidizing-bacteria(e48da510-729f-4804-be49-af4e0a531423).html\",\"id\":\"knaw:oai:pure.knaw.nl:publications/e48da510-729f-4804-be49-af4e0a531423\"},\"trust\":0.5277873}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"KNAW Repository"},"target_publication_id":{"type":"STRING","value":"oai:depot.knaw.nl:14997"},"target_publication_author_list":{"type":"LIST_STRING","value":["Krause, S.","Bodegom, P. M.","Cornwell, W. K.","Bodelier, P. L. E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["knaw:oai:pure.knaw.nl:publications/e48da510-729f-4804-be49-af4e0a531423"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.5277873},"target_publication_title":{"type":"STRING","value":"Weak phylogenetic signal in physiological traits of methane-oxidizing bacteria."},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::97275a23ca44226c9964043c8462be96"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1403746\",\"titles\":[\"Behavioral self-regulation for weight loss in young adults: a randomized controlled trial\"],\"abstracts\":[\"Objective To determine the feasibility of recruiting and retaining young adults in a brief behavioral weight loss intervention tailored for this age group, and to assess the preliminary efficacy of an intervention that emphasizes daily self-weighing within the context of a self-regulation model. Methods Forty young adults (29.1 ± 3.9 years, range 21–35, average BMI of 33.36 ± 3.4) were randomized to one of two brief behavioral weight loss interventions: behavioral self-regulation (BSR) or adapted standard behavioral treatment (SBT). Assessments were conducted at baseline, post-treatment (10 weeks), and follow-up (20 weeks). Intent to treat analyses were conducted using general linear modeling in SPSS version 14.0. Results Participants in both groups attended an average of 8.7 out of 10 group meetings, and retention rates were 93% and 88% for post-treatment and follow-up assessments, respectively. Both groups achieved significant weight losses at post-treatment (BSR \\u003d -6.4 kg (4.0); SBT \\u003d -6.2 kg (4.5) and follow-up (BSR \\u003d -6.6 kg (5.5); SBT \\u003d -5.8 kg (5.2), p \\u003c .001; but the interaction of group × time was not statistically significant, p \\u003d .84. Across groups, there was a positive association between frequency of weighing at follow-up and overall weight change at follow-up (p \\u003d .01). Daily weighing was not associated with any adverse changes in psychological symptoms. Conclusion Young adults can be recruited and retained in a behavioral weight loss program tailored to their needs, and significant weight losses can be achieved and maintained through this brief intervention. Future research on the longer-term efficacy of a self-regulation approach using daily self-weighing for weight loss in this age group is warranted. Clinical Trials Registration # NCT00488228\"],\"language\":\"eng\",\"subjects\":[\"Research\"],\"creators\":[\"Gokee-Larose, Jessica\",\"Gorin, Amy A.\",\"Wing, Rena R.\"],\"publicationdate\":\"2009-02-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"The International Journal of Behavioral Nutrition and Physical Activity\",\"issn\":\"\",\"eissn\":\"1479-5868\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1479-5868-6-10\",\"type\":\"doi\"},{\"value\":\"PMC2652418\",\"type\":\"pmc\"},{\"value\":\"19220909\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2652418\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.ijbnpa.org/content/6/1/10\",\"license\":\"OPEN\",\"hostedby\":\"International Journal of Behavioral Nutrition and Physical Activity\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ijbnpa.org/content/6/1/10\",\"license\":\"OPEN\",\"hostedby\":\"International Journal of Behavioral Nutrition and Physical Activity\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.ijbnpa.org/content/6/1/10\",\"id\":\"oai:doaj.org/article:2e93c23f7ebf4b0586af5973e5f79e4d\"},\"trust\":0.4574082}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1403746"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gokee-Larose, Jessica","Gorin, Amy A.","Wing, Rena R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:2e93c23f7ebf4b0586af5973e5f79e4d"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research"]},"trust":{"type":"FLOAT","value":0.4574082},"target_publication_title":{"type":"STRING","value":"Behavioral self-regulation for weight loss in young adults: a randomized controlled trial"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1103525\",\"titles\":[\"Transhepatic Venous Angioplasty and Stenting: A Treatment Option in Bleeding from Gastric Varices Secondary to Pancreatic Carcinoma\"],\"abstracts\":[\"We present a case of recurrent variceal bleeding due to subtotal occlusion of the splenoportal junction by a pancreatic carcinoma. This was effectively treated by transhepatic venous angioplasty and stenting.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Ferguson, J. M.\",\"Palmer, K. R.\",\"Garden, O. J.\",\"Redhead, D. N.\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"HPB Surgery\",\"issn\":\"0894-8569\",\"eissn\":\"1607-8462\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/1997/18272\",\"type\":\"doi\"},{\"value\":\"PMC2423848\",\"type\":\"pmc\"},{\"value\":\"9174864\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2423848\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/1997/18272\",\"license\":\"OPEN\",\"hostedby\":\"HPB Surgery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/1997/18272\",\"license\":\"OPEN\",\"hostedby\":\"HPB Surgery\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/1997/18272\",\"id\":\"oai:doaj.org/article:a6487c7e3a424977802b166831dac479\"},\"trust\":0.62015826}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1103525"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ferguson, J. M.","Palmer, K. R.","Garden, O. J.","Redhead, D. N."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:a6487c7e3a424977802b166831dac479"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.62015826},"target_publication_title":{"type":"STRING","value":"Transhepatic Venous Angioplasty and Stenting: A Treatment Option in Bleeding from Gastric Varices Secondary to Pancreatic Carcinoma"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1103525\",\"titles\":[\"Transhepatic Venous Angioplasty and Stenting: A Treatment Option in Bleeding from Gastric Varices Secondary to Pancreatic Carcinoma\"],\"abstracts\":[\"We present a case of recurrent variceal bleeding due to subtotal occlusion of the splenoportal junction by a pancreatic carcinoma. This was effectively treated by transhepatic venous angioplasty and stenting.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Ferguson, J. M.\",\"Palmer, K. R.\",\"Garden, O. J.\",\"Redhead, D. N.\"],\"publicationdate\":\"1997-01-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"HPB Surgery\",\"issn\":\"0894-8569\",\"eissn\":\"1607-8462\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/1997/18272\",\"type\":\"doi\"},{\"value\":\"PMC2423848\",\"type\":\"pmc\"},{\"value\":\"9174864\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2423848\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/1997/18272\",\"license\":\"OPEN\",\"hostedby\":\"HPB Surgery\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/1997/18272\",\"license\":\"OPEN\",\"hostedby\":\"HPB Surgery\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/1997/18272\",\"id\":\"oai:doaj.org/article:77780e7017564f088a8c84410ddfacc6\"},\"trust\":0.70185685}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1103525"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ferguson, J. M.","Palmer, K. R.","Garden, O. J.","Redhead, D. N."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:77780e7017564f088a8c84410ddfacc6"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.70185685},"target_publication_title":{"type":"STRING","value":"Transhepatic Venous Angioplasty and Stenting: A Treatment Option in Bleeding from Gastric Varices Secondary to Pancreatic Carcinoma"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:doc.utwente.nl:99526\",\"titles\":[\"Senior-Unternehmertum: Empirische Evidenz aus 27 europäischen Ländern\"],\"abstracts\":[\"Basierend auf den Daten des 2007 Flash Eurobarometer Survey on Entrepreneurship analysiert der Beitrag die Determinanten des unternehmerischen Potentials der älteren Bevölkerung Europas. Die Ergebnisse tragen zu einer empirisch fundierten öffentlichen Debatte über die Reichweite von Senior-Unternehmertum in Europa und Gestaltung von Gründungsförderung bei und bieten wertvolle Anknüpfungspunkte für Folgeforschung.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hatak, Isabella\",\"Kautonen, Teemu\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"Schäffer -Poeschel\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit Twente Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://purl.utwente.nl/publications/99526\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://purl.utwente.nl/publications/99526\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://purl.utwente.nl/publications/99526\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://purl.utwente.nl/publications/99526\",\"id\":\"ut:oai:doc.utwente.nl:99526\"},\"trust\":0.6005802}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit Twente Repository"},"target_publication_id":{"type":"STRING","value":"oai:doc.utwente.nl:99526"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hatak, Isabella","Kautonen, Teemu"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["ut:oai:doc.utwente.nl:99526"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.6005802},"target_publication_title":{"type":"STRING","value":"Senior-Unternehmertum: Empirische Evidenz aus 27 europäischen Ländern"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8dd48d6a2e2cad213179a3992c0be53c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:physics/0503112\",\"titles\":[\"Realizing a stable magnetic double-well potential on an atom chip\"],\"abstracts\":[\" We discuss design considerations and the realization of a magnetic\\ndouble-well potential on an atom chip using current-carrying wires. Stability\\nrequirements for the trapping potential lead to a typical size of order microns\\nfor such a device. We also present experiments using the device to manipulate\\ncold, trapped atoms.\\n\"],\"language\":\"eng\",\"subjects\":[\"Physics - Atomic Physics\",\"Condensed Matter - Other Condensed Matter\"],\"creators\":[\"Esteve, Jerome\",\"Schumm, Thorsten\",\"Trebbia, Jean-Baptiste\",\"Bouchoule, Isabelle\",\"Aspect, Alain\",\"Westbrook, Christopher\"],\"publicationdate\":\"2005-03-14\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1140/epjd/e2005-00190-9\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/physics/0503112\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00004460\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00004460\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00004460\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00004460\"},\"trust\":0.7314216}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:physics/0503112"},"target_publication_author_list":{"type":"LIST_STRING","value":["Esteve, Jerome","Schumm, Thorsten","Trebbia, Jean-Baptiste","Bouchoule, Isabelle","Aspect, Alain","Westbrook, Christopher"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00004460"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics - Atomic Physics","Condensed Matter - Other Condensed Matter"]},"trust":{"type":"FLOAT","value":0.7314216},"target_publication_title":{"type":"STRING","value":"Realizing a stable magnetic double-well potential on an atom chip"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-03-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:physics/0503112\",\"titles\":[\"Realizing a stable magnetic double-well potential on an atom chip\"],\"abstracts\":[\" We discuss design considerations and the realization of a magnetic\\ndouble-well potential on an atom chip using current-carrying wires. Stability\\nrequirements for the trapping potential lead to a typical size of order microns\\nfor such a device. We also present experiments using the device to manipulate\\ncold, trapped atoms.\\n\"],\"language\":\"eng\",\"subjects\":[\"Physics - Atomic Physics\",\"Condensed Matter - Other Condensed Matter\"],\"creators\":[\"Esteve, Jerome\",\"Schumm, Thorsten\",\"Trebbia, Jean-Baptiste\",\"Bouchoule, Isabelle\",\"Aspect, Alain\",\"Westbrook, Christopher\"],\"publicationdate\":\"2005-03-14\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1140/epjd/e2005-00190-9\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/physics/0503112\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00004460\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00004460\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00004460\",\"id\":\"oai:HAL:hal-00004460v1\"},\"trust\":0.28052235}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:physics/0503112"},"target_publication_author_list":{"type":"LIST_STRING","value":["Esteve, Jerome","Schumm, Thorsten","Trebbia, Jean-Baptiste","Bouchoule, Isabelle","Aspect, Alain","Westbrook, Christopher"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00004460v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics - Atomic Physics","Condensed Matter - Other Condensed Matter"]},"trust":{"type":"FLOAT","value":0.28052235},"target_publication_title":{"type":"STRING","value":"Realizing a stable magnetic double-well potential on an atom chip"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-03-14"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00004460\",\"titles\":[\"Realizing a stable magnetic double-well potential on an atom chip\"],\"abstracts\":[\"We discuss design considerations and the realization of a magnetic double-well potential on an atom chip using current-carrying wires. Stability requirements for the trapping potential lead to a typical size of order microns for such a device. We also present experiments using the device to manipulate cold, trapped atoms.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:PHYS:PHYS_ATOM-PH] Physics/Physics/Atomic Physics\",\"[PHYS:PHYS:PHYS_ATOM-PH] Physique/Physique/Physique Atomique\",\"[PHYS:COND:CM_GEN] Physics/Condensed Matter/Other\",\"[PHYS:COND:CM_GEN] Physique/Matière Condensée/Autre\"],\"creators\":[\"Estève, Jérôme\",\"Schumm, Thorsten\",\"Trebbia, Jean-Baptiste\",\"Bouchoule, Isabelle\",\"Aspect, Alain\",\"Westbrook, Christoph I.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1140/epjd/e2005-00190-9\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00004460\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/physics/0503112\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/physics/0503112\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/physics/0503112\",\"id\":\"oai:arXiv.org:physics/0503112\"},\"trust\":0.39570266}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00004460"},"target_publication_author_list":{"type":"LIST_STRING","value":["Estève, Jérôme","Schumm, Thorsten","Trebbia, Jean-Baptiste","Bouchoule, Isabelle","Aspect, Alain","Westbrook, Christoph I."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:physics/0503112"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:PHYS:PHYS_ATOM-PH] Physics/Physics/Atomic Physics","[PHYS:PHYS:PHYS_ATOM-PH] Physique/Physique/Physique Atomique","[PHYS:COND:CM_GEN] Physics/Condensed Matter/Other","[PHYS:COND:CM_GEN] Physique/Matière Condensée/Autre"]},"trust":{"type":"FLOAT","value":0.39570266},"target_publication_title":{"type":"STRING","value":"Realizing a stable magnetic double-well potential on an atom chip"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00004460\",\"titles\":[\"Realizing a stable magnetic double-well potential on an atom chip\"],\"abstracts\":[\"We discuss design considerations and the realization of a magnetic double-well potential on an atom chip using current-carrying wires. Stability requirements for the trapping potential lead to a typical size of order microns for such a device. We also present experiments using the device to manipulate cold, trapped atoms.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:PHYS:PHYS_ATOM-PH] Physics/Physics/Atomic Physics\",\"[PHYS:PHYS:PHYS_ATOM-PH] Physique/Physique/Physique Atomique\",\"[PHYS:COND:CM_GEN] Physics/Condensed Matter/Other\",\"[PHYS:COND:CM_GEN] Physique/Matière Condensée/Autre\"],\"creators\":[\"Estève, Jérôme\",\"Schumm, Thorsten\",\"Trebbia, Jean-Baptiste\",\"Bouchoule, Isabelle\",\"Aspect, Alain\",\"Westbrook, Christoph I.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1140/epjd/e2005-00190-9\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00004460\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00004460\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00004460\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00004460\",\"id\":\"oai:HAL:hal-00004460v1\"},\"trust\":0.3714136}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00004460"},"target_publication_author_list":{"type":"LIST_STRING","value":["Estève, Jérôme","Schumm, Thorsten","Trebbia, Jean-Baptiste","Bouchoule, Isabelle","Aspect, Alain","Westbrook, Christoph I."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00004460v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:PHYS:PHYS_ATOM-PH] Physics/Physics/Atomic Physics","[PHYS:PHYS:PHYS_ATOM-PH] Physique/Physique/Physique Atomique","[PHYS:COND:CM_GEN] Physics/Condensed Matter/Other","[PHYS:COND:CM_GEN] Physique/Matière Condensée/Autre"]},"trust":{"type":"FLOAT","value":0.3714136},"target_publication_title":{"type":"STRING","value":"Realizing a stable magnetic double-well potential on an atom chip"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00004460v1\",\"titles\":[\"Realizing a stable magnetic double-well potential on an atom chip\"],\"abstracts\":[\"International audience\",\"We discuss design considerations and the realization of a magnetic double-well potential on an atom chip using current-carrying wires. Stability requirements for the trapping potential lead to a typical size of order microns for such a device. We also present experiments using the device to manipulate cold, trapped atoms.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.PHYS.PHYS-ATOM-PH] Physics/Physics/Atomic Physics\",\"[PHYS.COND.CM-GEN] Physics/Condensed Matter/Other\"],\"creators\":[\"Estève, Jérôme\",\"Schumm, Thorsten\",\"Trebbia, Jean-Baptiste\",\"Bouchoule, Isabelle\",\"Aspect, Alain\",\"Westbrook, Christoph I.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"EDP Sciences: EPJ\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire Charles Fabry de l\\u0027Institut d\\u0027Optique (LCFIO) ; Institut d\\u0027Optique Graduate School (IOGS) - Université Paris XI - Paris Sud - CNRS\",\"lcf-oa ; Laboratoire Charles Fabry de l\\u0027Institut d\\u0027Optique (LCFIO) ; Institut d\\u0027Optique Graduate School (IOGS) - Université Paris XI - Paris Sud - CNRS - Institut d\\u0027Optique Graduate School (IOGS) - Université Paris XI - Paris Sud - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1140/epjd/e2005-00190-9\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00004460\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/physics/0503112\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/physics/0503112\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/physics/0503112\",\"id\":\"oai:arXiv.org:physics/0503112\"},\"trust\":0.030647993}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00004460v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Estève, Jérôme","Schumm, Thorsten","Trebbia, Jean-Baptiste","Bouchoule, Isabelle","Aspect, Alain","Westbrook, Christoph I."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:physics/0503112"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.PHYS.PHYS-ATOM-PH] Physics/Physics/Atomic Physics","[PHYS.COND.CM-GEN] Physics/Condensed Matter/Other"]},"trust":{"type":"FLOAT","value":0.030647993},"target_publication_title":{"type":"STRING","value":"Realizing a stable magnetic double-well potential on an atom chip"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00004460v1\",\"titles\":[\"Realizing a stable magnetic double-well potential on an atom chip\"],\"abstracts\":[\"International audience\",\"We discuss design considerations and the realization of a magnetic double-well potential on an atom chip using current-carrying wires. Stability requirements for the trapping potential lead to a typical size of order microns for such a device. We also present experiments using the device to manipulate cold, trapped atoms.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS.PHYS.PHYS-ATOM-PH] Physics/Physics/Atomic Physics\",\"[PHYS.COND.CM-GEN] Physics/Condensed Matter/Other\"],\"creators\":[\"Estève, Jérôme\",\"Schumm, Thorsten\",\"Trebbia, Jean-Baptiste\",\"Bouchoule, Isabelle\",\"Aspect, Alain\",\"Westbrook, Christoph I.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"EDP Sciences: EPJ\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire Charles Fabry de l\\u0027Institut d\\u0027Optique (LCFIO) ; Institut d\\u0027Optique Graduate School (IOGS) - Université Paris XI - Paris Sud - CNRS\",\"lcf-oa ; Laboratoire Charles Fabry de l\\u0027Institut d\\u0027Optique (LCFIO) ; Institut d\\u0027Optique Graduate School (IOGS) - Université Paris XI - Paris Sud - CNRS - Institut d\\u0027Optique Graduate School (IOGS) - Université Paris XI - Paris Sud - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1140/epjd/e2005-00190-9\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00004460\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00004460\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00004460\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00004460\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00004460\"},\"trust\":0.34014738}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00004460v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Estève, Jérôme","Schumm, Thorsten","Trebbia, Jean-Baptiste","Bouchoule, Isabelle","Aspect, Alain","Westbrook, Christoph I."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00004460"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS.PHYS.PHYS-ATOM-PH] Physics/Physics/Atomic Physics","[PHYS.COND.CM-GEN] Physics/Condensed Matter/Other"]},"trust":{"type":"FLOAT","value":0.34014738},"target_publication_title":{"type":"STRING","value":"Realizing a stable magnetic double-well potential on an atom chip"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:tel.archives-ouvertes.fr:tel-00008905\",\"titles\":[\"MODELISATIONS DE L\\u0027EMISSION NON-THERMIQUE DES BLAZARS DU TeV PAR UNE DISTRIBUTION RELATIVISTE QUASI-MAXWELLIENNE\"],\"abstracts\":[\"La compréhension des mécanismes d\\u0027émission et de variabilité au coeur des blazars émetteurs au TeV reste une question ouverte au sein de la communauté de l\\u0027astrophysique des hautes énergies. Le rayonnement extrême de ces objets permet de sonder les régions les plus proches du trou noir afin de poser des contraintes sur les mécanismes d\\u0027accélération des particules émissives. Nous considérons ici une distribution en énergie de ces particules sous la forme d\\u0027une quasi-maxwellienne relativiste. Ce type de distribution est justifié dans le cadre de l\\u0027accélération stochastique de particules de type interaction ondes MHD/plasmas. Ce manuscrit décrit la mise en oeuvre de cette distribution particulière dans le cadre de deux approches de modélisation différentes, la première dite homogène où la zone d\\u0027émission est supposée sphérique et la seconde dite inhomogène décrit le rayonnement d\\u0027un jet stratifié, et ce dans le cadre du « two-flow model ». Dans le deux cas, afin de rendre compte du caractère transitoire des périodes d\\u0027éruption, l\\u0027approche est menée de manière dépendante du temps et le processus de création de paires par photo-annihilation joue un rôle primordial. Nous avons de plus pris en compte l\\u0027atténuation du signal gamma par les photons du fond cosmique infrarouge lors de leur parcours vers l\\u0027observateur. Nous nous sommes de plus attaché à poser des contraintes sur la dynamique d\\u0027ensemble des jets à partir d\\u0027arguments statistiques simples ; nous avons mis en évidence pourquoi les modèles homogènes en général, ne sont pas appropriés pour la déduction des vitesses d\\u0027ensemble de ces sources bien qu\\u0027ils reproduisent remarquablement leurs caractéristiques spectrales.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDU:ASTR] Sciences of the Universe/Astrophysics\",\"[SDU:ASTR] Planète et Univers/Astrophysique\",\"[PHYS:ASTR:CO] Physics/Astrophysics/Cosmology and Extra-Galactic Astrophysics\",\"[PHYS:ASTR:CO] Physique/Astrophysique/Cosmologie et astrophysique extra-galactique\",\"Blazars–Modélisation\",\"Blazars–Variabilité\",\"Jets relativistes–Emission\",\"Jets relativistes–dynamique\",\"Emission non-thermique\",\"Processus d\\u0027accélération\",\"Fond Cosmique Infrarouge\"],\"creators\":[\"Saugé, Ludovic\"],\"publicationdate\":\"2004-12-06\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00008905\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"https://tel.archives-ouvertes.fr/tel-00008905\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://tel.archives-ouvertes.fr/tel-00008905\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://tel.archives-ouvertes.fr/tel-00008905\",\"id\":\"oai:HAL:tel-00008905v1\"},\"trust\":0.010101974}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:tel.archives-ouvertes.fr:tel-00008905"},"target_publication_author_list":{"type":"LIST_STRING","value":["Saugé, Ludovic"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:tel-00008905v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDU:ASTR] Sciences of the Universe/Astrophysics","[SDU:ASTR] Planète et Univers/Astrophysique","[PHYS:ASTR:CO] Physics/Astrophysics/Cosmology and Extra-Galactic Astrophysics","[PHYS:ASTR:CO] Physique/Astrophysique/Cosmologie et astrophysique extra-galactique","Blazars–Modélisation","Blazars–Variabilité","Jets relativistes–Emission","Jets relativistes–dynamique","Emission non-thermique","Processus d\u0027accélération","Fond Cosmique Infrarouge"]},"trust":{"type":"FLOAT","value":0.010101974},"target_publication_title":{"type":"STRING","value":"MODELISATIONS DE L\u0027EMISSION NON-THERMIQUE DES BLAZARS DU TeV PAR UNE DISTRIBUTION RELATIVISTE QUASI-MAXWELLIENNE"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-12-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:tel-00008905v1\",\"titles\":[\"MODELISATIONS DE L\\u0027EMISSION NON-THERMIQUE DES BLAZARS DU TeV PAR UNE DISTRIBUTION RELATIVISTE QUASI-MAXWELLIENNE\"],\"abstracts\":[\"The understanding of the emission and variability mechanisms of the TeV emitter Blazars still remains an open question among the high-energy astrophysics community. The extreme radiation arising from these objects allows us, on one hand to investigate the compact region closest to the central black hole and on in other hand to constrain acceleration mechanism of the emitting particles. We consider here the energy distribution function (EDF) of these particles as a relativistic quasi-maxwellian one. This kind of EDF is fully justified in the framework of the stochastic acceleration process, ensured here by plasma/MHD waves interaction. We describe in this work two different models using the particular pileup EDF ; the first one assumes a spherical emission zone (homogeneous approach or one-zone model), whereas in the secondone the emission is supposed to be produced by a stratified jet (inhomogeneous model). This latter approach is done under the « two-flow paradigm » framework. In both cases, in order to explain the complex temporal radiative behavior, the modeling is time dependent and supposes that the pair production process by gamma-gamma interaction plays a fundamental role. We also take into account the high-energy signal attenuation by the photons arising from the cosmic infrared background (CIB) radiation field. We also describe how we can put severe constrains on the jet dynamics using simple statistical arguments. Moreover we demonstrate why the homogeneous modeling does not explain satisfactorily the value of the bulk motion velocity although it remarkably describes the spectral features of the sources.\",\"La compréhension des mécanismes d\\u0027émission et de variabilité au coeur des blazars émetteurs au TeV reste une question ouverte au sein de la communauté de l\\u0027astrophysique des hautes énergies. Le rayonnement extrême de ces objets permet de sonder les régions les plus proches du trou noir afin de poser des contraintes sur les mécanismes d\\u0027accélération des particules émissives. Nous considérons ici une distribution en énergie de ces particules sous la forme d\\u0027une quasi-maxwellienne relativiste. Ce type de distribution est justifié dans le cadre de l\\u0027accélération stochastique de particules de type interaction ondes MHD/plasmas. Ce manuscrit décrit la mise en oeuvre de cette distribution particulière dans le cadre de deux approches de modélisation différentes, la première dite homogène où la zone d\\u0027émission est supposée sphérique et la seconde dite inhomogène décrit le rayonnement d\\u0027un jet stratifié, et ce dans le cadre du « two-flow model ». Dans le deux cas, afin de rendre compte du caractère transitoire des périodes d\\u0027éruption, l\\u0027approche est menée de manière dépendante du temps et le processus de création de paires par photo-annihilation joue un rôle primordial. Nous avons de plus pris en compte l\\u0027atténuation du signal gamma par les photons du fond cosmique infrarouge lors de leur parcours vers l\\u0027observateur. Nous nous sommes de plus attaché à poser des contraintes sur la dynamique d\\u0027ensemble des jets à partir d\\u0027arguments statistiques simples ; nous avons mis en évidence pourquoi les modèles homogènes en général, ne sont pas appropriés pour la déduction des vitesses d\\u0027ensemble de ces sources bien qu\\u0027ils reproduisent remarquablement leurs caractéristiques spectrales.\"],\"language\":\"fra/fre\",\"subjects\":[\"Processus d\\u0027accélération\",\"Emission non-thermique\",\"Jets relativistes–dynamique\",\"Jets relativistes–Emission\",\"Blazars–Variabilité\",\"Blazars–Modélisation\",\"Fond Cosmique Infrarouge\",\"[SDU.ASTR] Sciences of the Universe/Astrophysics\",\"[PHYS.ASTR.CO] Physics/Astrophysics/Cosmology and Extra-Galactic Astrophysics\"],\"creators\":[\"Saugé, Ludovic\"],\"publicationdate\":\"2004-12-06\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire d\\u0027Astrophysique de Grenoble (LAOG) ; INSU - OSUG - Université Joseph Fourier - Grenoble I - CNRS\",\"Université Joseph-Fourier - Grenoble I\",\"Henri Gilles(Gilles.Henri@obs.ujf-grenoble.fr)\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://tel.archives-ouvertes.fr/tel-00008905\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://tel.archives-ouvertes.fr/tel-00008905\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00008905\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://tel.archives-ouvertes.fr/tel-00008905\",\"id\":\"oai:tel.archives-ouvertes.fr:tel-00008905\"},\"trust\":0.44608033}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:tel-00008905v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Saugé, Ludovic"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:tel.archives-ouvertes.fr:tel-00008905"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Processus d\u0027accélération","Emission non-thermique","Jets relativistes–dynamique","Jets relativistes–Emission","Blazars–Variabilité","Blazars–Modélisation","Fond Cosmique Infrarouge","[SDU.ASTR] Sciences of the Universe/Astrophysics","[PHYS.ASTR.CO] Physics/Astrophysics/Cosmology and Extra-Galactic Astrophysics"]},"trust":{"type":"FLOAT","value":0.44608033},"target_publication_title":{"type":"STRING","value":"MODELISATIONS DE L\u0027EMISSION NON-THERMIQUE DES BLAZARS DU TeV PAR UNE DISTRIBUTION RELATIVISTE QUASI-MAXWELLIENNE"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-12-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:sammelpunkt.philo.at:114\",\"titles\":[\"Politics of form. Genealogy of a central thesis of modernity and history of its application\"],\"abstracts\":[\"The present project comprises two specific goals the first is to write a genealogy of the claim that the aesthetic trick of montage, alienation and parody has a political effect and to complete a history of the application of this \\\"thesis\\\" in the 20th century, with three social groups being selected for a detailed analysis: the Dadaist film and exhibition practices of the 1910s and 1920s; the Expanded-Cinema Movement of the 60s and 70s in Vienna; art collectives such as FIA, SKART, OTPOR, LedArt and Magnet in the territories of former Yugoslavia during the wars (1989-2000). The second objective is to explain the permanence of the appearance of these politically oriented avant-garde practices in the context of a history of the transformations of perception since the 19th century. The project thus explains the massive presence of avant-garde practices in the 20th century out of transformations of perception that accompanied new forms of commodity mis en scene, as well as new media technologies such as photography and film and new forms of communications, transport and production.\"],\"language\":\"und\",\"subjects\":[\"Graduiertenkonferenz: Narrationen im medialen Wandel\"],\"creators\":[\"Schober, Anna\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Elektronisch archivierte Theorie - Sammelpunkt\"],\"pids\":[],\"instances\":[{\"url\":\"http://sammelpunkt.philo.at:8080/114/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"http://sammelpunkt.philo.at:8080/17/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://sammelpunkt.philo.at:8080/17/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"url\":\"http://sammelpunkt.philo.at:8080/17/\",\"id\":\"oai:sammelpunkt.philo.at:17\"},\"trust\":0.03776127}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Elektronisch archivierte Theorie - Sammelpunkt"},"target_publication_id":{"type":"STRING","value":"oai:sammelpunkt.philo.at:114"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schober, Anna"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:sammelpunkt.philo.at:17"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6a9aeddfc689c1d0e3b9ccc3ab651bc5"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Graduiertenkonferenz: Narrationen im medialen Wandel"]},"trust":{"type":"FLOAT","value":0.03776127},"target_publication_title":{"type":"STRING","value":"Politics of form. Genealogy of a central thesis of modernity and history of its application"},"provenance_datasource_name":{"type":"STRING","value":"Elektronisch archivierte Theorie - Sammelpunkt"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6a9aeddfc689c1d0e3b9ccc3ab651bc5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:sammelpunkt.philo.at:114\",\"titles\":[\"Politics of form. Genealogy of a central thesis of modernity and history of its application\"],\"abstracts\":[\"The present project comprises two specific goals the first is to write a genealogy of the claim that the aesthetic trick of montage, alienation and parody has a political effect and to complete a history of the application of this \\\"thesis\\\" in the 20th century, with three social groups being selected for a detailed analysis: the Dadaist film and exhibition practices of the 1910s and 1920s; the Expanded-Cinema Movement of the 60s and 70s in Vienna; art collectives such as FIA, SKART, OTPOR, LedArt and Magnet in the territories of former Yugoslavia during the wars (1989-2000). The second objective is to explain the permanence of the appearance of these politically oriented avant-garde practices in the context of a history of the transformations of perception since the 19th century. The project thus explains the massive presence of avant-garde practices in the 20th century out of transformations of perception that accompanied new forms of commodity mis en scene, as well as new media technologies such as photography and film and new forms of communications, transport and production.\"],\"language\":\"und\",\"subjects\":[\"Graduiertenkonferenz: Narrationen im medialen Wandel\"],\"creators\":[\"Schober, Anna\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Elektronisch archivierte Theorie - Sammelpunkt\"],\"pids\":[],\"instances\":[{\"url\":\"http://sammelpunkt.philo.at:8080/114/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"http://sammelpunkt.philo.at:8080/145/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://sammelpunkt.philo.at:8080/145/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"url\":\"http://sammelpunkt.philo.at:8080/145/\",\"id\":\"oai:sammelpunkt.philo.at:145\"},\"trust\":0.8129471}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Elektronisch archivierte Theorie - Sammelpunkt"},"target_publication_id":{"type":"STRING","value":"oai:sammelpunkt.philo.at:114"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schober, Anna"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:sammelpunkt.philo.at:145"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6a9aeddfc689c1d0e3b9ccc3ab651bc5"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Graduiertenkonferenz: Narrationen im medialen Wandel"]},"trust":{"type":"FLOAT","value":0.8129471},"target_publication_title":{"type":"STRING","value":"Politics of form. Genealogy of a central thesis of modernity and history of its application"},"provenance_datasource_name":{"type":"STRING","value":"Elektronisch archivierte Theorie - Sammelpunkt"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6a9aeddfc689c1d0e3b9ccc3ab651bc5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:sammelpunkt.philo.at:17\",\"titles\":[\"Politics of form. Genealogy of a central thesis of modernity and history of its application\"],\"abstracts\":[\"The present project comprises two specific goals the first is to write a genealogy of the claim that the aesthetic trick of montage, alienation and parody has a political effect and to complete a history of the application of this \\\"thesis\\\" in the 20th century, with three social groups being selected for a detailed analysis: the Dadaist film and exhibition practices of the 1910s and 1920s; the Expanded-Cinema Movement of the 60s and 70s in Vienna; art collectives such as FIA, SKART, OTPOR, LedArt and Magnet in the territories of former Yugoslavia during the wars (1989-2000). The second objective is to explain the permanence of the appearance of these politically oriented avant-garde practices in the context of a history of the transformations of perception since the 19th century. The project thus explains the massive presence of avant-garde practices in the 20th century out of transformations of perception that accompanied new forms of commodity mis en scene, as well as new media technologies such as photography and film and new forms of communications, transport and production.\"],\"language\":\"und\",\"subjects\":[\"Graduiertenkonferenz: Narrationen im medialen Wandel\"],\"creators\":[\"Schober, Anna\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Elektronisch archivierte Theorie - Sammelpunkt\"],\"pids\":[],\"instances\":[{\"url\":\"http://sammelpunkt.philo.at:8080/17/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"http://sammelpunkt.philo.at:8080/114/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://sammelpunkt.philo.at:8080/114/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"url\":\"http://sammelpunkt.philo.at:8080/114/\",\"id\":\"oai:sammelpunkt.philo.at:114\"},\"trust\":0.96118456}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Elektronisch archivierte Theorie - Sammelpunkt"},"target_publication_id":{"type":"STRING","value":"oai:sammelpunkt.philo.at:17"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schober, Anna"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:sammelpunkt.philo.at:114"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6a9aeddfc689c1d0e3b9ccc3ab651bc5"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Graduiertenkonferenz: Narrationen im medialen Wandel"]},"trust":{"type":"FLOAT","value":0.96118456},"target_publication_title":{"type":"STRING","value":"Politics of form. Genealogy of a central thesis of modernity and history of its application"},"provenance_datasource_name":{"type":"STRING","value":"Elektronisch archivierte Theorie - Sammelpunkt"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6a9aeddfc689c1d0e3b9ccc3ab651bc5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:sammelpunkt.philo.at:17\",\"titles\":[\"Politics of form. Genealogy of a central thesis of modernity and history of its application\"],\"abstracts\":[\"The present project comprises two specific goals the first is to write a genealogy of the claim that the aesthetic trick of montage, alienation and parody has a political effect and to complete a history of the application of this \\\"thesis\\\" in the 20th century, with three social groups being selected for a detailed analysis: the Dadaist film and exhibition practices of the 1910s and 1920s; the Expanded-Cinema Movement of the 60s and 70s in Vienna; art collectives such as FIA, SKART, OTPOR, LedArt and Magnet in the territories of former Yugoslavia during the wars (1989-2000). The second objective is to explain the permanence of the appearance of these politically oriented avant-garde practices in the context of a history of the transformations of perception since the 19th century. The project thus explains the massive presence of avant-garde practices in the 20th century out of transformations of perception that accompanied new forms of commodity mis en scene, as well as new media technologies such as photography and film and new forms of communications, transport and production.\"],\"language\":\"und\",\"subjects\":[\"Graduiertenkonferenz: Narrationen im medialen Wandel\"],\"creators\":[\"Schober, Anna\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Elektronisch archivierte Theorie - Sammelpunkt\"],\"pids\":[],\"instances\":[{\"url\":\"http://sammelpunkt.philo.at:8080/17/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"http://sammelpunkt.philo.at:8080/145/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://sammelpunkt.philo.at:8080/145/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"url\":\"http://sammelpunkt.philo.at:8080/145/\",\"id\":\"oai:sammelpunkt.philo.at:145\"},\"trust\":0.4721241}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Elektronisch archivierte Theorie - Sammelpunkt"},"target_publication_id":{"type":"STRING","value":"oai:sammelpunkt.philo.at:17"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schober, Anna"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:sammelpunkt.philo.at:145"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6a9aeddfc689c1d0e3b9ccc3ab651bc5"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Graduiertenkonferenz: Narrationen im medialen Wandel"]},"trust":{"type":"FLOAT","value":0.4721241},"target_publication_title":{"type":"STRING","value":"Politics of form. Genealogy of a central thesis of modernity and history of its application"},"provenance_datasource_name":{"type":"STRING","value":"Elektronisch archivierte Theorie - Sammelpunkt"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6a9aeddfc689c1d0e3b9ccc3ab651bc5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:sammelpunkt.philo.at:145\",\"titles\":[\"Politics of form. Genealogy of a central thesis of modernity and history of its application\"],\"abstracts\":[\"\\n\\nThe present project comprises two specific goals the first is to write a genealogy of the claim that the aesthetic trick of montage, alienation and parody has a political effect and to complete a history of the application of this \\\"thesis\\\" in the 20th century, with three social groups being selected for a detailed analysis: the Dadaist film and exhibition practices of the 1910s and 1920s; the Expanded-Cinema Movement of the 60s and 70s in Vienna; art collectives such as FIA, SKART, OTPOR, LedArt and Magnet in the territories of former Yugoslavia during the wars (1989-2000). The second objective is to explain the permanence of the appearance of these politically oriented avant-garde practices in the context of a history of the transformations of perception since the 19th century. The project thus explains the massive presence of avant-garde practices in the 20th century out of transformations of perception that accompanied new forms of commodity mis en scene, as well as new media technologies such as photography and film and new forms of communications, transport and production.\"],\"language\":\"und\",\"subjects\":[\"Graduiertenkonferenz: Narrationen im medialen Wandel\"],\"creators\":[\"Schober, Anna\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Elektronisch archivierte Theorie - Sammelpunkt\"],\"pids\":[],\"instances\":[{\"url\":\"http://sammelpunkt.philo.at:8080/145/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"http://sammelpunkt.philo.at:8080/114/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://sammelpunkt.philo.at:8080/114/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"url\":\"http://sammelpunkt.philo.at:8080/114/\",\"id\":\"oai:sammelpunkt.philo.at:114\"},\"trust\":0.05063528}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Elektronisch archivierte Theorie - Sammelpunkt"},"target_publication_id":{"type":"STRING","value":"oai:sammelpunkt.philo.at:145"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schober, Anna"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:sammelpunkt.philo.at:114"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6a9aeddfc689c1d0e3b9ccc3ab651bc5"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Graduiertenkonferenz: Narrationen im medialen Wandel"]},"trust":{"type":"FLOAT","value":0.05063528},"target_publication_title":{"type":"STRING","value":"Politics of form. Genealogy of a central thesis of modernity and history of its application"},"provenance_datasource_name":{"type":"STRING","value":"Elektronisch archivierte Theorie - Sammelpunkt"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6a9aeddfc689c1d0e3b9ccc3ab651bc5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:sammelpunkt.philo.at:145\",\"titles\":[\"Politics of form. Genealogy of a central thesis of modernity and history of its application\"],\"abstracts\":[\"\\n\\nThe present project comprises two specific goals the first is to write a genealogy of the claim that the aesthetic trick of montage, alienation and parody has a political effect and to complete a history of the application of this \\\"thesis\\\" in the 20th century, with three social groups being selected for a detailed analysis: the Dadaist film and exhibition practices of the 1910s and 1920s; the Expanded-Cinema Movement of the 60s and 70s in Vienna; art collectives such as FIA, SKART, OTPOR, LedArt and Magnet in the territories of former Yugoslavia during the wars (1989-2000). The second objective is to explain the permanence of the appearance of these politically oriented avant-garde practices in the context of a history of the transformations of perception since the 19th century. The project thus explains the massive presence of avant-garde practices in the 20th century out of transformations of perception that accompanied new forms of commodity mis en scene, as well as new media technologies such as photography and film and new forms of communications, transport and production.\"],\"language\":\"und\",\"subjects\":[\"Graduiertenkonferenz: Narrationen im medialen Wandel\"],\"creators\":[\"Schober, Anna\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Elektronisch archivierte Theorie - Sammelpunkt\"],\"pids\":[],\"instances\":[{\"url\":\"http://sammelpunkt.philo.at:8080/145/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"http://sammelpunkt.philo.at:8080/17/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://sammelpunkt.philo.at:8080/17/\",\"license\":\"OPEN\",\"hostedby\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"Elektronisch archivierte Theorie - Sammelpunkt\",\"url\":\"http://sammelpunkt.philo.at:8080/17/\",\"id\":\"oai:sammelpunkt.philo.at:17\"},\"trust\":0.8029321}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Elektronisch archivierte Theorie - Sammelpunkt"},"target_publication_id":{"type":"STRING","value":"oai:sammelpunkt.philo.at:145"},"target_publication_author_list":{"type":"LIST_STRING","value":["Schober, Anna"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:sammelpunkt.philo.at:17"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6a9aeddfc689c1d0e3b9ccc3ab651bc5"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Graduiertenkonferenz: Narrationen im medialen Wandel"]},"trust":{"type":"FLOAT","value":0.8029321},"target_publication_title":{"type":"STRING","value":"Politics of form. Genealogy of a central thesis of modernity and history of its application"},"provenance_datasource_name":{"type":"STRING","value":"Elektronisch archivierte Theorie - Sammelpunkt"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6a9aeddfc689c1d0e3b9ccc3ab651bc5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:tur:wpapnw:011\",\"titles\":[\"Determinants of US financial fragility conditions\"],\"abstracts\":[\"The recent financial crisis has highlighted the fragility of the US (and other countries\\u0027) financial system under several respects. In this paper, the properties of a summary index of financial fragility, obtained by combining information conveyed by the \\\"Agency\\\", \\\"Ted\\\" and \\\"BAA-AAA\\\" spreads, timely capturing changes in credit and liquidity risk, distress in the mortgage market, and corporate default risk, are investigated over the 1986-2010 period. The empirical results show that observed fluctuations in the financial fragility index can be attributed to identified (global and domestic) macroeconomic (20%) and financial disturbances (40% to 50%), over both short- and long-term horizons, as well as to oil-supply shocks in the long-term (25%). The investigation of specific episodes of financial distress, occurred in 1987, 1998 and 2000, and, more recently, over the 2007-2009 period, shows that sizable fluctuations in the index are largely determined by financial shocks, while macroeconomic disturbances have generally had a stabilizing effect.\"],\"language\":\"und\",\"subjects\":[\"financial fragility, US, macro-finance interface, international business cycle, factor vector autoregressive models, financial crisis, Great Recession\"],\"creators\":[\"Bagliano, Fabio C.\",\"Claudio Morana\"],\"publicationdate\":\"2012-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://dipeco.economia.unimib.it/repec/pdf/mibwpaper224.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dipeco.economia.unimib.it/repec/pdf/mibwpaper224.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dipeco.economia.unimib.it/repec/pdf/mibwpaper224.pdf\",\"id\":\"oai:RePEc:mib:wpaper:224\"},\"trust\":0.7529201}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:tur:wpapnw:011"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bagliano, Fabio C.","Claudio Morana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:mib:wpaper:224"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["financial fragility, US, macro-finance interface, international business cycle, factor vector autoregressive models, financial crisis, Great Recession"]},"trust":{"type":"FLOAT","value":0.7529201},"target_publication_title":{"type":"STRING","value":"Determinants of US financial fragility conditions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:tur:wpapnw:011\",\"titles\":[\"Determinants of US financial fragility conditions\"],\"abstracts\":[\"The recent financial crisis has highlighted the fragility of the US (and other countries\\u0027) financial system under several respects. In this paper, the properties of a summary index of financial fragility, obtained by combining information conveyed by the \\\"Agency\\\", \\\"Ted\\\" and \\\"BAA-AAA\\\" spreads, timely capturing changes in credit and liquidity risk, distress in the mortgage market, and corporate default risk, are investigated over the 1986-2010 period. The empirical results show that observed fluctuations in the financial fragility index can be attributed to identified (global and domestic) macroeconomic (20%) and financial disturbances (40% to 50%), over both short- and long-term horizons, as well as to oil-supply shocks in the long-term (25%). The investigation of specific episodes of financial distress, occurred in 1987, 1998 and 2000, and, more recently, over the 2007-2009 period, shows that sizable fluctuations in the index are largely determined by financial shocks, while macroeconomic disturbances have generally had a stabilizing effect.\"],\"language\":\"und\",\"subjects\":[\"financial fragility, US, macro-finance interface, international business cycle, factor vector autoregressive models, financial crisis, Great Recession\"],\"creators\":[\"Bagliano, Fabio C.\",\"Claudio Morana\"],\"publicationdate\":\"2012-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.cerp.carloalberto.org/it/pubblicazioni/working-papers/860-determinants-of-us-nancial-fragility-conditions\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cerp.carloalberto.org/it/pubblicazioni/working-papers/860-determinants-of-us-nancial-fragility-conditions\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cerp.carloalberto.org/it/pubblicazioni/working-papers/860-determinants-of-us-nancial-fragility-conditions\",\"id\":\"oai:RePEc:crp:wpaper:128\"},\"trust\":0.6911741}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:tur:wpapnw:011"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bagliano, Fabio C.","Claudio Morana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:crp:wpaper:128"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["financial fragility, US, macro-finance interface, international business cycle, factor vector autoregressive models, financial crisis, Great Recession"]},"trust":{"type":"FLOAT","value":0.6911741},"target_publication_title":{"type":"STRING","value":"Determinants of US financial fragility conditions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:tur:wpapnw:011\",\"titles\":[\"Determinants of US financial fragility conditions\"],\"abstracts\":[\"The recent financial crisis has highlighted the fragility of the US (and other countries\\u0027) financial system under several respects. In this paper, the properties of a summary index of financial fragility, obtained by combining information conveyed by the \\\"Agency\\\", \\\"Ted\\\" and \\\"BAA-AAA\\\" spreads, timely capturing changes in credit and liquidity risk, distress in the mortgage market, and corporate default risk, are investigated over the 1986-2010 period. The empirical results show that observed fluctuations in the financial fragility index can be attributed to identified (global and domestic) macroeconomic (20%) and financial disturbances (40% to 50%), over both short- and long-term horizons, as well as to oil-supply shocks in the long-term (25%). The investigation of specific episodes of financial distress, occurred in 1987, 1998 and 2000, and, more recently, over the 2007-2009 period, shows that sizable fluctuations in the index are largely determined by financial shocks, while macroeconomic disturbances have generally had a stabilizing effect.\"],\"language\":\"und\",\"subjects\":[\"financial fragility, US, macro-finance interface, international business cycle, factor vector autoregressive models, financial crisis, Great Recession\"],\"creators\":[\"Bagliano, Fabio C.\",\"Claudio Morana\"],\"publicationdate\":\"2012-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"id\":\"oai:RePEc:tur:wpapnw:11\"},\"trust\":0.9040179}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:tur:wpapnw:011"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bagliano, Fabio C.","Claudio Morana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:tur:wpapnw:11"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["financial fragility, US, macro-finance interface, international business cycle, factor vector autoregressive models, financial crisis, Great Recession"]},"trust":{"type":"FLOAT","value":0.9040179},"target_publication_title":{"type":"STRING","value":"Determinants of US financial fragility conditions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:mib:wpaper:224\",\"titles\":[\"Determinants of US Financial fragility conditions\"],\"abstracts\":[\"The recent financial crisis has highlighted the fragility of the US financial system under several respects. In this paper, the properties of a summary index of financial fragility, timely capturing changes in credit and liquidity risk, distress in the mortgage market, and corporate default risk, is investigated over the 1986-2010 period. We find that observed fluctuations in the financial fragility index can be attributed to identified (global and domestic) macroeconomic (20%) and financial disturbances (40% to 50%), over both short- and long-term horizons, as well as to oil-supply shocks in the long-term (25%). Over-all, differently from financial shocks, macroeconomic disturbances have generally had a stabilizing effect.\"],\"language\":\"und\",\"subjects\":[\"inancial fragility, US, macro-finance interface, international business cycle, factor vector autoregressive models, financial crisis, Great Recession\"],\"creators\":[\"Bagliano, Fabio C.\",\"Claudio Morana\"],\"publicationdate\":\"2013-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://dipeco.economia.unimib.it/repec/pdf/mibwpaper224.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"id\":\"oai:RePEc:tur:wpapnw:011\"},\"trust\":0.028865159}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:mib:wpaper:224"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bagliano, Fabio C.","Claudio Morana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:tur:wpapnw:011"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["inancial fragility, US, macro-finance interface, international business cycle, factor vector autoregressive models, financial crisis, Great Recession"]},"trust":{"type":"FLOAT","value":0.028865159},"target_publication_title":{"type":"STRING","value":"Determinants of US Financial fragility conditions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:mib:wpaper:224\",\"titles\":[\"Determinants of US Financial fragility conditions\"],\"abstracts\":[\"The recent financial crisis has highlighted the fragility of the US financial system under several respects. In this paper, the properties of a summary index of financial fragility, timely capturing changes in credit and liquidity risk, distress in the mortgage market, and corporate default risk, is investigated over the 1986-2010 period. We find that observed fluctuations in the financial fragility index can be attributed to identified (global and domestic) macroeconomic (20%) and financial disturbances (40% to 50%), over both short- and long-term horizons, as well as to oil-supply shocks in the long-term (25%). Over-all, differently from financial shocks, macroeconomic disturbances have generally had a stabilizing effect.\"],\"language\":\"und\",\"subjects\":[\"inancial fragility, US, macro-finance interface, international business cycle, factor vector autoregressive models, financial crisis, Great Recession\"],\"creators\":[\"Bagliano, Fabio C.\",\"Claudio Morana\"],\"publicationdate\":\"2013-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://dipeco.economia.unimib.it/repec/pdf/mibwpaper224.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.cerp.carloalberto.org/it/pubblicazioni/working-papers/860-determinants-of-us-nancial-fragility-conditions\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cerp.carloalberto.org/it/pubblicazioni/working-papers/860-determinants-of-us-nancial-fragility-conditions\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cerp.carloalberto.org/it/pubblicazioni/working-papers/860-determinants-of-us-nancial-fragility-conditions\",\"id\":\"oai:RePEc:crp:wpaper:128\"},\"trust\":0.2641784}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:mib:wpaper:224"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bagliano, Fabio C.","Claudio Morana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:crp:wpaper:128"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["inancial fragility, US, macro-finance interface, international business cycle, factor vector autoregressive models, financial crisis, Great Recession"]},"trust":{"type":"FLOAT","value":0.2641784},"target_publication_title":{"type":"STRING","value":"Determinants of US Financial fragility conditions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:mib:wpaper:224\",\"titles\":[\"Determinants of US Financial fragility conditions\"],\"abstracts\":[\"The recent financial crisis has highlighted the fragility of the US financial system under several respects. In this paper, the properties of a summary index of financial fragility, timely capturing changes in credit and liquidity risk, distress in the mortgage market, and corporate default risk, is investigated over the 1986-2010 period. We find that observed fluctuations in the financial fragility index can be attributed to identified (global and domestic) macroeconomic (20%) and financial disturbances (40% to 50%), over both short- and long-term horizons, as well as to oil-supply shocks in the long-term (25%). Over-all, differently from financial shocks, macroeconomic disturbances have generally had a stabilizing effect.\"],\"language\":\"und\",\"subjects\":[\"inancial fragility, US, macro-finance interface, international business cycle, factor vector autoregressive models, financial crisis, Great Recession\"],\"creators\":[\"Bagliano, Fabio C.\",\"Claudio Morana\"],\"publicationdate\":\"2013-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://dipeco.economia.unimib.it/repec/pdf/mibwpaper224.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"id\":\"oai:RePEc:tur:wpapnw:11\"},\"trust\":0.8861162}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:mib:wpaper:224"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bagliano, Fabio C.","Claudio Morana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:tur:wpapnw:11"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["inancial fragility, US, macro-finance interface, international business cycle, factor vector autoregressive models, financial crisis, Great Recession"]},"trust":{"type":"FLOAT","value":0.8861162},"target_publication_title":{"type":"STRING","value":"Determinants of US Financial fragility conditions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2013-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:crp:wpaper:128\",\"titles\":[\"Determinants of US …financial fragility conditions\"],\"abstracts\":[\"The recent financial crisis has highlighted the fragility of the US (and other countries\\u0027) financial system under several respects. In this paper, the properties of a summary index of financial fragility, obtained by combining information conveyed by the \\\"Agency\\\", \\\"Ted\\\" and \\\"BAA-AAA\\\" spreads, timely capturing changes in credit and liquidity risk, distress in the mortgage market, and corporate default risk, are investigated over the 1986-2010 period. The empirical results show that observed fluctuations in the financial fragility index can be attributed to identified (global and domestic) macroeconomic (20%) and financial disturbances (40% to 50%), over both short- and long-term horizons, as well as to oil-supply shocks in the long-term (25%). The investigation of specific episodes of financial distress, occurred in 1987, 1998 and 2000, and, more recently, over the 2007-2009 period, shows that sizable fluctuations in the index are largely determined by financial shocks, while macroeconomic disturbances have generally had a stabilizing effect.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Fabio Bagliano\",\"Claudio Morana\"],\"publicationdate\":\"2012-10-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cerp.carloalberto.org/it/pubblicazioni/working-papers/860-determinants-of-us-nancial-fragility-conditions\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"id\":\"oai:RePEc:tur:wpapnw:011\"},\"trust\":0.025298893}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:crp:wpaper:128"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fabio Bagliano","Claudio Morana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:tur:wpapnw:011"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.025298893},"target_publication_title":{"type":"STRING","value":"Determinants of US …financial fragility conditions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:crp:wpaper:128\",\"titles\":[\"Determinants of US …financial fragility conditions\"],\"abstracts\":[\"The recent financial crisis has highlighted the fragility of the US (and other countries\\u0027) financial system under several respects. In this paper, the properties of a summary index of financial fragility, obtained by combining information conveyed by the \\\"Agency\\\", \\\"Ted\\\" and \\\"BAA-AAA\\\" spreads, timely capturing changes in credit and liquidity risk, distress in the mortgage market, and corporate default risk, are investigated over the 1986-2010 period. The empirical results show that observed fluctuations in the financial fragility index can be attributed to identified (global and domestic) macroeconomic (20%) and financial disturbances (40% to 50%), over both short- and long-term horizons, as well as to oil-supply shocks in the long-term (25%). The investigation of specific episodes of financial distress, occurred in 1987, 1998 and 2000, and, more recently, over the 2007-2009 period, shows that sizable fluctuations in the index are largely determined by financial shocks, while macroeconomic disturbances have generally had a stabilizing effect.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Fabio Bagliano\",\"Claudio Morana\"],\"publicationdate\":\"2012-10-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cerp.carloalberto.org/it/pubblicazioni/working-papers/860-determinants-of-us-nancial-fragility-conditions\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://dipeco.economia.unimib.it/repec/pdf/mibwpaper224.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dipeco.economia.unimib.it/repec/pdf/mibwpaper224.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dipeco.economia.unimib.it/repec/pdf/mibwpaper224.pdf\",\"id\":\"oai:RePEc:mib:wpaper:224\"},\"trust\":0.80039346}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:crp:wpaper:128"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fabio Bagliano","Claudio Morana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:mib:wpaper:224"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.80039346},"target_publication_title":{"type":"STRING","value":"Determinants of US …financial fragility conditions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:crp:wpaper:128\",\"titles\":[\"Determinants of US …financial fragility conditions\"],\"abstracts\":[\"The recent financial crisis has highlighted the fragility of the US (and other countries\\u0027) financial system under several respects. In this paper, the properties of a summary index of financial fragility, obtained by combining information conveyed by the \\\"Agency\\\", \\\"Ted\\\" and \\\"BAA-AAA\\\" spreads, timely capturing changes in credit and liquidity risk, distress in the mortgage market, and corporate default risk, are investigated over the 1986-2010 period. The empirical results show that observed fluctuations in the financial fragility index can be attributed to identified (global and domestic) macroeconomic (20%) and financial disturbances (40% to 50%), over both short- and long-term horizons, as well as to oil-supply shocks in the long-term (25%). The investigation of specific episodes of financial distress, occurred in 1987, 1998 and 2000, and, more recently, over the 2007-2009 period, shows that sizable fluctuations in the index are largely determined by financial shocks, while macroeconomic disturbances have generally had a stabilizing effect.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Fabio Bagliano\",\"Claudio Morana\"],\"publicationdate\":\"2012-10-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.cerp.carloalberto.org/it/pubblicazioni/working-papers/860-determinants-of-us-nancial-fragility-conditions\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"id\":\"oai:RePEc:tur:wpapnw:11\"},\"trust\":0.63277555}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:crp:wpaper:128"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fabio Bagliano","Claudio Morana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:tur:wpapnw:11"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.63277555},"target_publication_title":{"type":"STRING","value":"Determinants of US …financial fragility conditions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:tur:wpapnw:11\",\"titles\":[\"Determinants of US financial fragility conditions\"],\"abstracts\":[\"The recent financial crisis has highlighted the fragility of the US (and other countries\\u0027) financial system under several respects. In this paper, the properties of a summary index of financial fragility, obtained by combining information conveyed by the \\\"Agency\\\", \\\"Ted\\\" and \\\"BAA-AAA\\\" spreads, timely capturing changes in credit and liquidity risk, distress in the mortgage market, and corporate default risk, are investigated over the 1986-2010 period. The empirical results show that observed fluctuations in the financial fragility index can be attributed to identified (global and domestic) macroeconomic (20%) and financial disturbances (40% to 50%), over both short- and long-term horizons, as well as to oil-supply shocks in the long-term (25%). The investigation of specific episodes of financial distress, occurred in 1987, 1998 and 2000, and, more recently, over the 2007-2009 period, shows that sizable fluctuations in the index are largely determined by financial shocks, while macroeconomic disturbances have generally had a stabilizing effect.\"],\"language\":\"und\",\"subjects\":[\"financial fragility, US, macro-?nance interface, international business cycle, factor vector autoregressive models, ?financial crisis, Great Recession\"],\"creators\":[\"Bagliano, Fabio C.\",\"Claudio Morana\"],\"publicationdate\":\"2012-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"id\":\"oai:RePEc:tur:wpapnw:011\"},\"trust\":0.14888197}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:tur:wpapnw:11"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bagliano, Fabio C.","Claudio Morana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:tur:wpapnw:011"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["financial fragility, US, macro-?nance interface, international business cycle, factor vector autoregressive models, ?financial crisis, Great Recession"]},"trust":{"type":"FLOAT","value":0.14888197},"target_publication_title":{"type":"STRING","value":"Determinants of US financial fragility conditions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:tur:wpapnw:11\",\"titles\":[\"Determinants of US financial fragility conditions\"],\"abstracts\":[\"The recent financial crisis has highlighted the fragility of the US (and other countries\\u0027) financial system under several respects. In this paper, the properties of a summary index of financial fragility, obtained by combining information conveyed by the \\\"Agency\\\", \\\"Ted\\\" and \\\"BAA-AAA\\\" spreads, timely capturing changes in credit and liquidity risk, distress in the mortgage market, and corporate default risk, are investigated over the 1986-2010 period. The empirical results show that observed fluctuations in the financial fragility index can be attributed to identified (global and domestic) macroeconomic (20%) and financial disturbances (40% to 50%), over both short- and long-term horizons, as well as to oil-supply shocks in the long-term (25%). The investigation of specific episodes of financial distress, occurred in 1987, 1998 and 2000, and, more recently, over the 2007-2009 period, shows that sizable fluctuations in the index are largely determined by financial shocks, while macroeconomic disturbances have generally had a stabilizing effect.\"],\"language\":\"und\",\"subjects\":[\"financial fragility, US, macro-?nance interface, international business cycle, factor vector autoregressive models, ?financial crisis, Great Recession\"],\"creators\":[\"Bagliano, Fabio C.\",\"Claudio Morana\"],\"publicationdate\":\"2012-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://dipeco.economia.unimib.it/repec/pdf/mibwpaper224.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dipeco.economia.unimib.it/repec/pdf/mibwpaper224.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://dipeco.economia.unimib.it/repec/pdf/mibwpaper224.pdf\",\"id\":\"oai:RePEc:mib:wpaper:224\"},\"trust\":0.8626534}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:tur:wpapnw:11"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bagliano, Fabio C.","Claudio Morana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:mib:wpaper:224"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["financial fragility, US, macro-?nance interface, international business cycle, factor vector autoregressive models, ?financial crisis, Great Recession"]},"trust":{"type":"FLOAT","value":0.8626534},"target_publication_title":{"type":"STRING","value":"Determinants of US financial fragility conditions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:tur:wpapnw:11\",\"titles\":[\"Determinants of US financial fragility conditions\"],\"abstracts\":[\"The recent financial crisis has highlighted the fragility of the US (and other countries\\u0027) financial system under several respects. In this paper, the properties of a summary index of financial fragility, obtained by combining information conveyed by the \\\"Agency\\\", \\\"Ted\\\" and \\\"BAA-AAA\\\" spreads, timely capturing changes in credit and liquidity risk, distress in the mortgage market, and corporate default risk, are investigated over the 1986-2010 period. The empirical results show that observed fluctuations in the financial fragility index can be attributed to identified (global and domestic) macroeconomic (20%) and financial disturbances (40% to 50%), over both short- and long-term horizons, as well as to oil-supply shocks in the long-term (25%). The investigation of specific episodes of financial distress, occurred in 1987, 1998 and 2000, and, more recently, over the 2007-2009 period, shows that sizable fluctuations in the index are largely determined by financial shocks, while macroeconomic disturbances have generally had a stabilizing effect.\"],\"language\":\"und\",\"subjects\":[\"financial fragility, US, macro-?nance interface, international business cycle, factor vector autoregressive models, ?financial crisis, Great Recession\"],\"creators\":[\"Bagliano, Fabio C.\",\"Claudio Morana\"],\"publicationdate\":\"2012-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://eco83.econ.unito.it/RePEc/wp/m11.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.cerp.carloalberto.org/it/pubblicazioni/working-papers/860-determinants-of-us-nancial-fragility-conditions\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.cerp.carloalberto.org/it/pubblicazioni/working-papers/860-determinants-of-us-nancial-fragility-conditions\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.cerp.carloalberto.org/it/pubblicazioni/working-papers/860-determinants-of-us-nancial-fragility-conditions\",\"id\":\"oai:RePEc:crp:wpaper:128\"},\"trust\":0.49643958}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:tur:wpapnw:11"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bagliano, Fabio C.","Claudio Morana"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:crp:wpaper:128"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["financial fragility, US, macro-?nance interface, international business cycle, factor vector autoregressive models, ?financial crisis, Great Recession"]},"trust":{"type":"FLOAT","value":0.49643958},"target_publication_title":{"type":"STRING","value":"Determinants of US financial fragility conditions"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2012-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2305789\",\"titles\":[\"Visual performance in cataract patients with low levels of postoperative astigmatism: full correction versus spherical equivalent correction\"],\"abstracts\":[\"Purpose To evaluate whether visual performance could be improved in pseudophakic subjects by correcting low levels of postoperative astigmatism. Methods An exploratory, noninterventional study was conducted using subjects who had been implanted with an aspheric intraocular lens and had 0.5–0.75 diopter postoperative astigmatism. Monocular visual performance using full correction was compared with visual performance using spherical equivalent correction. Testing consisted of high- and low-contrast visual acuity, contrast sensitivity, and reading acuity and speed using the Radner Reading Charts. Results Thirty-eight of 40 subjects completed testing. Visual acuities at three contrast levels (100%, 25%, and 9%) were significantly better using full correction than when using spherical equivalent correction (all P \\u003c 0.001). For contrast sensitivity testing under photopic, mesopic, and mesopic with glare conditions, only one out of twelve outcomes demonstrated a significant improvement with full correction compared with spherical equivalent correction (at six cycles per degree under mesopic without glare conditions, P \\u003d 0.046). Mean reading speed was numerically faster with full correction across all print sizes, reaching statistical significance at logarithm of the reading acuity determination (logRAD) 0.2, 0.7, and 1.1 (P \\u003c 0.05). Statistically significant differences also favored full correction in logRAD score (P \\u003d 0.0376), corrected maximum reading speed (P \\u003c 0.001), and logarithm of the minimum angle of resolution/logRAD ratio (P \\u003c 0.001). Conclusions In this study of pseudophakic subjects with low levels of postoperative astigmatism, full correction yielded significantly better reading performance and high- and low-contrast visual acuity than spherical equivalent correction, suggesting that cataractous patients may benefit from surgical correction of low levels of preoperative corneal astigmatism.\"],\"language\":\"eng\",\"subjects\":[\"Original Research\",\"aspheric intraocular lens\",\"astigmatism\",\"cataract surgery\",\"contrast sensitivity\",\"reading acuity\",\"visual acuity\"],\"creators\":[\"Lehmann, Robert P.\",\"Houtman, Diane M.\"],\"publicationdate\":\"2012-03-01\",\"publisher\":\"Dove Medical Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Clinical Ophthalmology (Auckland, N.Z.)\",\"issn\":\"1177-5467\",\"eissn\":\"1177-5483\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.2147/OPTH.S28241\",\"type\":\"doi\"},{\"value\":\"PMC3295631\",\"type\":\"pmc\"},{\"value\":\"22399846\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3295631\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.dovepress.com/visual-performance-in-cataract-patients-with-low-levels-of-postoperati-a9393\",\"license\":\"OPEN\",\"hostedby\":\"Clinical Ophthalmology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.dovepress.com/visual-performance-in-cataract-patients-with-low-levels-of-postoperati-a9393\",\"license\":\"OPEN\",\"hostedby\":\"Clinical Ophthalmology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.dovepress.com/visual-performance-in-cataract-patients-with-low-levels-of-postoperati-a9393\",\"id\":\"oai:doaj.org/article:0fd19960a0af4321b70b921dfe04c020\"},\"trust\":0.59978527}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2305789"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lehmann, Robert P.","Houtman, Diane M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:0fd19960a0af4321b70b921dfe04c020"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Research","aspheric intraocular lens","astigmatism","cataract surgery","contrast sensitivity","reading acuity","visual acuity"]},"trust":{"type":"FLOAT","value":0.59978527},"target_publication_title":{"type":"STRING","value":"Visual performance in cataract patients with low levels of postoperative astigmatism: full correction versus spherical equivalent correction"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-03-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ecm:wc2000:1330\",\"titles\":[\"Belief-Based Equilibria in the Repeated Prisoners\\u0027 Dilemma with Private Monitoring\"],\"abstracts\":[\"We analyze the infinitely repeated prisoners\\u0027 dilemma with imperfect private monitoring and discounting. The main contribution of this paper is to construct ``belief-based\\u0027\\u0027 strategies, where a player\\u0027s continuation strategy is a function only of his beliefs. This simplifies the analysis considerably, and allows us to explicitly construct sequential equilibria for such games, thus enabling us to invoke the one-step deviation principle of dynamic programming. By doing so, we prove that one can approximate the efficient payoff in any prisoners\\u0027 dilemma game provided that the monitoring is sufficiently accurate. Furthermore, for a class of prisoners\\u0027 dilemma games, one can approximate every individually rational feasible payoff. These results require that monitoring be sufficiently accurate, but only require a uniform lower bound on the discount rate.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bhaskar, V.\",\"Ichiro Obara\"],\"publicationdate\":\"2000-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://fmwww.bc.edu/RePEc/es2000/1330.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.econ.upenn.edu/Centers/CARESS/CARESSpdf/00-16.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.econ.upenn.edu/Centers/CARESS/CARESSpdf/00-16.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.econ.upenn.edu/Centers/CARESS/CARESSpdf/00-16.pdf\",\"id\":\"oai:RePEc:cla:penntw:d93eb6f40c65728f9e1a7b11423f1641\"},\"trust\":0.1446364}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ecm:wc2000:1330"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bhaskar, V.","Ichiro Obara"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:cla:penntw:d93eb6f40c65728f9e1a7b11423f1641"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.1446364},"target_publication_title":{"type":"STRING","value":"Belief-Based Equilibria in the Repeated Prisoners\u0027 Dilemma with Private Monitoring"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2000-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cla:penntw:d93eb6f40c65728f9e1a7b11423f1641\",\"titles\":[\"Belief-Based Equilibria in the Repeated Prisoners\\u0027 Dilemma with Private Monitoring\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bhaskar, V.\",\"Ichiro Obara\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.econ.upenn.edu/Centers/CARESS/CARESSpdf/00-16.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://fmwww.bc.edu/RePEc/es2000/1330.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://fmwww.bc.edu/RePEc/es2000/1330.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://fmwww.bc.edu/RePEc/es2000/1330.pdf\",\"id\":\"oai:RePEc:ecm:wc2000:1330\"},\"trust\":0.17384207}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cla:penntw:d93eb6f40c65728f9e1a7b11423f1641"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bhaskar, V.","Ichiro Obara"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ecm:wc2000:1330"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.17384207},"target_publication_title":{"type":"STRING","value":"Belief-Based Equilibria in the Repeated Prisoners\u0027 Dilemma with Private Monitoring"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cla:penntw:d93eb6f40c65728f9e1a7b11423f1641\",\"titles\":[\"Belief-Based Equilibria in the Repeated Prisoners\\u0027 Dilemma with Private Monitoring\"],\"abstracts\":[\"We analyze the infinitely repeated prisoners\\u0027 dilemma with imperfect private monitoring and discounting. The main contribution of this paper is to construct ``belief-based\\u0027\\u0027 strategies, where a player\\u0027s continuation strategy is a function only of his beliefs. This simplifies the analysis considerably, and allows us to explicitly construct sequential equilibria for such games, thus enabling us to invoke the one-step deviation principle of dynamic programming. By doing so, we prove that one can approximate the efficient payoff in any prisoners\\u0027 dilemma game provided that the monitoring is sufficiently accurate. Furthermore, for a class of prisoners\\u0027 dilemma games, one can approximate every individually rational feasible payoff. These results require that monitoring be sufficiently accurate, but only require a uniform lower bound on the discount rate.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bhaskar, V.\",\"Ichiro Obara\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.econ.upenn.edu/Centers/CARESS/CARESSpdf/00-16.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"We analyze the infinitely repeated prisoners\\u0027 dilemma with imperfect private monitoring and discounting. The main contribution of this paper is to construct ``belief-based\\u0027\\u0027 strategies, where a player\\u0027s continuation strategy is a function only of his beliefs. This simplifies the analysis considerably, and allows us to explicitly construct sequential equilibria for such games, thus enabling us to invoke the one-step deviation principle of dynamic programming. By doing so, we prove that one can approximate the efficient payoff in any prisoners\\u0027 dilemma game provided that the monitoring is sufficiently accurate. Furthermore, for a class of prisoners\\u0027 dilemma games, one can approximate every individually rational feasible payoff. These results require that monitoring be sufficiently accurate, but only require a uniform lower bound on the discount rate.\"]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://fmwww.bc.edu/RePEc/es2000/1330.pdf\",\"id\":\"oai:RePEc:ecm:wc2000:1330\"},\"trust\":0.74009037}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cla:penntw:d93eb6f40c65728f9e1a7b11423f1641"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bhaskar, V.","Ichiro Obara"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ecm:wc2000:1330"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.74009037},"target_publication_title":{"type":"STRING","value":"Belief-Based Equilibria in the Repeated Prisoners\u0027 Dilemma with Private Monitoring"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:cla:penntw:d93eb6f40c65728f9e1a7b11423f1641\",\"titles\":[\"Belief-Based Equilibria in the Repeated Prisoners\\u0027 Dilemma with Private Monitoring\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bhaskar, V.\",\"Ichiro Obara\"],\"publicationdate\":\"2000-08-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.econ.upenn.edu/Centers/CARESS/CARESSpdf/00-16.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"2000-08-01\"},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://fmwww.bc.edu/RePEc/es2000/1330.pdf\",\"id\":\"oai:RePEc:ecm:wc2000:1330\"},\"trust\":0.74641216}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:cla:penntw:d93eb6f40c65728f9e1a7b11423f1641"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bhaskar, V.","Ichiro Obara"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ecm:wc2000:1330"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.74641216},"target_publication_title":{"type":"STRING","value":"Belief-Based Equilibria in the Repeated Prisoners\u0027 Dilemma with Private Monitoring"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2000-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:tel.archives-ouvertes.fr:tel-00369578\",\"titles\":[\"Analyse et résolution numérique de méthodes de sous-domaines non conformes pour des problèmes de plaques.\"],\"abstracts\":[\"Ce travail a pour objet l\\u0027étude d\\u0027une méthode de décomposition de domaines: la méthode des éléments avec joints. L\\u0027un des atouts de la méthode des él\\\\éments avec joints, et une de ses premières motivations, est qu\\u0027elle offre la possibilité de traiter des géométries complexes et de raccorder des maillages non conformes. La méthode des éléments avec joints est une méthode sans recouvrement, parallélisable. De manière générale, une fois le domaine divisé en sous-domaines, on utilise sur chacun de ces sous-domaines une discrétisation en é\\\\éments finis avec des maillages qui ne coincident pas aux interfaces. La méthode des éléments avec joints utilise une formulation hybride des équations du problème de départ qui repose sur l\\u0027introduction de multiplicateurs de Lagrange $\\\\lambda$ pour traiter la contrainte de continuité aux interfaces entre les sous-domaines. Le problème hybride est résolu par la méthode du gradient conjugué. Afin de faciliter la convergence de ce solveur, différents préconditionneurs ont été étudiés. Le premier est une extension au cas non conforme du préconditionneur condensé, le deuxième est basé sur la construction de bases hiérarchiques de l\\u0027espace des multiplicateurs de Lagrange, le troisième est un préconditionneur par blocs. Finalement, une étude approfondie de l\\u0027extension de la méthode des éléments avec joints aux modèles de plaques D.K.T. a été réalis\\\\ée du point de vue de l\\u0027analyse numérique (étude de la convergence) et de l\\u0027implémentation.\"],\"language\":\"fra/fre\",\"subjects\":[\"[MATH] Mathematics\",\"[MATH] Mathématiques\",\"Déecomposition de domaine\",\"méethode des éléments avec joints\",\"méthodes des él\\\\éments finis\",\"maillages non conformes\",\"formulation hybride\",\"préconditionneur\",\"bases hiérarchiques\",\"modèles de coques et plaques\",\"méthode D.K.T\",\"calcul parallèle MIMD\"],\"creators\":[\"Lacour, Catherine\"],\"publicationdate\":\"1997-01-15\",\"publisher\":\"Université Pierre et Marie Curie - Paris VI\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00369578\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"https://tel.archives-ouvertes.fr/tel-00369578\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://tel.archives-ouvertes.fr/tel-00369578\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://tel.archives-ouvertes.fr/tel-00369578\",\"id\":\"oai:HAL:tel-00369578v1\"},\"trust\":0.8466313}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:tel.archives-ouvertes.fr:tel-00369578"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lacour, Catherine"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:tel-00369578v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH] Mathematics","[MATH] Mathématiques","Déecomposition de domaine","méethode des éléments avec joints","méthodes des él\\éments finis","maillages non conformes","formulation hybride","préconditionneur","bases hiérarchiques","modèles de coques et plaques","méthode D.K.T","calcul parallèle MIMD"]},"trust":{"type":"FLOAT","value":0.8466313},"target_publication_title":{"type":"STRING","value":"Analyse et résolution numérique de méthodes de sous-domaines non conformes pour des problèmes de plaques."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:tel-00369578v1\",\"titles\":[\"Analyse et résolution numérique de méthodes de sous-domaines non conformes pour des problèmes de plaques.\"],\"abstracts\":[\"Thèse effectuée à l\\u0027ONERA: Office National d\\u0027Etudes et de Recherches Aerospatiales\\u003cbr /\\u003e92322 Chatillon\",\"The purpose of this PHD thesis is the study of a domain decomposition method: the Mortar method. The Mortar method has the advantage to allow for non-matching grids at the interfaces between subdomains of a non overlapping domain decomposition. The domain is divided into several parts, and independant finite element discretization is used on each subdomain. \\u003cbr /\\u003eIt is designed to provide an efficient parallelizable evaluation and solution framework. The discretization leads to an algebraic saddle-point problem solved by a conjugate gradient method. Lagrange multipliers are then introduced to enforce continuity constraints between the local finite element approximations. Differents preconditioners are studied: the first one is based on the direct extension of the lumped preconditioner, the other one is based on a hierarchical basis of the space of the Lagrange multipliers. Finally, the third one is a block diagonal preconditioner. Then, an extension of the Mortar method to the D.K.T. method for shells problems is studied both from the numerical analysis (convergence) and computing point of view.\",\"Ce travail a pour objet l\\u0027étude d\\u0027une méthode de décomposition de domaines: la méthode des éléments avec joints. L\\u0027un des atouts de la méthode des él\\\\éments avec joints, et une de ses premières motivations, est qu\\u0027elle offre la possibilité de traiter des géométries complexes et de raccorder des maillages non conformes. La méthode des éléments avec joints est une méthode sans recouvrement, parallélisable. De manière générale, une fois le domaine divisé en sous-domaines, on utilise sur chacun de ces sous-domaines une discrétisation en é\\\\éments finis avec des maillages qui ne coincident pas aux interfaces. La méthode des éléments avec joints utilise une formulation hybride des équations du problème de départ qui repose sur l\\u0027introduction de multiplicateurs de Lagrange $\\\\lambda$ pour traiter la contrainte de continuité aux interfaces entre les sous-domaines. Le problème hybride est résolu par la méthode du gradient conjugué. Afin de faciliter la convergence de ce solveur, différents préconditionneurs ont été étudiés. Le premier est une extension au cas non conforme du préconditionneur condensé, le deuxième est basé sur la construction de bases hiérarchiques de l\\u0027espace des multiplicateurs de Lagrange, le troisième est un préconditionneur par blocs. Finalement, une étude approfondie de l\\u0027extension de la méthode des éléments avec joints aux modèles de plaques D.K.T. a été réalis\\\\ée du point de vue de l\\u0027analyse numérique (étude de la convergence) et de l\\u0027implémentation.\"],\"language\":\"fra/fre\",\"subjects\":[\"bases hiérarchiques\",\"préconditionneur\",\"formulation hybride\",\"maillages non conformes\",\"méthodes des él\\\\éments finis\",\"méethode des éléments avec joints\",\"Déecomposition de domaine\",\"modèles de coques et plaques\",\"méthode D.K.T\",\"calcul parallèle MIMD\",\"[MATH] Mathematics\"],\"creators\":[\"Lacour, Catherine\"],\"publicationdate\":\"1997-01-15\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Analyse, Calcul Scientifique Industriel et Optimisation de Montpellier (ACSIOM) ; Université Montpellier II - Sciences et techniques - CNRS\",\"Université Pierre et Marie Curie - Paris VI\",\"Yvon Maday(maday@ann.jussieu.fr)\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://tel.archives-ouvertes.fr/tel-00369578\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://tel.archives-ouvertes.fr/tel-00369578\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://tel.archives-ouvertes.fr/tel-00369578\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://tel.archives-ouvertes.fr/tel-00369578\",\"id\":\"oai:tel.archives-ouvertes.fr:tel-00369578\"},\"trust\":0.42739803}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:tel-00369578v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lacour, Catherine"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:tel.archives-ouvertes.fr:tel-00369578"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["bases hiérarchiques","préconditionneur","formulation hybride","maillages non conformes","méthodes des él\\éments finis","méethode des éléments avec joints","Déecomposition de domaine","modèles de coques et plaques","méthode D.K.T","calcul parallèle MIMD","[MATH] Mathematics"]},"trust":{"type":"FLOAT","value":0.42739803},"target_publication_title":{"type":"STRING","value":"Analyse et résolution numérique de méthodes de sous-domaines non conformes pour des problèmes de plaques."},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1997-01-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:dau:papers:123456789/2178\",\"titles\":[\"from e-Heritage systems to Interpretive Archaeology Systems\"],\"abstracts\":[\"The principal purpose of this paper is to examine which research approaches are best suited for determining the requirements of the next generation of interactive interpretation support systems for cultural heritage site. We are optimistic that such systems if properly designed to exploit the potential of advanced information and communication technologies (ICTs), can not only meet, but even exceed visitor-user expectations. The research framework proposed to achieve this ideal integrates insights from both Interpretive Archaeology and interpretive IS research. We call the application of ICT’s in systems for communicating cultural heritage information “e-Heritage Systems or e-HS. We define “Interpretive Archaeology Systems”(IAS) as a subclass of e-HS, the design of which is informed by hermeneutics and phenomenology, Therefore, the principal purpose of the paper is to promote a shift from e-HS to IAS. To illustrate the fruitfulness of our preferred approach for IAS requirements identification, we derive a set of criteria from our research philosophy and apply them to the evaluation of an existing e-HS: the ARCHEOGUIDE in Olympia.\"],\"language\":\"und\",\"subjects\":[\"Information systems; Cultural heritage; Phenomenology; Interpretive Information Systems Research; Interpretive Archaeology; Hermeneutics; Interpretive Archaeology Systems;\"],\"creators\":[\"Monod, Emmanuel\",\"Klein, Heinz\"],\"publicationdate\":\"2005-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://basepub.dauphine.fr/xmlui/bitstream/123456789/2178/2/monod_heritage.PDF\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://basepub.dauphine.fr/xmlui/bitstream/123456789/2178/2/monod_heritage.PDF\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://basepub.dauphine.fr/xmlui/bitstream/123456789/2178/2/monod_heritage.PDF\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://basepub.dauphine.fr/xmlui/bitstream/123456789/2178/2/monod_heritage.PDF\",\"id\":\"oai:RePEc:ner:dauphi:urn:hdl:123456789/2178\"},\"trust\":0.7981458}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:dau:papers:123456789/2178"},"target_publication_author_list":{"type":"LIST_STRING","value":["Monod, Emmanuel","Klein, Heinz"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ner:dauphi:urn:hdl:123456789/2178"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Information systems; Cultural heritage; Phenomenology; Interpretive Information Systems Research; Interpretive Archaeology; Hermeneutics; Interpretive Archaeology Systems;"]},"trust":{"type":"FLOAT","value":0.7981458},"target_publication_title":{"type":"STRING","value":"from e-Heritage systems to Interpretive Archaeology Systems"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ner:dauphi:urn:hdl:123456789/2178\",\"titles\":[\"from e-Heritage systems to Interpretive Archaeology Systems.\"],\"abstracts\":[\"The principal purpose of this paper is to examine which research approaches are best suited for determining the requirements of the next generation of interactive interpretation support systems for cultural heritage site. We are optimistic that such systems if properly designed to exploit the potential of advanced information and communication technologies (ICTs), can not only meet, but even exceed visitor-user expectations. The research framework proposed to achieve this ideal integrates insights from both Interpretive Archaeology and interpretive IS research. We call the application of ICT’s in systems for communicating cultural heritage information “e-Heritage Systems or e-HS. We define “Interpretive Archaeology Systems”(IAS) as a subclass of e-HS, the design of which is informed by hermeneutics and phenomenology, Therefore, the principal purpose of the paper is to promote a shift from e-HS to IAS. To illustrate the fruitfulness of our preferred approach for IAS requirements identification, we derive a set of criteria from our research philosophy and apply them to the evaluation of an existing e-HS: the ARCHEOGUIDE in Olympia.\"],\"language\":\"und\",\"subjects\":[\"Information systems; Cultural heritage; Phenomenology; Interpretive Information Systems Research; Interpretive Archaeology; Hermeneutics; Interpretive Archaeology Systems;\"],\"creators\":[\"Monod, Emmanuel\",\"Klein, Heinz\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://basepub.dauphine.fr/xmlui/bitstream/123456789/2178/2/monod_heritage.PDF\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://basepub.dauphine.fr/xmlui/bitstream/123456789/2178/2/monod_heritage.PDF\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://basepub.dauphine.fr/xmlui/bitstream/123456789/2178/2/monod_heritage.PDF\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://basepub.dauphine.fr/xmlui/bitstream/123456789/2178/2/monod_heritage.PDF\",\"id\":\"oai:RePEc:dau:papers:123456789/2178\"},\"trust\":0.91394967}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ner:dauphi:urn:hdl:123456789/2178"},"target_publication_author_list":{"type":"LIST_STRING","value":["Monod, Emmanuel","Klein, Heinz"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:dau:papers:123456789/2178"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Information systems; Cultural heritage; Phenomenology; Interpretive Information Systems Research; Interpretive Archaeology; Hermeneutics; Interpretive Archaeology Systems;"]},"trust":{"type":"FLOAT","value":0.91394967},"target_publication_title":{"type":"STRING","value":"from e-Heritage systems to Interpretive Archaeology Systems."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ner:dauphi:urn:hdl:123456789/2178\",\"titles\":[\"from e-Heritage systems to Interpretive Archaeology Systems.\"],\"abstracts\":[\"The principal purpose of this paper is to examine which research approaches are best suited for determining the requirements of the next generation of interactive interpretation support systems for cultural heritage site. We are optimistic that such systems if properly designed to exploit the potential of advanced information and communication technologies (ICTs), can not only meet, but even exceed visitor-user expectations. The research framework proposed to achieve this ideal integrates insights from both Interpretive Archaeology and interpretive IS research. We call the application of ICT’s in systems for communicating cultural heritage information “e-Heritage Systems or e-HS. We define “Interpretive Archaeology Systems”(IAS) as a subclass of e-HS, the design of which is informed by hermeneutics and phenomenology, Therefore, the principal purpose of the paper is to promote a shift from e-HS to IAS. To illustrate the fruitfulness of our preferred approach for IAS requirements identification, we derive a set of criteria from our research philosophy and apply them to the evaluation of an existing e-HS: the ARCHEOGUIDE in Olympia.\"],\"language\":\"und\",\"subjects\":[\"Information systems; Cultural heritage; Phenomenology; Interpretive Information Systems Research; Interpretive Archaeology; Hermeneutics; Interpretive Archaeology Systems;\"],\"creators\":[\"Monod, Emmanuel\",\"Klein, Heinz\"],\"publicationdate\":\"2005-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://basepub.dauphine.fr/xmlui/bitstream/123456789/2178/2/monod_heritage.PDF\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"2005-06-01\"},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://basepub.dauphine.fr/xmlui/bitstream/123456789/2178/2/monod_heritage.PDF\",\"id\":\"oai:RePEc:dau:papers:123456789/2178\"},\"trust\":0.33334303}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ner:dauphi:urn:hdl:123456789/2178"},"target_publication_author_list":{"type":"LIST_STRING","value":["Monod, Emmanuel","Klein, Heinz"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:dau:papers:123456789/2178"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Information systems; Cultural heritage; Phenomenology; Interpretive Information Systems Research; Interpretive Archaeology; Hermeneutics; Interpretive Archaeology Systems;"]},"trust":{"type":"FLOAT","value":0.33334303},"target_publication_title":{"type":"STRING","value":"from e-Heritage systems to Interpretive Archaeology Systems."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2005-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:tudelft.nl:uuid:754f8b3b-0876-4374-9935-74b44fd1a4fc\",\"titles\":[\"Life as it should be: Tapping into the potentials of cross-fertilization in design:\"],\"abstracts\":[\"Today\\u0027s cities present new challenges, and ask for a different breed of designers. Who are these future designers; what are their responsibilities, values, and skills; and how do our design schools need to change in order to produce them?\\nThis book hypothesizes that interdisciplinary, intercultural education will be crucial for the preparation of the next generation of designers. It explores new models for design education, looking at the Next City joint studio as a first step. \"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Tihamér Salij, H.\"],\"publicationdate\":\"2011-10-01\",\"publisher\":\"FRAME, DDFA, Architecture Journalism\",\"embargoenddate\":\"\",\"contributor\":[\"Ming Wan, W.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"TU Delft Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://resolver.tudelft.nl/uuid:754f8b3b-0876-4374-9935-74b44fd1a4fc\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Part of book or chapter of book\"},{\"url\":\"http://resolver.tudelft.nl/uuid:754f8b3b-0876-4374-9935-74b44fd1a4fc\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Part of book or chapter of book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://resolver.tudelft.nl/uuid:754f8b3b-0876-4374-9935-74b44fd1a4fc\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Part of book or chapter of book\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://resolver.tudelft.nl/uuid:754f8b3b-0876-4374-9935-74b44fd1a4fc\",\"id\":\"tud:oai:tudelft.nl:uuid:754f8b3b-0876-4374-9935-74b44fd1a4fc\"},\"trust\":0.56655306}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"TU Delft Repository"},"target_publication_id":{"type":"STRING","value":"oai:tudelft.nl:uuid:754f8b3b-0876-4374-9935-74b44fd1a4fc"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tihamér Salij, H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tud:oai:tudelft.nl:uuid:754f8b3b-0876-4374-9935-74b44fd1a4fc"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.56655306},"target_publication_title":{"type":"STRING","value":"Life as it should be: Tapping into the potentials of cross-fertilization in design:"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2011-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::c9892a989183de32e976c6f04e700201"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:hal-00933980\",\"titles\":[\"Remote testing of timed specifications\"],\"abstracts\":[\"We present a study and a testing framework on black box remote testing of real-time systems using Uppaal-TIGA. One of the essential challenges of remote testing is the communication latency between the tester and the system under test (SUT) that may lead to interleaving of inputs and outputs. This affects the generation of inputs for the SUT and the observation of outputs that may trigger a wrong test verdict. We model the overall test setup using Timed Input-Output Automata (TIOA) and present an adapted asynchronous semantics with explicit communication delays. We propose the ∆-testability criterion for the requirement model where ∆ describes the communication latency. The test case eneration problem is then reduced into a controller synthesis problem. We use Uppaal-TIGA for this purpose to solve a timed game with partial observability between the tester and the communication media together with the SUT. The objective of the game corresponds to a test purpose.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_SC] Computer Science/Symbolic Computation\",\"[INFO:INFO_SC] Informatique/Calcul formel\",\"[INFO:INFO_SE] Computer Science/Software Engineering\",\"[INFO:INFO_SE] Informatique/Génie logiciel\"],\"creators\":[\"David, Alexandre\",\"Larsen, Kim G.\",\"Mikucionis, Marius\",\"Nguena Timo, Omer Landry\",\"Rollet, Antoine\"],\"publicationdate\":\"2013-11-13\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.inria.fr/hal-00933980\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.inria.fr/hal-00933980\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/hal-00933980\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/hal-00933980\",\"id\":\"oai:HAL:hal-00933980v1\"},\"trust\":0.7536088}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:hal-00933980"},"target_publication_author_list":{"type":"LIST_STRING","value":["David, Alexandre","Larsen, Kim G.","Mikucionis, Marius","Nguena Timo, Omer Landry","Rollet, Antoine"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00933980v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_SC] Computer Science/Symbolic Computation","[INFO:INFO_SC] Informatique/Calcul formel","[INFO:INFO_SE] Computer Science/Software Engineering","[INFO:INFO_SE] Informatique/Génie logiciel"]},"trust":{"type":"FLOAT","value":0.7536088},"target_publication_title":{"type":"STRING","value":"Remote testing of timed specifications"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-11-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00933980v1\",\"titles\":[\"Remote testing of timed specifications\"],\"abstracts\":[\"International audience\",\"We present a study and a testing framework on black box remote testing of real-time systems using Uppaal-TIGA. One of the essential challenges of remote testing is the communication latency between the tester and the system under test (SUT) that may lead to interleaving of inputs and outputs. This affects the generation of inputs for the SUT and the observation of outputs that may trigger a wrong test verdict. We model the overall test setup using Timed Input-Output Automata (TIOA) and present an adapted asynchronous semantics with explicit communication delays. We propose the ∆-testability criterion for the requirement model where ∆ describes the communication latency. The test case eneration problem is then reduced into a controller synthesis problem. We use Uppaal-TIGA for this purpose to solve a timed game with partial observability between the tester and the communication media together with the SUT. The objective of the game corresponds to a test purpose.\"],\"language\":\"eng\",\"subjects\":[\"[INFO.INFO-SC] Computer Science/Symbolic Computation\",\"[INFO.INFO-SE] Computer Science/Software Engineering\"],\"creators\":[\"David, Alexandre\",\"Larsen, Kim G.\",\"Mikucionis, Marius\",\"Nguena Timo, Omer Landry\",\"Rollet, Antoine\"],\"publicationdate\":\"2013-11-13\",\"publisher\":\"Springer\",\"embargoenddate\":\"\",\"contributor\":[\"Center for Indlejrede Software Systemer (CISS) ; Aalborg University\",\"University of Aalborg ; University of Aalborg\",\"Laboratoire Bordelais de Recherche en Informatique (LaBRI) ; Université Sciences et Technologies - Bordeaux I - Université Victor Segalen - Bordeaux II - École Nationale Supérieure d\\u0027Électronique, Informatique et Radiocommunications de Bordeaux (ENSEIRB) - CNRS\",\"ANR-11-INSE-0004, VACSIM, Validation de la commande des systèmes critiques par couplage simulation et méthodes d\\u0027analyse formelle(2011)\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.inria.fr/hal-00933980\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.inria.fr/hal-00933980\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/hal-00933980\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/hal-00933980\",\"id\":\"oai:hal.inria.fr:hal-00933980\"},\"trust\":0.57810754}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00933980v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["David, Alexandre","Larsen, Kim G.","Mikucionis, Marius","Nguena Timo, Omer Landry","Rollet, Antoine"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:hal-00933980"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO.INFO-SC] Computer Science/Symbolic Computation","[INFO.INFO-SE] Computer Science/Software Engineering"]},"trust":{"type":"FLOAT","value":0.57810754},"target_publication_title":{"type":"STRING","value":"Remote testing of timed specifications"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-11-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:3170b12f-45fe-4184-95eb-c4eb9d064240\",\"titles\":[\"Technique for measuring convective heat transfer at rough surfaces\"],\"abstracts\":[\"A new method has been developed for measuring local heat transfer coefficients at rough surfaces. The technique was applied to an idealised section of a large scaled model of a turbine blade cooling passage to assess the effect of surface irregularities which result from the blade manufacturing process. The experimental method is described in full and the results are presented for tests on an isolated pin-fin situated in fully developed channel flow. The effect of the thermal conductivity of the roughness elements is discussed.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Wang, Z.\",\"Ireland, Pt\",\"Jones, Tv\"],\"publicationdate\":\"1990-01-01\",\"publisher\":\"Publ by ASME\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1177/014233129101300306\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:3170b12f-45fe-4184-95eb-c4eb9d064240\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1177/014233129101300306\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:b570501e-79fa-45f1-b568-26df35a40926\",\"id\":\"oai:ora.ox.ac.uk:uuid:b570501e-79fa-45f1-b568-26df35a40926\"},\"trust\":0.24382931}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:3170b12f-45fe-4184-95eb-c4eb9d064240"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wang, Z.","Ireland, Pt","Jones, Tv"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:b570501e-79fa-45f1-b568-26df35a40926"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"trust":{"type":"FLOAT","value":0.24382931},"target_publication_title":{"type":"STRING","value":"Technique for measuring convective heat transfer at rough surfaces"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"1990-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:3170b12f-45fe-4184-95eb-c4eb9d064240\",\"titles\":[\"Technique for measuring convective heat transfer at rough surfaces\"],\"abstracts\":[\"A new method has been developed for measuring local heat transfer coefficients at rough surfaces. The technique was applied to an idealised section of a large scaled model of a turbine blade cooling passage to assess the effect of surface irregularities which result from the blade manufacturing process. The experimental method is described in full and the results are presented for tests on an isolated pin-fin situated in fully developed channel flow. The effect of the thermal conductivity of the roughness elements is discussed.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Wang, Z.\",\"Ireland, Pt\",\"Jones, Tv\"],\"publicationdate\":\"1990-01-01\",\"publisher\":\"Publ by ASME\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1177/014233129101300306\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:3170b12f-45fe-4184-95eb-c4eb9d064240\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1177/014233129101300306\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:b570501e-79fa-45f1-b568-26df35a40926\",\"id\":\"oai:ora.ox.ac.uk:uuid:b570501e-79fa-45f1-b568-26df35a40926\"},\"trust\":0.24382931}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:3170b12f-45fe-4184-95eb-c4eb9d064240"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wang, Z.","Ireland, Pt","Jones, Tv"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:b570501e-79fa-45f1-b568-26df35a40926"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"trust":{"type":"FLOAT","value":0.24382931},"target_publication_title":{"type":"STRING","value":"Technique for measuring convective heat transfer at rough surfaces"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"1990-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3096510\",\"titles\":[\"Antimycobacterial, antimicrobial, and biocompatibility properties of para-aminosalicylic acid with zinc layered hydroxide and Zn/Al layered double hydroxide nanocomposites\"],\"abstracts\":[\"The treatment of tuberculosis by chemotherapy is complicated due to multiple drug prescriptions, long treatment duration, and adverse side effects. We report here for the first time an in vitro therapeutic effect of nanocomposites based on para-aminosalicylic acid with zinc layered hydroxide (PAS-ZLH) and zinc-aluminum layered double hydroxides (PAS-Zn/Al LDH), against mycobacteria, Gram-positive bacteria, and Gram-negative bacteria. The nanocomposites demonstrated good antimycobacterial activity and were found to be effective in killing Gram-positive and Gram-negative bacteria. A biocompatibility study revealed good biocompatibility of the PAS-ZLH nanocomposites against normal human MRC-5 lung cells. The para-aminosalicylic acid loading was quantified with high-performance liquid chromatography analysis. In summary, the present preliminary in vitro studies are highly encouraging for further in vivo studies of PAS-ZLH and PAS-Zn/Al LDH nanocomposites to treat tuberculosis.\"],\"language\":\"eng\",\"subjects\":[\"Original Research\",\"Zn/Al-layered double hydroxides\",\"zinc layered hydroxides\",\"tuberculosis\",\"para-aminosalicylic acid (PAS)\",\"antimicrobial agents\"],\"creators\":[\"Saifullah, Bullo\",\"El Zowalaty, Mohamed E.\",\"Arulselvan, Palanisamy\",\"Fakurazi, Sharida\",\"Webster, Thomas J.\",\"Geilich, Benjamin M.\",\"Hussein, Mohd Zobir\"],\"publicationdate\":\"2014-07-01\",\"publisher\":\"Dove Medical Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Drug Design, Development and Therapy\",\"issn\":\"\",\"eissn\":\"1177-8881\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.2147/DDDT.S63753\",\"type\":\"doi\"},{\"value\":\"PMC4122184\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4122184\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.dovepress.com/antimycobacterial-antimicrobial-and-biocompatibility-properties-of-par-peer-reviewed-article-DDDT\",\"license\":\"OPEN\",\"hostedby\":\"Drug Design, Development and Therapy\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.dovepress.com/antimycobacterial-antimicrobial-and-biocompatibility-properties-of-par-peer-reviewed-article-DDDT\",\"license\":\"OPEN\",\"hostedby\":\"Drug Design, Development and Therapy\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.dovepress.com/antimycobacterial-antimicrobial-and-biocompatibility-properties-of-par-peer-reviewed-article-DDDT\",\"id\":\"oai:doaj.org/article:a8fc4a20a4c741579c807f54a2337c86\"},\"trust\":0.9970148}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3096510"},"target_publication_author_list":{"type":"LIST_STRING","value":["Saifullah, Bullo","El Zowalaty, Mohamed E.","Arulselvan, Palanisamy","Fakurazi, Sharida","Webster, Thomas J.","Geilich, Benjamin M.","Hussein, Mohd Zobir"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:a8fc4a20a4c741579c807f54a2337c86"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Research","Zn/Al-layered double hydroxides","zinc layered hydroxides","tuberculosis","para-aminosalicylic acid (PAS)","antimicrobial agents"]},"trust":{"type":"FLOAT","value":0.9970148},"target_publication_title":{"type":"STRING","value":"Antimycobacterial, antimicrobial, and biocompatibility properties of para-aminosalicylic acid with zinc layered hydroxide and Zn/Al layered double hydroxide nanocomposites"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00948522\",\"titles\":[\"De la génération équivoque des pierres et des fossiles d\\u0027après les textes anciens (grecs, latins et chinois)\"],\"abstracts\":[\"La génération des pierres est un problème qui a préoccupé les savants de l\\u0027antiquité grecque et latine ; ils proposent des solutions variées, parfois obscures, comme dans les plus anciennes cosmogonies,parfois élaborées de façon plus rationnelle, en faisant intervenir divers phénomènes physiques ; mais une notion reste sous-jacente dans la plupart des théories ainsi échafaudées : celle d\\u0027une énergie créatrice, allant jusqu\\u0027à faire des pierres des sortes d\\u0027êtres vivants, aptes à se développer et à se reproduire ; cela crée une manière de continuité entre le minéral, le végétal et l\\u0027animal, ce qui explique les idées parfois ambiguës sur une autre question : la génération des fossiles in situ. Il est également curieux de noter certaines concordances entre la pensée occidentale, gréco-latine et médiévale, et la pensée orientale exprimée dans les lapidaires chinois qui,tout en étant de rédaction récente (XIXème siècle), exposent des opinions remontant à une tradition très ancienne. (...)\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences\",\"[SHS:HISPHILSO] Sciences de l\\u0027Homme et Société/Histoire, Philosophie et Sociologie des sciences\",\"[SDU:STU] Sciences of the Universe/Earth Sciences\",\"[SDU:STU] Planète et Univers/Sciences de la Terre\"],\"creators\":[\"Bouillet, Geneviève\"],\"publicationdate\":\"1986-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00948522\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00948522\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00948522\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00948522\",\"id\":\"oai:HAL:hal-00948522v1\"},\"trust\":0.80522174}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00948522"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bouillet, Geneviève"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00948522v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences","[SHS:HISPHILSO] Sciences de l\u0027Homme et Société/Histoire, Philosophie et Sociologie des sciences","[SDU:STU] Sciences of the Universe/Earth Sciences","[SDU:STU] Planète et Univers/Sciences de la Terre"]},"trust":{"type":"FLOAT","value":0.80522174},"target_publication_title":{"type":"STRING","value":"De la génération équivoque des pierres et des fossiles d\u0027après les textes anciens (grecs, latins et chinois)"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1986-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00948522v1\",\"titles\":[\"De la génération équivoque des pierres et des fossiles d\\u0027après les textes anciens (grecs, latins et chinois)\"],\"abstracts\":[\"International audience\",\"La génération des pierres est un problème qui a préoccupé les savants de l\\u0027antiquité grecque et latine ; ils proposent des solutions variées, parfois obscures, comme dans les plus anciennes cosmogonies,parfois élaborées de façon plus rationnelle, en faisant intervenir divers phénomènes physiques ; mais une notion reste sous-jacente dans la plupart des théories ainsi échafaudées : celle d\\u0027une énergie créatrice, allant jusqu\\u0027à faire des pierres des sortes d\\u0027êtres vivants, aptes à se développer et à se reproduire ; cela crée une manière de continuité entre le minéral, le végétal et l\\u0027animal, ce qui explique les idées parfois ambiguës sur une autre question : la génération des fossiles in situ. Il est également curieux de noter certaines concordances entre la pensée occidentale, gréco-latine et médiévale, et la pensée orientale exprimée dans les lapidaires chinois qui,tout en étant de rédaction récente (XIXème siècle), exposent des opinions remontant à une tradition très ancienne. (...)\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS.HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences\",\"[SDU.STU] Sciences of the Universe/Earth Sciences\"],\"creators\":[\"Bouillet, Geneviève\"],\"publicationdate\":\"1986-01-01\",\"publisher\":\"COFRHIGEO\",\"embargoenddate\":\"\",\"contributor\":[\"Comité français d\\u0027histoire de la géologie (COFRHIGEO) ; COFRHIGEO\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00948522\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00948522\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00948522\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00948522\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00948522\"},\"trust\":0.16312498}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00948522v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bouillet, Geneviève"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00948522"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS.HISPHILSO] Humanities and Social Sciences/History, Philosophy and Sociology of Sciences","[SDU.STU] Sciences of the Universe/Earth Sciences"]},"trust":{"type":"FLOAT","value":0.16312498},"target_publication_title":{"type":"STRING","value":"De la génération équivoque des pierres et des fossiles d\u0027après les textes anciens (grecs, latins et chinois)"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1986-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.tue.nl:694582\",\"titles\":[\"An Ultra-Low-Energy Multi-Standard JPEG Co-Processor in 65 nm CMOS With Sub/Near Threshold Supply Voltage\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Pu, Y.\",\"Pineda Gyvez, J.\",\"Corporaal, H.\",\"Ha, Y.\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repository TU/e\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.tue.nl/694582\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"},{\"url\":\"http://repository.tue.nl/694582\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.tue.nl/694582\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.tue.nl/694582\",\"id\":\"tue:oai:library.tue.nl:694582\"},\"trust\":0.852209}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repository TU/e"},"target_publication_id":{"type":"STRING","value":"oai:library.tue.nl:694582"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pu, Y.","Pineda Gyvez, J.","Corporaal, H.","Ha, Y."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tue:oai:library.tue.nl:694582"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.852209},"target_publication_title":{"type":"STRING","value":"An Ultra-Low-Energy Multi-Standard JPEG Co-Processor in 65 nm CMOS With Sub/Near Threshold Supply Voltage"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::99c5e07b4d5de9d18c350cdf64c5aa3d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1212.6367\",\"titles\":[\"Marian Smoluchowski: A story behind one photograph\"],\"abstracts\":[\" We discuss the photograph procured from the archives of the V. Stefanyk Lviv\\nNational Scientific Library of Ukraine dated by 1904 which shows Marian\\nSmoluchowski together with professors and graduate students of the Philosophy\\ndepartment of the Lviv University. The personalia includes both the professors\\nand the graduates depicted on the photograph with the emphasis on the graduates\\nas being much less known and studied. The photograph originates from the\\ncollection of the Shevchenko Scientific Society, therefore a brief historical\\nbackground on the activities of physicists in this society around that period\\nof time is provided as well.\\n\",\"Comment: 8 pages, 1 photograph\"],\"language\":\"eng\",\"subjects\":[\"Physics - History and Philosophy of Physics\"],\"creators\":[\"Ilnytska, A.\",\"Ilnytskyi, J.\",\"Holovatch, Yu\",\"Trokhymchuk, A.\"],\"publicationdate\":\"2012-12-27\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.5488/CMP.15.47101\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1212.6367\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.5488/CMP.15.47101\",\"license\":\"OPEN\",\"hostedby\":\"Condensed Matter Physics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.5488/CMP.15.47101\",\"license\":\"OPEN\",\"hostedby\":\"Condensed Matter Physics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.5488/CMP.15.47101\",\"id\":\"oai:doaj.org/article:de156d1bf0de4771882814cdcd1d99f8\"},\"trust\":0.1750037}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1212.6367"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ilnytska, A.","Ilnytskyi, J.","Holovatch, Yu","Trokhymchuk, A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:de156d1bf0de4771882814cdcd1d99f8"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Physics - History and Philosophy of Physics"]},"trust":{"type":"FLOAT","value":0.1750037},"target_publication_title":{"type":"STRING","value":"Marian Smoluchowski: A story behind one photograph"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-12-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00154776\",\"titles\":[\"Micro-PIXE characterization of interactions between a sol-gel derived bioactive glass and biological fluids\"],\"abstracts\":[\"Bioactive glasses possess the ability to bond to living tissues through the formation of a calcium phosphate-rich layer at their interface with living tissues. This paper reports the different steps of this bioactivity process via a complete micro-PIXE characterization of a sol-gel derived SiO2-CaO bioactive glass in contact with biological fluids for different delays. Multi-elemental cartography at the glass/biological fluids interface together with major and trace elements quantification permit a better understanding of the five reaction stages involved in the bioactivity mechanisms. The presence of phosphorus was detected at the periphery of the material within 6 h of interaction with biological fluids. A calcium phosphate-rich layer containing magnesium is formed after a few days of interaction and presence of bone-like apatite is deduced from the calculation of the Ca/P ratio at the material interface. That is of deep interest for clinical applications, because this biologically active behavior results in the formation of a strong interfacial bond between the glass and host tissues, and will stimulate bone-cell proliferation.\"],\"language\":\"eng\",\"subjects\":[\"[CHIM:MATE] Chemical Sciences/Material chemistry\",\"[CHIM:MATE] Chimie/Matériaux\",\"PIXE-RBS methods\",\"biomaterials\",\"bioactive glass\",\"sol-gel\"],\"creators\":[\"Lao, Johnatan\",\"Nedelec, Jean-Marie\",\"Moretto, Philippe\",\"Jallot, Edouard\"],\"publicationdate\":\"2006-02-28\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1016/j.nimb.2005.12.049\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00154776\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00154776\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00154776\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00154776\",\"id\":\"oai:HAL:hal-00154776v1\"},\"trust\":0.6597876}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00154776"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lao, Johnatan","Nedelec, Jean-Marie","Moretto, Philippe","Jallot, Edouard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00154776v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[CHIM:MATE] Chemical Sciences/Material chemistry","[CHIM:MATE] Chimie/Matériaux","PIXE-RBS methods","biomaterials","bioactive glass","sol-gel"]},"trust":{"type":"FLOAT","value":0.6597876},"target_publication_title":{"type":"STRING","value":"Micro-PIXE characterization of interactions between a sol-gel derived bioactive glass and biological fluids"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2006-02-28"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00154776v1\",\"titles\":[\"Micro-PIXE characterization of interactions between a sol-gel derived bioactive glass and biological fluids\"],\"abstracts\":[\"Bioactive glasses possess the ability to bond to living tissues through the formation of a calcium phosphate-rich layer at their interface with living tissues. This paper reports the different steps of this bioactivity process via a complete micro-PIXE characterization of a sol-gel derived SiO2-CaO bioactive glass in contact with biological fluids for different delays. Multi-elemental cartography at the glass/biological fluids interface together with major and trace elements quantification permit a better understanding of the five reaction stages involved in the bioactivity mechanisms. The presence of phosphorus was detected at the periphery of the material within 6 h of interaction with biological fluids. A calcium phosphate-rich layer containing magnesium is formed after a few days of interaction and presence of bone-like apatite is deduced from the calculation of the Ca/P ratio at the material interface. That is of deep interest for clinical applications, because this biologically active behavior results in the formation of a strong interfacial bond between the glass and host tissues, and will stimulate bone-cell proliferation.\"],\"language\":\"eng\",\"subjects\":[\"PIXE-RBS methods\",\"biomaterials\",\"bioactive glass\",\"sol-gel\",\"PACS: 68.08.–p, 81.05.Kf, 81.20.Fw, 82.80.Ej, 82.80.Yc, 87.64.Gb, 87.68.+z\",\"[CHIM.MATE] Chemical Sciences/Material chemistry\"],\"creators\":[\"Lao, Johnatan\",\"Nedelec, Jean-Marie\",\"Moretto, Philippe\",\"Jallot, Edouard\"],\"publicationdate\":\"2006-02-28\",\"publisher\":\"Elsevier\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire de Physique Corpusculaire [Clermont-Ferrand] (LPC) ; IN2P3 - Université Blaise Pascal - Clermont-Ferrand II - CNRS\",\"Laboratoire des Matériaux Inorganiques (LMI) ; Université Blaise Pascal - Clermont-Ferrand II - Clermont Université - Ecole Nationale Supérieure de Chimie de Clermont-Ferrand - CNRS\",\"Centre d\\u0027Etudes Nucléaires de Bordeaux Gradignan (CENBG) ; CNRS - IN2P3 - Université Sciences et Technologies - Bordeaux I\",\"Bioverre ANR PNANO 2005\",\"Bioverre ANR PNANO 2005\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1016/j.nimb.2005.12.049\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00154776\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00154776\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00154776\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00154776\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00154776\"},\"trust\":0.45938224}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00154776v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lao, Johnatan","Nedelec, Jean-Marie","Moretto, Philippe","Jallot, Edouard"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00154776"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["PIXE-RBS methods","biomaterials","bioactive glass","sol-gel","PACS: 68.08.–p, 81.05.Kf, 81.20.Fw, 82.80.Ej, 82.80.Yc, 87.64.Gb, 87.68.+z","[CHIM.MATE] Chemical Sciences/Material chemistry"]},"trust":{"type":"FLOAT","value":0.45938224},"target_publication_title":{"type":"STRING","value":"Micro-PIXE characterization of interactions between a sol-gel derived bioactive glass and biological fluids"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2006-02-28"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:vrs:eurcou:v:3:y:2011:i:4:p:282-298\",\"titles\":[\"An evaluation of the relevance of EU less favoured areas policy for dry regions of the Czech Republic\"],\"abstracts\":[\"The paper analyses production and economic characteristics of the farms, situated in the dry regions, defined according to various methods, in the Czech Republic. To consider the chance for obtaining the support for the less-favoured areas (natural handicapped areas) according to the rules of the EU is its main aim. It was found out that drought can have negative influence on the economic results in case of some farms and thus endanger agricultural cultivation of the land. For obtaining the subsidies in the natural handicapped areas after 2013 it would be necessary to change the rules of these measures in the Czech Republic. In light of recent Commission proposals on the CAP after 2014, analytical results support the requirements for better tailored policies to diverse rural regions of the EU.\"],\"language\":\"und\",\"subjects\":[\"dry regions,natural handicapped areas,LFA payments,permanent use of the agricultural land,\"],\"creators\":[\"Å tolbová Marie\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"European Countryside\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://versita.metapress.com/content/N328221056515362/fulltext.pl\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.degruyter.com/view/j/euco.2011.3.issue-4/v10091-012-0009-4/v10091-012-0009-4.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.degruyter.com/view/j/euco.2011.3.issue-4/v10091-012-0009-4/v10091-012-0009-4.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.degruyter.com/view/j/euco.2011.3.issue-4/v10091-012-0009-4/v10091-012-0009-4.xml?format\\u003dINT\",\"id\":\"oai:RePEc:vrs:eurcou:v:3:y:2011:i:4:p:282-298:n:4\"},\"trust\":0.21527004}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:vrs:eurcou:v:3:y:2011:i:4:p:282-298"},"target_publication_author_list":{"type":"LIST_STRING","value":["Å tolbová Marie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:vrs:eurcou:v:3:y:2011:i:4:p:282-298:n:4"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["dry regions,natural handicapped areas,LFA payments,permanent use of the agricultural land,"]},"trust":{"type":"FLOAT","value":0.21527004},"target_publication_title":{"type":"STRING","value":"An evaluation of the relevance of EU less favoured areas policy for dry regions of the Czech Republic"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:vrs:eurcou:v:3:y:2011:i:4:p:282-298:n:4\",\"titles\":[\"An evaluation of the relevance of EU less favoured areas policy for dry regions of the Czech Republic\"],\"abstracts\":[\"The paper analyses production and economic characteristics of the farms, situated in the dry regions, defined according to various methods, in the Czech Republic. To consider the chance for obtaining the support for the less-favoured areas (natural handicapped areas) according to the rules of the EU is its main aim. It was found out that drought can have negative influence on the economic results in case of some farms and thus endanger agricultural cultivation of the land. For obtaining the subsidies in the natural handicapped areas after 2013 it would be necessary to change the rules of these measures in the Czech Republic. In light of recent Commission proposals on the CAP after 2014, analytical results support the requirements for better tailored policies to diverse rural regions of the EU.\"],\"language\":\"und\",\"subjects\":[\"dry regions, natural handicapped areas, LFA payments, permanent use of the agricultural land\"],\"creators\":[\"Štolbová Marie\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"European Countryside\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.degruyter.com/view/j/euco.2011.3.issue-4/v10091-012-0009-4/v10091-012-0009-4.xml?format\\u003dINT\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://versita.metapress.com/content/N328221056515362/fulltext.pl\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://versita.metapress.com/content/N328221056515362/fulltext.pl\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://versita.metapress.com/content/N328221056515362/fulltext.pl\",\"id\":\"oai:RePEc:vrs:eurcou:v:3:y:2011:i:4:p:282-298\"},\"trust\":0.24861515}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:vrs:eurcou:v:3:y:2011:i:4:p:282-298:n:4"},"target_publication_author_list":{"type":"LIST_STRING","value":["Štolbová Marie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:vrs:eurcou:v:3:y:2011:i:4:p:282-298"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["dry regions, natural handicapped areas, LFA payments, permanent use of the agricultural land"]},"trust":{"type":"FLOAT","value":0.24861515},"target_publication_title":{"type":"STRING","value":"An evaluation of the relevance of EU less favoured areas policy for dry regions of the Czech Republic"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:hep-ph/9612430\",\"titles\":[\"Effective SU(2)_L x U(1) theory and the Higgs boson mass\"],\"abstracts\":[\" We assume the stability of vacuum under radiative corrections in the context\\nof the standard electroweak theory. We find that this theory behaves as a good\\neffective model already at cut off energy scales as low as 0.7 TeV. This\\nstability criterion allows to predict m_H\\u003d 318 +- 13 GeV for the Higgs boson\\nmass.\\n\",\"Comment: Latex, 5 pages, 1 Postscript figure included\"],\"language\":\"eng\",\"subjects\":[\"High Energy Physics - Phenomenology\"],\"creators\":[\"Fang, Zhen Yun\",\"Castro, G. Lopez\",\"Lucio, J. L.\",\"Pestieau, J.\"],\"publicationdate\":\"1996-12-20\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1142/S0217732397001552\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/hep-ph/9612430\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/2078/31591\",\"license\":\"OPEN\",\"hostedby\":\"Dépôt Institutionel de l’Université catholique de Louvain et de l’Université Saint-Louis\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2078/31591\",\"license\":\"OPEN\",\"hostedby\":\"Dépôt Institutionel de l’Université catholique de Louvain et de l’Université Saint-Louis\",\"instancetype\":\"\"}]},\"provenance\":{\"repositoryName\":\"Dépôt Institutionel de l’Université catholique de Louvain et de l’Université Saint-Louis\",\"url\":\"http://hdl.handle.net/2078/31591\",\"id\":\"oai:dial.academielouvain.be:31591\"},\"trust\":0.81460434}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:hep-ph/9612430"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fang, Zhen Yun","Castro, G. Lopez","Lucio, J. L.","Pestieau, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dial.academielouvain.be:31591"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1714726c817af50457d810aae9d27a2e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["High Energy Physics - Phenomenology"]},"trust":{"type":"FLOAT","value":0.81460434},"target_publication_title":{"type":"STRING","value":"Effective SU(2)_L x U(1) theory and the Higgs boson mass"},"provenance_datasource_name":{"type":"STRING","value":"Dépôt Institutionel de l’Université catholique de Louvain et de l’Université Saint-Louis"},"target_dateofacceptance":{"type":"DATE","value":"1996-12-20"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:dial.academielouvain.be:31591\",\"titles\":[\"Effective SU(2)-L x U(1) theory and the Higgs boson mass\"],\"abstracts\":[\"We assume the stability of vacuum under radiative corrections in the context of the standard electroweak theory. We find that this theory behaves as a good effective model already at cut off energy scales as low as 0.7 TeV. This stability criterion allows to predict m_H\\u003d 318 +- 13 GeV for the Higgs boson mass. Comment: Latex, 5 pages, 1 Postscript figure included\"],\"language\":\"eng\",\"subjects\":[\"High Energy Physics - Phenomenology\"],\"creators\":[\"Fang, Zhen Yun\",\"Lopez Castro, G.\",\"Lucio, J. L.\",\"Pestieau, Jean\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"UCL - SC/PHYS - Département de physique\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Dépôt Institutionel de l’Université catholique de Louvain et de l’Université Saint-Louis\"],\"pids\":[{\"value\":\"10.1142/S0217732397001552\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/2078/31591\",\"license\":\"OPEN\",\"hostedby\":\"Dépôt Institutionel de l’Université catholique de Louvain et de l’Université Saint-Louis\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1142/S0217732397001552\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ph/9612430\",\"id\":\"oai:arXiv.org:hep-ph/9612430\"},\"trust\":0.31672603}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Dépôt Institutionel de l’Université catholique de Louvain et de l’Université Saint-Louis"},"target_publication_id":{"type":"STRING","value":"oai:dial.academielouvain.be:31591"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fang, Zhen Yun","Lopez Castro, G.","Lucio, J. L.","Pestieau, Jean"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ph/9612430"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["High Energy Physics - Phenomenology"]},"trust":{"type":"FLOAT","value":0.31672603},"target_publication_title":{"type":"STRING","value":"Effective SU(2)-L x U(1) theory and the Higgs boson mass"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1714726c817af50457d810aae9d27a2e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:dial.academielouvain.be:31591\",\"titles\":[\"Effective SU(2)-L x U(1) theory and the Higgs boson mass\"],\"abstracts\":[\"We assume the stability of vacuum under radiative corrections in the context of the standard electroweak theory. We find that this theory behaves as a good effective model already at cut off energy scales as low as 0.7 TeV. This stability criterion allows to predict m_H\\u003d 318 +- 13 GeV for the Higgs boson mass. Comment: Latex, 5 pages, 1 Postscript figure included\"],\"language\":\"eng\",\"subjects\":[\"High Energy Physics - Phenomenology\"],\"creators\":[\"Fang, Zhen Yun\",\"Lopez Castro, G.\",\"Lucio, J. L.\",\"Pestieau, Jean\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"UCL - SC/PHYS - Département de physique\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Dépôt Institutionel de l’Université catholique de Louvain et de l’Université Saint-Louis\"],\"pids\":[{\"value\":\"10.1142/S0217732397001552\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/2078/31591\",\"license\":\"OPEN\",\"hostedby\":\"Dépôt Institutionel de l’Université catholique de Louvain et de l’Université Saint-Louis\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1142/S0217732397001552\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ph/9612430\",\"id\":\"oai:arXiv.org:hep-ph/9612430\"},\"trust\":0.31672603}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Dépôt Institutionel de l’Université catholique de Louvain et de l’Université Saint-Louis"},"target_publication_id":{"type":"STRING","value":"oai:dial.academielouvain.be:31591"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fang, Zhen Yun","Lopez Castro, G.","Lucio, J. L.","Pestieau, Jean"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ph/9612430"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["High Energy Physics - Phenomenology"]},"trust":{"type":"FLOAT","value":0.31672603},"target_publication_title":{"type":"STRING","value":"Effective SU(2)-L x U(1) theory and the Higgs boson mass"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1714726c817af50457d810aae9d27a2e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dial.academielouvain.be:31591\",\"titles\":[\"Effective SU(2)-L x U(1) theory and the Higgs boson mass\"],\"abstracts\":[\"We assume the stability of vacuum under radiative corrections in the context of the standard electroweak theory. We find that this theory behaves as a good effective model already at cut off energy scales as low as 0.7 TeV. This stability criterion allows to predict m_H\\u003d 318 +- 13 GeV for the Higgs boson mass. Comment: Latex, 5 pages, 1 Postscript figure included\"],\"language\":\"eng\",\"subjects\":[\"High Energy Physics - Phenomenology\"],\"creators\":[\"Fang, Zhen Yun\",\"Lopez Castro, G.\",\"Lucio, J. L.\",\"Pestieau, Jean\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"UCL - SC/PHYS - Département de physique\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Dépôt Institutionel de l’Université catholique de Louvain et de l’Université Saint-Louis\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2078/31591\",\"license\":\"OPEN\",\"hostedby\":\"Dépôt Institutionel de l’Université catholique de Louvain et de l’Université Saint-Louis\",\"instancetype\":\"\"},{\"url\":\"http://arxiv.org/abs/hep-ph/9612430\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/hep-ph/9612430\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/hep-ph/9612430\",\"id\":\"oai:arXiv.org:hep-ph/9612430\"},\"trust\":0.03947991}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Dépôt Institutionel de l’Université catholique de Louvain et de l’Université Saint-Louis"},"target_publication_id":{"type":"STRING","value":"oai:dial.academielouvain.be:31591"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fang, Zhen Yun","Lopez Castro, G.","Lucio, J. L.","Pestieau, Jean"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:hep-ph/9612430"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["High Energy Physics - Phenomenology"]},"trust":{"type":"FLOAT","value":0.03947991},"target_publication_title":{"type":"STRING","value":"Effective SU(2)-L x U(1) theory and the Higgs boson mass"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1714726c817af50457d810aae9d27a2e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3320785\",\"titles\":[\"Shared genetic variance between obesity and white matter integrity in Mexican Americans\"],\"abstracts\":[\"Obesity is a chronic metabolic disorder that may also lead to reduced white matter integrity, potentially due to shared genetic risk factors. Genetic correlation analyses were conducted in a large cohort of Mexican American families in San Antonio (N \\u003d 761, 58% females, ages 18–81 years; 41.3 ± 14.5) from the Genetics of Brain Structure and Function Study. Shared genetic variance was calculated between measures of adiposity [(body mass index (BMI; kg/m2) and waist circumference (WC; in)] and whole-brain and regional measurements of cerebral white matter integrity (fractional anisotropy). Whole-brain average and regional fractional anisotropy values for 10 major white matter tracts were calculated from high angular resolution diffusion tensor imaging data (DTI; 1.7 × 1.7 × 3 mm; 55 directions). Additive genetic factors explained intersubject variance in BMI (heritability, h 2 \\u003d 0.58), WC (h 2 \\u003d 0.57), and FA (h 2 \\u003d 0.49). FA shared significant portions of genetic variance with BMI in the genu (ρG \\u003d −0.25), body (ρG \\u003d −0.30), and splenium (ρG \\u003d −0.26) of the corpus callosum, internal capsule (ρG \\u003d −0.29), and thalamic radiation (ρG \\u003d −0.31) (all p\\u0027s \\u003d 0.043). The strongest evidence of shared variance was between BMI/WC and FA in the superior fronto-occipital fasciculus (ρG \\u003d −0.39, p \\u003d 0.020; ρG \\u003d −0.39, p \\u003d 0.030), which highlights region-specific variation in neural correlates of obesity. This may suggest that increase in obesity and reduced white matter integrity share common genetic risk factors.\"],\"language\":\"eng\",\"subjects\":[\"Genetics\",\"Original Research Article\",\"diffusion tensor imaging\",\"genotype\",\"Mexican American\",\"obesity\",\"genetics\",\"white matter\",\"fractional anisotropy\"],\"creators\":[\"Spieker, Elena A.\",\"Kochunov, Peter\",\"Rowland, Laura M.\",\"Sprooten, Emma\",\"Winkler, Anderson M.\",\"Olvera, Rene L.\",\"Almasy, Laura\",\"Duggirala, Ravi\",\"Fox, Peter T.\",\"Blangero, John\"],\"publicationdate\":\"2015-02-01\",\"publisher\":\"Frontiers Media S.A.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Frontiers in Genetics\",\"issn\":\"\",\"eissn\":\"1664-8021\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3389/fgene.2015.00026\",\"type\":\"doi\"},{\"value\":\"PMC4327744\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4327744\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.3389/fgene.2015.00026\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Genetics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.3389/fgene.2015.00026\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Genetics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Frontiers\",\"url\":\"http://dx.doi.org/10.3389/fgene.2015.00026\",\"id\":\"10.3389/fgene.2015.00026\"},\"trust\":0.6024629}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3320785"},"target_publication_author_list":{"type":"LIST_STRING","value":["Spieker, Elena A.","Kochunov, Peter","Rowland, Laura M.","Sprooten, Emma","Winkler, Anderson M.","Olvera, Rene L.","Almasy, Laura","Duggirala, Ravi","Fox, Peter T.","Blangero, John"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.3389/fgene.2015.00026"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::3db634fc5446f389d0b826ea400a5da6"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Genetics","Original Research Article","diffusion tensor imaging","genotype","Mexican American","obesity","genetics","white matter","fractional anisotropy"]},"trust":{"type":"FLOAT","value":0.6024629},"target_publication_title":{"type":"STRING","value":"Shared genetic variance between obesity and white matter integrity in Mexican Americans"},"provenance_datasource_name":{"type":"STRING","value":"Frontiers"},"target_dateofacceptance":{"type":"DATE","value":"2015-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:eprints.lse.ac.uk:8074\",\"titles\":[\"Motility of practiced knowledge: an exploration within the UK construction industry\"],\"abstracts\":[\"This paper introduces a model of intra-organisational knowledge management in terms of motility of practiced knowledge. While existing conceptualisations of knowledge, such a tacit and explicit, have proved a valuable lens for focusing on knowledgeable practices within organisations and in relatively well understood or stable contexts, this paper argues that their use may be less effective in considering practiced knowledge as it is shared and communicated between organisations and when knowledge needs are still being negotiated. Based on research into the construction industry’s approach to the issue of sustainability and the knowledge challenges it poses, this paper introduces the concept of motility of knowledge as an alternative lens through which to make sense of, and improve, the industry’s ability to support innovation for sustainability. A motile account of knowledgeable practice helps us to focus on movement, mutation and decay, and to question the application of existing approaches to knowledge management within inter-organisational domains. The paper concludes with a discussion of the implications for practice.\"],\"language\":\"eng\",\"subjects\":[\"QA75 Electronic computers. Computer science\",\"HD Industries. Land use. Labor\"],\"creators\":[\"Venters, Will\",\"Cushman, Mike\",\"Cornford, Tony\"],\"publicationdate\":\"2003-01-01\",\"publisher\":\"IESE Business School, University of Navarra\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"LSE Research Online\"],\"pids\":[],\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/8074/\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Conference object\"},{\"url\":\"http://eprints.lse.ac.uk/8074/1/Motility_of_practiced_knowledge_%28LSERO%29.pdf\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.lse.ac.uk/8074/1/Motility_of_practiced_knowledge_%28LSERO%29.pdf\",\"license\":\"OPEN\",\"hostedby\":\"LSE Research Online\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.lse.ac.uk/8074/1/Motility_of_practiced_knowledge_%28LSERO%29.pdf\",\"id\":\"oai:eprints.lse.ac.uk:8074\"},\"trust\":0.35735494}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"LSE Research Online"},"target_publication_id":{"type":"STRING","value":"oai:eprints.lse.ac.uk:8074"},"target_publication_author_list":{"type":"LIST_STRING","value":["Venters, Will","Cushman, Mike","Cornford, Tony"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.lse.ac.uk:8074"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["QA75 Electronic computers. Computer science","HD Industries. Land use. Labor"]},"trust":{"type":"FLOAT","value":0.35735494},"target_publication_title":{"type":"STRING","value":"Motility of practiced knowledge: an exploration within the UK construction industry"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2003-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7eabe3a1649ffa2b3ff8c02ebfd5659f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3142627\",\"titles\":[\"A Comparative Qualitative Study of Misconceptions Associated with Contraceptive Use in Southern and Northern Ghana\"],\"abstracts\":[\"Evidence from Ghana consistently shows that unmet need for contraception is pervasive with many possible causes, yet how these may differ by cultural zone remains poorly understood. This qualitative study was designed to elicit information on the nature and form of misconceptions associated with contraceptive use among northern and southern Ghanaians. Twenty-two focus group discussions (FGDs) with married community members were carried out. Community health officers, community health volunteers, and health care managers were also interviewed using a semi-structured interview guide. FGDs and in-depth interviews were recorded digitally, transcribed verbatim, and analyzed using QSR Nvivo 10 to compare contraceptive misconceptions in northern and southern Ghana. Results indicate that misconceptions associated with the use of contraceptives were widespread but similar in both settings. Contraceptives were perceived to predispose women to both primary and secondary infertility, uterine fibroids, and cancers. As regular menstrual flow was believed to prevent uterine fibroids, contraceptive use-related amenorrhea was thought to render acceptors vulnerable to uterine fibroids as well as cervical and breast cancers. Contraceptive acceptors were stigmatized and ridiculed as promiscuous. Among northern respondents, condom use was generally perceived to inhibit erection and therefore capable of inducing male impotence, while in southern Ghana, condom use was believed to reduce sensation and sexual gratification. The study indicates that misconceptions associated with contraceptive use are widespread in both regions. Moreover, despite profound social and contextual differences that distinguish northern and southern Ghanaians, prevailing fears and misconceptions are shared by respondents from both settings. Findings attest to the need for improved communication to provide accurate information for dispelling these misconceptions.\"],\"language\":\"eng\",\"subjects\":[\"Public Health\",\"Original Research\",\"misconceptions\",\"contraceptives\",\"family planning\",\"unmet need\",\"Ghana\"],\"creators\":[\"Adongo, Philip B.\",\"Tabong, Philip T. -N\",\"Azongo, Thomas B.\",\"Phillips, James F.\",\"Sheff, Mallory C.\",\"Stone, Allison E.\",\"Tapsoba, Placide\"],\"publicationdate\":\"2014-09-01\",\"publisher\":\"Frontiers Media S.A.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Frontiers in Public Health\",\"issn\":\"\",\"eissn\":\"2296-2565\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3389/fpubh.2014.00137\",\"type\":\"doi\"},{\"value\":\"PMC4155786\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4155786\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.3389/fpubh.2014.00137\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Public Health\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.3389/fpubh.2014.00137\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Public Health\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Frontiers\",\"url\":\"http://dx.doi.org/10.3389/fpubh.2014.00137\",\"id\":\"10.3389/fpubh.2014.00137\"},\"trust\":0.86895895}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3142627"},"target_publication_author_list":{"type":"LIST_STRING","value":["Adongo, Philip B.","Tabong, Philip T. -N","Azongo, Thomas B.","Phillips, James F.","Sheff, Mallory C.","Stone, Allison E.","Tapsoba, Placide"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.3389/fpubh.2014.00137"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::3db634fc5446f389d0b826ea400a5da6"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Public Health","Original Research","misconceptions","contraceptives","family planning","unmet need","Ghana"]},"trust":{"type":"FLOAT","value":0.86895895},"target_publication_title":{"type":"STRING","value":"A Comparative Qualitative Study of Misconceptions Associated with Contraceptive Use in Southern and Northern Ghana"},"provenance_datasource_name":{"type":"STRING","value":"Frontiers"},"target_dateofacceptance":{"type":"DATE","value":"2014-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00605747v1\",\"titles\":[\"Programmes et manuels d\\u0027histoire-géographie : formation citoyenne à la pluralité européenne ou reproduction des idéologies dominantes ?\"],\"abstracts\":[\"Cet article analyse le traitement de la diversité linguistique dans plusieurs manuels scolaires français destinés à des élèves de 4e.\"],\"language\":\"fra/fre\",\"subjects\":[\"colonialisme\",\"programmes scolaires\",\"histoire\",\"france\",\"idéologies linguistique\",\"manuels scolaires\",\"[SHS.LANGUE] Humanities and Social Sciences/Linguistics\",\"[SHS.ANTHRO-SE] Humanities and Social Sciences/Social Anthropology and ethnology\",\"[SHS.SOCIO] Humanities and Social Sciences/Sociology\"],\"creators\":[\"Costa, James\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Interactions, Corpus, Apprentissages, Représentations (ICAR) ; INRP - Université Lumière - Lyon II - École Normale Supérieure (ENS) - Lyon - Ecole Normale Supérieure Lettres et Sciences Humaines - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00605747\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00605747\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00605747\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00605747\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00605747\"},\"trust\":0.30371255}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00605747v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Costa, James"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00605747"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["colonialisme","programmes scolaires","histoire","france","idéologies linguistique","manuels scolaires","[SHS.LANGUE] Humanities and Social Sciences/Linguistics","[SHS.ANTHRO-SE] Humanities and Social Sciences/Social Anthropology and ethnology","[SHS.SOCIO] Humanities and Social Sciences/Sociology"]},"trust":{"type":"FLOAT","value":0.30371255},"target_publication_title":{"type":"STRING","value":"Programmes et manuels d\u0027histoire-géographie : formation citoyenne à la pluralité européenne ou reproduction des idéologies dominantes ?"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00605747\",\"titles\":[\"Programmes et manuels d\\u0027histoire-géographie : formation citoyenne à la pluralité européenne ou reproduction des idéologies dominantes ?\"],\"abstracts\":[\"Cet article analyse le traitement de la diversité linguistique dans plusieurs manuels scolaires français destinés à des élèves de 4e.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:LANGUE] Humanities and Social Sciences/Linguistics\",\"[SHS:LANGUE] Sciences de l\\u0027Homme et Société/Linguistique\",\"[SHS:ANTHRO_SE] Humanities and Social Sciences/Social Anthropology and ethnology\",\"[SHS:ANTHRO_SE] Sciences de l\\u0027Homme et Société/Anthropologie sociale et ethnologie\",\"[SHS:SOCIO] Humanities and Social Sciences/Sociology\",\"[SHS:SOCIO] Sciences de l\\u0027Homme et Société/Sociologie\",\"manuels scolaires\",\"idéologies linguistique\",\"france\",\"histoire\",\"programmes scolaires\",\"colonialisme\"],\"creators\":[\"Costa, James\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00605747\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00605747\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00605747\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00605747\",\"id\":\"oai:HAL:halshs-00605747v1\"},\"trust\":0.6263356}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00605747"},"target_publication_author_list":{"type":"LIST_STRING","value":["Costa, James"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00605747v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:LANGUE] Humanities and Social Sciences/Linguistics","[SHS:LANGUE] Sciences de l\u0027Homme et Société/Linguistique","[SHS:ANTHRO_SE] Humanities and Social Sciences/Social Anthropology and ethnology","[SHS:ANTHRO_SE] Sciences de l\u0027Homme et Société/Anthropologie sociale et ethnologie","[SHS:SOCIO] Humanities and Social Sciences/Sociology","[SHS:SOCIO] Sciences de l\u0027Homme et Société/Sociologie","manuels scolaires","idéologies linguistique","france","histoire","programmes scolaires","colonialisme"]},"trust":{"type":"FLOAT","value":0.6263356},"target_publication_title":{"type":"STRING","value":"Programmes et manuels d\u0027histoire-géographie : formation citoyenne à la pluralité européenne ou reproduction des idéologies dominantes ?"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.tue.nl:455458\",\"titles\":[\"Performance management in manufacturing : a method for short term performance evaluation and diagnosis\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"dissertations the and tu/e\",\"production management (general)\",\"management science: dissertations\",\"productivity improvement\",\"production control\",\"productivity measurement\"],\"creators\":[\"Stoop, Ppm\"],\"publicationdate\":\"1996-01-01\",\"publisher\":\"Technische Universiteit Eindhoven\",\"embargoenddate\":\"\",\"contributor\":[\"Bertrand, JWM (Will) (Promotor)\",\"Theeuwes, JAM (Jacques) (Promotor)\",\"Dirne, CWGM (Corné) (Co-promotor)\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repository TU/e\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.tue.nl/455458\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"http://repository.tue.nl/455458\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.tue.nl/455458\",\"license\":\"OPEN\",\"hostedby\":\"Repository TU/e\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://repository.tue.nl/455458\",\"id\":\"tue:oai:library.tue.nl:455458\"},\"trust\":0.557245}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repository TU/e"},"target_publication_id":{"type":"STRING","value":"oai:library.tue.nl:455458"},"target_publication_author_list":{"type":"LIST_STRING","value":["Stoop, Ppm"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tue:oai:library.tue.nl:455458"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["dissertations the and tu/e","production management (general)","management science: dissertations","productivity improvement","production control","productivity measurement"]},"trust":{"type":"FLOAT","value":0.557245},"target_publication_title":{"type":"STRING","value":"Performance management in manufacturing : a method for short term performance evaluation and diagnosis"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1996-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::99c5e07b4d5de9d18c350cdf64c5aa3d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:DiVA.org:ntnu-5917\",\"titles\":[\"Fiskeribiologiske undersøkelser i Frøyningsvassdraget, Namsskogan 1974\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Langeland, Arnfinn\"],\"publicationdate\":\"1974-01-01\",\"publisher\":\"Trondheim : NTNU Vitenskapsmuseet\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Publikasjoner fra Norges teknisk-naturvitenskapelige universitet\"],\"pids\":[],\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:no:ntnu:diva-5917\",\"license\":\"OPEN\",\"hostedby\":\"Publikasjoner fra Norges teknisk-naturvitenskapelige universitet\",\"instancetype\":\"Report\"},{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:no:ntnu:diva-5917\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:no:ntnu:diva-5917\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"Norwegian Open Research Archives\",\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:no:ntnu:diva-5917\",\"id\":\"\"},\"trust\":0.0094816685}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Publikasjoner fra Norges teknisk-naturvitenskapelige universitet"},"target_publication_id":{"type":"STRING","value":"oai:DiVA.org:ntnu-5917"},"target_publication_author_list":{"type":"LIST_STRING","value":["Langeland, Arnfinn"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"},"trust":{"type":"FLOAT","value":0.0094816685},"target_publication_title":{"type":"STRING","value":"Fiskeribiologiske undersøkelser i Frøyningsvassdraget, Namsskogan 1974"},"provenance_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_dateofacceptance":{"type":"DATE","value":"1974-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5ea1649a31336092c05438df996a3e59"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"\",\"titles\":[\"Fiskeribiologiske undersøkelser i Frøyningsvassdraget, Namsskogan 1974\"],\"abstracts\":[],\"language\":\"nor\",\"subjects\":[],\"creators\":[\"Langeland, Arnfinn\"],\"publicationdate\":\"1974-01-01\",\"publisher\":\"Trondheim : NTNU Vitenskapsmuseet\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Norwegian Open Research Archives\"],\"pids\":[],\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:no:ntnu:diva-5917\",\"license\":\"OPEN\",\"hostedby\":\"Norwegian Open Research Archives\",\"instancetype\":\"Report\"},{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:no:ntnu:diva-5917\",\"license\":\"OPEN\",\"hostedby\":\"Publikasjoner fra Norges teknisk-naturvitenskapelige universitet\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:no:ntnu:diva-5917\",\"license\":\"OPEN\",\"hostedby\":\"Publikasjoner fra Norges teknisk-naturvitenskapelige universitet\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"Publikasjoner fra Norges teknisk-naturvitenskapelige universitet\",\"url\":\"http://urn.kb.se/resolve?urn\\u003durn:nbn:no:ntnu:diva-5917\",\"id\":\"oai:DiVA.org:ntnu-5917\"},\"trust\":0.59757566}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Norwegian Open Research Archives"},"target_publication_id":{"type":"STRING","value":""},"target_publication_author_list":{"type":"LIST_STRING","value":["Langeland, Arnfinn"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:DiVA.org:ntnu-5917"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5ea1649a31336092c05438df996a3e59"},"trust":{"type":"FLOAT","value":0.59757566},"target_publication_title":{"type":"STRING","value":"Fiskeribiologiske undersøkelser i Frøyningsvassdraget, Namsskogan 1974"},"provenance_datasource_name":{"type":"STRING","value":"Publikasjoner fra Norges teknisk-naturvitenskapelige universitet"},"target_dateofacceptance":{"type":"DATE","value":"1974-01-01"},"target_datasource_id":{"type":"STRING","value":"10|driver______::4dc196be332447baf11e431bd838e81c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:emse-00840099v1\",\"titles\":[\"INVESTIGATION OF BORON AND NITROGEN ION BEAM IMPLANTATION IN GOLD THIN FILMS FOR OHMIC MEMS SWITCH CONTACT IMPROVEMENT\"],\"abstracts\":[\"International audience\",\"Contact material and more precisely surface properties are a major issue for RF MEMS ohmic switch reliability. Shallow ion implantation of boron and nitrogen on gold thin film is investigated to increase surface hardness with a limited impact on Electrical Contact Resistance (ECR). The implantation energies were chosen to place the concentration peak of the implanted species at a depth of 100 nm. A microstructural analysis shows that the hardness increases with boron concentration due to a solid solution hardening mechanism, whereas in case of nitrogen, for concentration above 1%, the nitrogen precipitates into a nitride phase correlated to a hardness decrease. The ECR is measured using a Nanoindenter XP which experimental setup reproduces MEMS ohmic switch contact (from 100 μN to 1 mN applied loads under 1 mA). A notable result is obtained with a boron dose of 7.37 x 1016 ions/cm² at 90 keV into gold thin film: 50% hardness increase and 2.6 times higher ECR than pure gold.\"],\"language\":\"eng\",\"subjects\":[\"Ohmic MEMS switch\",\"Lifetime\",\"Electrical contact resistance\",\"[PHYS.MECA.MSMECA] Physics/Mechanics/Materials and structures in mechanics\",\"[SPI.MECA.MSMECA] Engineering Sciences/Mechanics/Materials and structures in mechanics\"],\"creators\":[\"Arrazat, Brice\",\"Inal, Karim\",\"Gergaud, Patrice\"],\"publicationdate\":\"2013-06-17\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Département Packaging et Supports Souples (PS2-ENSMSE) ; École Nationale Supérieure des Mines - Saint-Étienne - CMP-GC\",\"Centre de Mise en Forme des Matériaux (CEMEF) ; MINES ParisTech - École nationale supérieure des mines de Paris - CNRS\",\"Laboratoire d\\u0027Electronique et des Technologies de l\\u0027Information (LETI) ; CEA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal-emse.ccsd.cnrs.fr/emse-00840099\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal-emse.ccsd.cnrs.fr/emse-00840099\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-emse.ccsd.cnrs.fr/emse-00840099\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-emse.ccsd.cnrs.fr/emse-00840099\",\"id\":\"oai:hal-emse.ccsd.cnrs.fr:emse-00840099\"},\"trust\":0.470886}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:emse-00840099v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Arrazat, Brice","Inal, Karim","Gergaud, Patrice"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal-emse.ccsd.cnrs.fr:emse-00840099"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Ohmic MEMS switch","Lifetime","Electrical contact resistance","[PHYS.MECA.MSMECA] Physics/Mechanics/Materials and structures in mechanics","[SPI.MECA.MSMECA] Engineering Sciences/Mechanics/Materials and structures in mechanics"]},"trust":{"type":"FLOAT","value":0.470886},"target_publication_title":{"type":"STRING","value":"INVESTIGATION OF BORON AND NITROGEN ION BEAM IMPLANTATION IN GOLD THIN FILMS FOR OHMIC MEMS SWITCH CONTACT IMPROVEMENT"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-06-17"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal-emse.ccsd.cnrs.fr:emse-00840099\",\"titles\":[\"INVESTIGATION OF BORON AND NITROGEN ION BEAM IMPLANTATION IN GOLD THIN FILMS FOR OHMIC MEMS SWITCH CONTACT IMPROVEMENT\"],\"abstracts\":[\"Contact material and more precisely surface properties are a major issue for RF MEMS ohmic switch reliability. Shallow ion implantation of boron and nitrogen on gold thin film is investigated to increase surface hardness with a limited impact on Electrical Contact Resistance (ECR). The implantation energies were chosen to place the concentration peak of the implanted species at a depth of 100 nm. A microstructural analysis shows that the hardness increases with boron concentration due to a solid solution hardening mechanism, whereas in case of nitrogen, for concentration above 1%, the nitrogen precipitates into a nitride phase correlated to a hardness decrease. The ECR is measured using a Nanoindenter XP which experimental setup reproduces MEMS ohmic switch contact (from 100 μN to 1 mN applied loads under 1 mA). A notable result is obtained with a boron dose of 7.37 x 1016 ions/cm² at 90 keV into gold thin film: 50% hardness increase and 2.6 times higher ECR than pure gold.\"],\"language\":\"eng\",\"subjects\":[\"[PHYS:MECA:MSMECA] Physics/Mechanics/Materials and structures in mechanics\",\"[PHYS:MECA:MSMECA] Physique/Mécanique/Matériaux et structures en mécanique\",\"[SPI:MECA:MSMECA] Engineering Sciences/Mechanics/Materials and structures in mechanics\",\"[SPI:MECA:MSMECA] Sciences de l\\u0027ingénieur/Mécanique/Matériaux et structures en mécanique\",\"Ohmic MEMS switch\",\"Lifetime\",\"Electrical contact resistance\"],\"creators\":[\"Arrazat, Brice\",\"Inal, Karim\",\"Gergaud, Patrice\"],\"publicationdate\":\"2013-04-02\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal-emse.ccsd.cnrs.fr/emse-00840099\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"http://hal-emse.ccsd.cnrs.fr/emse-00840099\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-emse.ccsd.cnrs.fr/emse-00840099\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-emse.ccsd.cnrs.fr/emse-00840099\",\"id\":\"oai:HAL:emse-00840099v1\"},\"trust\":0.9253887}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal-emse.ccsd.cnrs.fr:emse-00840099"},"target_publication_author_list":{"type":"LIST_STRING","value":["Arrazat, Brice","Inal, Karim","Gergaud, Patrice"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:emse-00840099v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[PHYS:MECA:MSMECA] Physics/Mechanics/Materials and structures in mechanics","[PHYS:MECA:MSMECA] Physique/Mécanique/Matériaux et structures en mécanique","[SPI:MECA:MSMECA] Engineering Sciences/Mechanics/Materials and structures in mechanics","[SPI:MECA:MSMECA] Sciences de l\u0027ingénieur/Mécanique/Matériaux et structures en mécanique","Ohmic MEMS switch","Lifetime","Electrical contact resistance"]},"trust":{"type":"FLOAT","value":0.9253887},"target_publication_title":{"type":"STRING","value":"INVESTIGATION OF BORON AND NITROGEN ION BEAM IMPLANTATION IN GOLD THIN FILMS FOR OHMIC MEMS SWITCH CONTACT IMPROVEMENT"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-04-02"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repub.eur.nl:72122\",\"titles\":[\"Sex steroid receptor expression in \\u0027carcinoid\\u0027 tumours of the breast\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Androgen receptor\",\"Argyrophilic cells\",\"Breast cancer\",\"Carcinoid\",\"Chromogranin A\",\"Estrogen receptor\",\"Grimelius silver stain\",\"Progesterone receptor\"],\"creators\":[\"Birsak, C. A.\",\"Janssen, P. J. A.\",\"Vroonhoven, C. C. J.\",\"Peterse, J. L.\",\"Kwast, Th H.\"],\"publicationdate\":\"1996-10-19\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Erasmus University Institutional Repository\"],\"pids\":[{\"value\":\"10.1007/BF01806812\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://repub.eur.nl/pub/72122\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/1765/72122\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/1765/72122\",\"license\":\"OPEN\",\"hostedby\":\"Erasmus University Institutional Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://hdl.handle.net/1765/72122\",\"id\":\"eur:oai:repub.eur.nl:72122\"},\"trust\":0.5736497}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Erasmus University Institutional Repository"},"target_publication_id":{"type":"STRING","value":"oai:repub.eur.nl:72122"},"target_publication_author_list":{"type":"LIST_STRING","value":["Birsak, C. A.","Janssen, P. J. A.","Vroonhoven, C. C. J.","Peterse, J. L.","Kwast, Th H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["eur:oai:repub.eur.nl:72122"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Androgen receptor","Argyrophilic cells","Breast cancer","Carcinoid","Chromogranin A","Estrogen receptor","Grimelius silver stain","Progesterone receptor"]},"trust":{"type":"FLOAT","value":0.5736497},"target_publication_title":{"type":"STRING","value":"Sex steroid receptor expression in \u0027carcinoid\u0027 tumours of the breast"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1996-10-19"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9c3b1830513cc3b8fc4b76635d32e692"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:doc.utwente.nl:24205\",\"titles\":[\"Device equivalence in integrated optics\"],\"abstracts\":[\"The concept of device equivalence is introduced. In equivalent devices, the light propagation can be described by identically evolving modal expansions, resulting in identical power transfer ratios. By first applying this concept to a z-invariant structure with a low refractive-index contrast it is shown how a normalized coordinate space can be defined in which equivalent structures have exactly the same geometry. Subsequently it is shown how this normalized coordinate space can be defined for z-variant integrated optical devices, again provided that the lateral refractive-index contrast is small. This normalization makes it possible to perform numerical device simulations in normalized coordinate space, the results being applicable to a large set of equivalent devices. Furthermore, starting from a known design, it simplifies redesigning that device for use at another wavelength or using other materials significantly, the resulting device being equivalent to the original one\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Berends, Johan H.\",\"Veldhuis, Gerrit J.\",\"Lambeck, Paul V.\",\"Popma, Theo J. A.\"],\"publicationdate\":\"1995-01-01\",\"publisher\":\"IEEE\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit Twente Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://purl.utwente.nl/publications/24205\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://purl.utwente.nl/publications/24205\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://purl.utwente.nl/publications/24205\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://purl.utwente.nl/publications/24205\",\"id\":\"ut:oai:doc.utwente.nl:24205\"},\"trust\":0.963945}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit Twente Repository"},"target_publication_id":{"type":"STRING","value":"oai:doc.utwente.nl:24205"},"target_publication_author_list":{"type":"LIST_STRING","value":["Berends, Johan H.","Veldhuis, Gerrit J.","Lambeck, Paul V.","Popma, Theo J. A."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["ut:oai:doc.utwente.nl:24205"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.963945},"target_publication_title":{"type":"STRING","value":"Device equivalence in integrated optics"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1995-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8dd48d6a2e2cad213179a3992c0be53c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ipc:opager:119\",\"titles\":[\"How Can Petrobras Biocombustíveis Engage Small-Scale Farmers While Promoting Sustainability in Brazil?s Biodiesel Programme?\"],\"abstracts\":[\"Our research indicates that Petrobras Biocombustíveis can help alleviate poverty among small-scale family farmers by enhancing stakeholder integration into the Brazilian biodiesel programme. This corroborates numerous studies pointing out the importance of stakeholder networks (Rowley, 1997; Roloff, 2008), which can be particularly significant in programmes that aim to incorporate small-scale farmers into internationally driven markets. Petrobras Biocombustíveis needs to improve the involvement of such farmers, especially in the northeast of Brazil, by identifying and engaging representatives of economic and social arenas to form stakeholder networks. (?)\"],\"language\":\"und\",\"subjects\":[\"How Can Petrobras Biocombustíveis Engage Small-Scale Farmers While Promoting Sustainability in Brazil?s Biodiesel Programme?\"],\"creators\":[\"Clovis Zapata\",\"Diego Vazquez-Brust\",\"José Plaza-Úbeda\"],\"publicationdate\":\"2010-10-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ipc-undp.org/pub/IPCOnePager119.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.ipc-undp.org/pub/arab/IPCOnePager119.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ipc-undp.org/pub/arab/IPCOnePager119.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.ipc-undp.org/pub/arab/IPCOnePager119.pdf\",\"id\":\"oai:RePEc:ipc:oparab:119\"},\"trust\":0.42543304}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ipc:opager:119"},"target_publication_author_list":{"type":"LIST_STRING","value":["Clovis Zapata","Diego Vazquez-Brust","José Plaza-Úbeda"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ipc:oparab:119"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["How Can Petrobras Biocombustíveis Engage Small-Scale Farmers While Promoting Sustainability in Brazil?s Biodiesel Programme?"]},"trust":{"type":"FLOAT","value":0.42543304},"target_publication_title":{"type":"STRING","value":"How Can Petrobras Biocombustíveis Engage Small-Scale Farmers While Promoting Sustainability in Brazil?s Biodiesel Programme?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2010-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ipc:oparab:119\",\"titles\":[\"How Can Petrobras Biocombustíveis Engage Small-Scale Farmers While Promoting Sustainability in Brazil?s Biodiesel Programme?\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"How Can Petrobras Biocombustíveis Engage Small-Scale Farmers While Promoting Sustainability in Brazil?s Biodiesel Programme?\"],\"creators\":[\"Clovis Zapata\",\"Diego Vazquez-Brust\",\"José Plaza-Úbeda\"],\"publicationdate\":\"2011-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ipc-undp.org/pub/arab/IPCOnePager119.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.ipc-undp.org/pub/IPCOnePager119.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ipc-undp.org/pub/IPCOnePager119.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.ipc-undp.org/pub/IPCOnePager119.pdf\",\"id\":\"oai:RePEc:ipc:opager:119\"},\"trust\":0.14433384}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ipc:oparab:119"},"target_publication_author_list":{"type":"LIST_STRING","value":["Clovis Zapata","Diego Vazquez-Brust","José Plaza-Úbeda"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ipc:opager:119"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["How Can Petrobras Biocombustíveis Engage Small-Scale Farmers While Promoting Sustainability in Brazil?s Biodiesel Programme?"]},"trust":{"type":"FLOAT","value":0.14433384},"target_publication_title":{"type":"STRING","value":"How Can Petrobras Biocombustíveis Engage Small-Scale Farmers While Promoting Sustainability in Brazil?s Biodiesel Programme?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ipc:oparab:119\",\"titles\":[\"How Can Petrobras Biocombustíveis Engage Small-Scale Farmers While Promoting Sustainability in Brazil?s Biodiesel Programme?\"],\"abstracts\":[\"Our research indicates that Petrobras Biocombustíveis can help alleviate poverty among small-scale family farmers by enhancing stakeholder integration into the Brazilian biodiesel programme. This corroborates numerous studies pointing out the importance of stakeholder networks (Rowley, 1997; Roloff, 2008), which can be particularly significant in programmes that aim to incorporate small-scale farmers into internationally driven markets. Petrobras Biocombustíveis needs to improve the involvement of such farmers, especially in the northeast of Brazil, by identifying and engaging representatives of economic and social arenas to form stakeholder networks. (?)\"],\"language\":\"und\",\"subjects\":[\"How Can Petrobras Biocombustíveis Engage Small-Scale Farmers While Promoting Sustainability in Brazil?s Biodiesel Programme?\"],\"creators\":[\"Clovis Zapata\",\"Diego Vazquez-Brust\",\"José Plaza-Úbeda\"],\"publicationdate\":\"2011-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.ipc-undp.org/pub/arab/IPCOnePager119.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"Our research indicates that Petrobras Biocombustíveis can help alleviate poverty among small-scale family farmers by enhancing stakeholder integration into the Brazilian biodiesel programme. This corroborates numerous studies pointing out the importance of stakeholder networks (Rowley, 1997; Roloff, 2008), which can be particularly significant in programmes that aim to incorporate small-scale farmers into internationally driven markets. Petrobras Biocombustíveis needs to improve the involvement of such farmers, especially in the northeast of Brazil, by identifying and engaging representatives of economic and social arenas to form stakeholder networks. (?)\"]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.ipc-undp.org/pub/IPCOnePager119.pdf\",\"id\":\"oai:RePEc:ipc:opager:119\"},\"trust\":0.84703624}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ipc:oparab:119"},"target_publication_author_list":{"type":"LIST_STRING","value":["Clovis Zapata","Diego Vazquez-Brust","José Plaza-Úbeda"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ipc:opager:119"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["How Can Petrobras Biocombustíveis Engage Small-Scale Farmers While Promoting Sustainability in Brazil?s Biodiesel Programme?"]},"trust":{"type":"FLOAT","value":0.84703624},"target_publication_title":{"type":"STRING","value":"How Can Petrobras Biocombustíveis Engage Small-Scale Farmers While Promoting Sustainability in Brazil?s Biodiesel Programme?"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:28861\",\"titles\":[\"Hate Source: White Supremacist Hate Groups and Hate Crime\"],\"abstracts\":[\"The relationship between hate group activity and hate crime is theoretically ambiguous. Hate groups may incite criminal behavior in support of their beliefs. On the other hand, hate groups may reduce hate crime by serving as a forum for members to verbally vent their frustrations or as protection from future biased violence. I find that the presence of an active white supremacist hate group chapter is associated with an 18.7 percent higher hate crime rate. White supremacist groups are not associated with the level of anti-white hate crimes committed by non-whites, nor do they form in expectation of future hate crimes by non-whites.\"],\"language\":\"und\",\"subjects\":[\"hate crime, hate groups, white supremacist\"],\"creators\":[\"Mulholland, Sean E.\"],\"publicationdate\":\"2011-02-11\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/28861/1/MPRA_paper_28861.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/28861/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/28861/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/28861/\",\"id\":\"28861\"},\"trust\":0.4417222}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:28861"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mulholland, Sean E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["28861"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["hate crime, hate groups, white supremacist"]},"trust":{"type":"FLOAT","value":0.4417222},"target_publication_title":{"type":"STRING","value":"Hate Source: White Supremacist Hate Groups and Hate Crime"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-02-11"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:28861\",\"titles\":[\"Hate Source: White Supremacist Hate Groups and Hate Crime\"],\"abstracts\":[\"The relationship between hate group activity and hate crime is theoretically ambiguous. Hate groups may incite criminal behavior in support of their beliefs. On the other hand, hate groups may reduce hate crime by serving as a forum for members to verbally vent their frustrations or as protection from future biased violence. I find that the presence of an active white supremacist hate group chapter is associated with an 18.7 percent higher hate crime rate. White supremacist groups are not associated with the level of anti-white hate crimes committed by non-whites, nor do they form in expectation of future hate crimes by non-whites.\"],\"language\":\"und\",\"subjects\":[\"hate crime, hate groups, white supremacist\"],\"creators\":[\"Mulholland, Sean E.\"],\"publicationdate\":\"2011-02-11\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/28861/1/MPRA_paper_28861.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/28861/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/28861/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/28861/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:28861\"},\"trust\":0.40044338}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:28861"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mulholland, Sean E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:28861"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["hate crime, hate groups, white supremacist"]},"trust":{"type":"FLOAT","value":0.40044338},"target_publication_title":{"type":"STRING","value":"Hate Source: White Supremacist Hate Groups and Hate Crime"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-02-11"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"28861\",\"titles\":[\"Hate Source: White Supremacist Hate Groups and Hate Crime\"],\"abstracts\":[\"The relationship between hate group activity and hate crime is theoretically ambiguous. Hate groups may incite criminal behavior in support of their beliefs. On the other hand, hate groups may reduce hate crime by serving as a forum for members to verbally vent their frustrations or as protection from future biased violence. I find that the presence of an active white supremacist hate group chapter is associated with an 18.7 percent higher hate crime rate. White supremacist groups are not associated with the level of anti-white hate crimes committed by non-whites, nor do they form in expectation of future hate crimes by non-whites.\"],\"language\":\"eng\",\"subjects\":[\"D71 - Social Choice ; Clubs ; Committees ; Associations\",\"J15 - Economics of Minorities, Races, Indigenous Peoples, and Immigrants ; Non-labor Discrimination\",\"K14 - Criminal Law\"],\"creators\":[\"Mulholland, Sean E.\"],\"publicationdate\":\"2011-02-11\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/28861/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/28861/1/MPRA_paper_28861.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/28861/1/MPRA_paper_28861.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/28861/1/MPRA_paper_28861.pdf\",\"id\":\"oai:RePEc:pra:mprapa:28861\"},\"trust\":0.17855936}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"28861"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mulholland, Sean E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:28861"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D71 - Social Choice ; Clubs ; Committees ; Associations","J15 - Economics of Minorities, Races, Indigenous Peoples, and Immigrants ; Non-labor Discrimination","K14 - Criminal Law"]},"trust":{"type":"FLOAT","value":0.17855936},"target_publication_title":{"type":"STRING","value":"Hate Source: White Supremacist Hate Groups and Hate Crime"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-02-11"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"28861\",\"titles\":[\"Hate Source: White Supremacist Hate Groups and Hate Crime\"],\"abstracts\":[\"The relationship between hate group activity and hate crime is theoretically ambiguous. Hate groups may incite criminal behavior in support of their beliefs. On the other hand, hate groups may reduce hate crime by serving as a forum for members to verbally vent their frustrations or as protection from future biased violence. I find that the presence of an active white supremacist hate group chapter is associated with an 18.7 percent higher hate crime rate. White supremacist groups are not associated with the level of anti-white hate crimes committed by non-whites, nor do they form in expectation of future hate crimes by non-whites.\"],\"language\":\"eng\",\"subjects\":[\"D71 - Social Choice ; Clubs ; Committees ; Associations\",\"J15 - Economics of Minorities, Races, Indigenous Peoples, and Immigrants ; Non-labor Discrimination\",\"K14 - Criminal Law\"],\"creators\":[\"Mulholland, Sean E.\"],\"publicationdate\":\"2011-02-11\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/28861/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/28861/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/28861/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/28861/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:28861\"},\"trust\":0.92951447}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"28861"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mulholland, Sean E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:28861"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D71 - Social Choice ; Clubs ; Committees ; Associations","J15 - Economics of Minorities, Races, Indigenous Peoples, and Immigrants ; Non-labor Discrimination","K14 - Criminal Law"]},"trust":{"type":"FLOAT","value":0.92951447},"target_publication_title":{"type":"STRING","value":"Hate Source: White Supremacist Hate Groups and Hate Crime"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-02-11"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:28861\",\"titles\":[\"Hate Source: White Supremacist Hate Groups and Hate Crime\"],\"abstracts\":[\"The relationship between hate group activity and hate crime is theoretically ambiguous. Hate groups may incite criminal behavior in support of their beliefs. On the other hand, hate groups may reduce hate crime by serving as a forum for members to verbally vent their frustrations or as protection from future biased violence. I find that the presence of an active white supremacist hate group chapter is associated with an 18.7 percent higher hate crime rate. White supremacist groups are not associated with the level of anti-white hate crimes committed by non-whites, nor do they form in expectation of future hate crimes by non-whites.\"],\"language\":\"eng\",\"subjects\":[\"D71 - Social Choice ; Clubs ; Committees ; Associations\",\"J15 - Economics of Minorities, Races, Indigenous Peoples, and Immigrants ; Non-labor Discrimination\",\"K14 - Criminal Law\"],\"creators\":[\"Mulholland, Sean E.\"],\"publicationdate\":\"2011-02-11\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/28861/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/28861/1/MPRA_paper_28861.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/28861/1/MPRA_paper_28861.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/28861/1/MPRA_paper_28861.pdf\",\"id\":\"oai:RePEc:pra:mprapa:28861\"},\"trust\":0.4328856}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:28861"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mulholland, Sean E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:28861"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D71 - Social Choice ; Clubs ; Committees ; Associations","J15 - Economics of Minorities, Races, Indigenous Peoples, and Immigrants ; Non-labor Discrimination","K14 - Criminal Law"]},"trust":{"type":"FLOAT","value":0.4328856},"target_publication_title":{"type":"STRING","value":"Hate Source: White Supremacist Hate Groups and Hate Crime"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2011-02-11"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:28861\",\"titles\":[\"Hate Source: White Supremacist Hate Groups and Hate Crime\"],\"abstracts\":[\"The relationship between hate group activity and hate crime is theoretically ambiguous. Hate groups may incite criminal behavior in support of their beliefs. On the other hand, hate groups may reduce hate crime by serving as a forum for members to verbally vent their frustrations or as protection from future biased violence. I find that the presence of an active white supremacist hate group chapter is associated with an 18.7 percent higher hate crime rate. White supremacist groups are not associated with the level of anti-white hate crimes committed by non-whites, nor do they form in expectation of future hate crimes by non-whites.\"],\"language\":\"eng\",\"subjects\":[\"D71 - Social Choice ; Clubs ; Committees ; Associations\",\"J15 - Economics of Minorities, Races, Indigenous Peoples, and Immigrants ; Non-labor Discrimination\",\"K14 - Criminal Law\"],\"creators\":[\"Mulholland, Sean E.\"],\"publicationdate\":\"2011-02-11\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/28861/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/28861/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/28861/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"https://mpra.ub.uni-muenchen.de/28861/\",\"id\":\"28861\"},\"trust\":0.6102775}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:28861"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mulholland, Sean E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["28861"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["D71 - Social Choice ; Clubs ; Committees ; Associations","J15 - Economics of Minorities, Races, Indigenous Peoples, and Immigrants ; Non-labor Discrimination","K14 - Criminal Law"]},"trust":{"type":"FLOAT","value":0.6102775},"target_publication_title":{"type":"STRING","value":"Hate Source: White Supremacist Hate Groups and Hate Crime"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2011-02-11"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00298239v1\",\"titles\":[\"A linear theory of physical properties in inhomogeneous sediments and its application to relative paleointensity determination\"],\"abstracts\":[\"International audience\",\"A linear model is developed to study the effect of variations in composition upon extensive physical properties of continuously deposited sediment sequences. By applying this model to natural and synthetic remanence acquisition, an optimal method of relative paleointensity determination is derived. The sediment is regarded as a mixture of independent components, each of which behaves uniformly in depth with respect to its physical properties. The concentration of each sediment component is assumed to independently vary linearly with an external \\\"environmental\\\" signal. Remanence acquisition in each sediment component is linear in external field and concentration of the component. It is demonstrated that in this case the ideal normalization procedure for relative paleointensity determination is to divide the natural remanent magnetization by a biased normalizer. Common magnetic cleaning techniques improve the relative paleointensity record by removing nonlinear behavior and by reducing the bias to the normalizer. The proposed linear sediment model for any extensive physical property clearly separates the influences of concentration of sediment components from those of environmental signals. It thus opens many possibilities for extensions to nonlinear models.\"],\"language\":\"eng\",\"subjects\":[\"[SDU.STU] Sciences of the Universe/Earth Sciences\"],\"creators\":[\"Fabian, K.\"],\"publicationdate\":\"2006-06-22\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Universität Bremen ; FB Geowissenschaften\",\"LMU München ; Department of Earth and Environmental Science\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00298239\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00298239\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00298239\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00298239\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00298239\"},\"trust\":0.67290586}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00298239v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fabian, K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00298239"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDU.STU] Sciences of the Universe/Earth Sciences"]},"trust":{"type":"FLOAT","value":0.67290586},"target_publication_title":{"type":"STRING","value":"A linear theory of physical properties in inhomogeneous sediments and its application to relative paleointensity determination"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2006-06-22"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00298239\",\"titles\":[\"A linear theory of physical properties in inhomogeneous sediments and its application to relative paleointensity determination\"],\"abstracts\":[\"A linear model is developed to study the effect of variations in composition upon extensive physical properties of continuously deposited sediment sequences. By applying this model to natural and synthetic remanence acquisition, an optimal method of relative paleointensity determination is derived. The sediment is regarded as a mixture of independent components, each of which behaves uniformly in depth with respect to its physical properties. The concentration of each sediment component is assumed to independently vary linearly with an external \\\"environmental\\\" signal. Remanence acquisition in each sediment component is linear in external field and concentration of the component. It is demonstrated that in this case the ideal normalization procedure for relative paleointensity determination is to divide the natural remanent magnetization by a biased normalizer. Common magnetic cleaning techniques improve the relative paleointensity record by removing nonlinear behavior and by reducing the bias to the normalizer. The proposed linear sediment model for any extensive physical property clearly separates the influences of concentration of sediment components from those of environmental signals. It thus opens many possibilities for extensions to nonlinear models.\"],\"language\":\"eng\",\"subjects\":[\"[SDU:STU] Sciences of the Universe/Earth Sciences\",\"[SDU:STU] Planète et Univers/Sciences de la Terre\"],\"creators\":[\"Fabian, K.\"],\"publicationdate\":\"2006-06-22\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00298239\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00298239\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00298239\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00298239\",\"id\":\"oai:HAL:hal-00298239v1\"},\"trust\":0.9130521}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00298239"},"target_publication_author_list":{"type":"LIST_STRING","value":["Fabian, K."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00298239v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDU:STU] Sciences of the Universe/Earth Sciences","[SDU:STU] Planète et Univers/Sciences de la Terre"]},"trust":{"type":"FLOAT","value":0.9130521},"target_publication_title":{"type":"STRING","value":"A linear theory of physical properties in inhomogeneous sediments and its application to relative paleointensity determination"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2006-06-22"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:251085\",\"titles\":[\"Extent of regretted sexual intercourse among young teenagers in Scotland: a cross sectional survey\"],\"abstracts\":[\"\"],\"language\":\"eng\",\"subjects\":[\"Papers\"],\"creators\":[\"Wight, Daniel\",\"Henderson, Marion\",\"Raab, Gillian\",\"Abraham, Charles\",\"Buston, Katie\",\"Scott, Sue\",\"Hart, Graham\"],\"publicationdate\":\"2000-05-06\",\"publisher\":\"British Medical Journal\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC27366\",\"type\":\"pmc\"},{\"value\":\"10.1136/bmj.320.7244.1243\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC27366\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1136/bmj.320.7244.1243\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.gla.ac.uk/112/1/BMJWight2000.pdf\",\"id\":\"oai:eprints.gla.ac.uk:112\"},\"trust\":0.16171056}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:251085"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wight, Daniel","Henderson, Marion","Raab, Gillian","Abraham, Charles","Buston, Katie","Scott, Sue","Hart, Graham"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.gla.ac.uk:112"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Papers"]},"trust":{"type":"FLOAT","value":0.16171056},"target_publication_title":{"type":"STRING","value":"Extent of regretted sexual intercourse among young teenagers in Scotland: a cross sectional survey"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2000-05-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:251085\",\"titles\":[\"Extent of regretted sexual intercourse among young teenagers in Scotland: a cross sectional survey\"],\"abstracts\":[\"\"],\"language\":\"eng\",\"subjects\":[\"Papers\"],\"creators\":[\"Wight, Daniel\",\"Henderson, Marion\",\"Raab, Gillian\",\"Abraham, Charles\",\"Buston, Katie\",\"Scott, Sue\",\"Hart, Graham\"],\"publicationdate\":\"2000-05-06\",\"publisher\":\"British Medical Journal\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC27366\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC27366\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://eprints.gla.ac.uk/112/1/BMJWight2000.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Enlighten\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.gla.ac.uk/112/1/BMJWight2000.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Enlighten\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.gla.ac.uk/112/1/BMJWight2000.pdf\",\"id\":\"oai:eprints.gla.ac.uk:112\"},\"trust\":0.13139236}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:251085"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wight, Daniel","Henderson, Marion","Raab, Gillian","Abraham, Charles","Buston, Katie","Scott, Sue","Hart, Graham"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.gla.ac.uk:112"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Papers"]},"trust":{"type":"FLOAT","value":0.13139236},"target_publication_title":{"type":"STRING","value":"Extent of regretted sexual intercourse among young teenagers in Scotland: a cross sectional survey"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2000-05-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:251085\",\"titles\":[\"Extent of regretted sexual intercourse among young teenagers in Scotland: a cross sectional survey\"],\"abstracts\":[\"\",\"No abstract available.\"],\"language\":\"eng\",\"subjects\":[\"Papers\"],\"creators\":[\"Wight, Daniel\",\"Henderson, Marion\",\"Raab, Gillian\",\"Abraham, Charles\",\"Buston, Katie\",\"Scott, Sue\",\"Hart, Graham\"],\"publicationdate\":\"2000-05-06\",\"publisher\":\"British Medical Journal\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC27366\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC27366\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"No abstract available.\"]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.gla.ac.uk/112/1/BMJWight2000.pdf\",\"id\":\"oai:eprints.gla.ac.uk:112\"},\"trust\":0.75080544}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:251085"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wight, Daniel","Henderson, Marion","Raab, Gillian","Abraham, Charles","Buston, Katie","Scott, Sue","Hart, Graham"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.gla.ac.uk:112"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Papers"]},"trust":{"type":"FLOAT","value":0.75080544},"target_publication_title":{"type":"STRING","value":"Extent of regretted sexual intercourse among young teenagers in Scotland: a cross sectional survey"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2000-05-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:251085\",\"titles\":[\"Extent of regretted sexual intercourse among young teenagers in Scotland: a cross sectional survey\"],\"abstracts\":[\"\"],\"language\":\"eng\",\"subjects\":[\"Papers\"],\"creators\":[\"Wight, Daniel\",\"Henderson, Marion\",\"Raab, Gillian\",\"Abraham, Charles\",\"Buston, Katie\",\"Scott, Sue\",\"Hart, Graham\"],\"publicationdate\":\"2000-05-06\",\"publisher\":\"British Medical Journal\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC27366\",\"type\":\"pmc\"},{\"value\":\"10.1136/bmj.320.7244.1243\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC27366\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1136/bmj.320.7244.1243\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Enlighten\",\"url\":\"http://dx.doi.org/10.1136/bmj.320.7244.1243\",\"id\":\"oai:eprints.gla.ac.uk:112\"},\"trust\":0.81512296}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:251085"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wight, Daniel","Henderson, Marion","Raab, Gillian","Abraham, Charles","Buston, Katie","Scott, Sue","Hart, Graham"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.gla.ac.uk:112"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::82aa4b0af34c2313a562076992e50aa3"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Papers"]},"trust":{"type":"FLOAT","value":0.81512296},"target_publication_title":{"type":"STRING","value":"Extent of regretted sexual intercourse among young teenagers in Scotland: a cross sectional survey"},"provenance_datasource_name":{"type":"STRING","value":"Enlighten"},"target_dateofacceptance":{"type":"DATE","value":"2000-05-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:251085\",\"titles\":[\"Extent of regretted sexual intercourse among young teenagers in Scotland: a cross sectional survey\"],\"abstracts\":[\"\"],\"language\":\"eng\",\"subjects\":[\"Papers\"],\"creators\":[\"Wight, Daniel\",\"Henderson, Marion\",\"Raab, Gillian\",\"Abraham, Charles\",\"Buston, Katie\",\"Scott, Sue\",\"Hart, Graham\"],\"publicationdate\":\"2000-05-06\",\"publisher\":\"British Medical Journal\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC27366\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC27366\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1136/bmj.320.7244.1243\",\"license\":\"OPEN\",\"hostedby\":\"Enlighten\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1136/bmj.320.7244.1243\",\"license\":\"OPEN\",\"hostedby\":\"Enlighten\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Enlighten\",\"url\":\"http://dx.doi.org/10.1136/bmj.320.7244.1243\",\"id\":\"oai:eprints.gla.ac.uk:112\"},\"trust\":0.48482442}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:251085"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wight, Daniel","Henderson, Marion","Raab, Gillian","Abraham, Charles","Buston, Katie","Scott, Sue","Hart, Graham"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.gla.ac.uk:112"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::82aa4b0af34c2313a562076992e50aa3"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Papers"]},"trust":{"type":"FLOAT","value":0.48482442},"target_publication_title":{"type":"STRING","value":"Extent of regretted sexual intercourse among young teenagers in Scotland: a cross sectional survey"},"provenance_datasource_name":{"type":"STRING","value":"Enlighten"},"target_dateofacceptance":{"type":"DATE","value":"2000-05-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:251085\",\"titles\":[\"Extent of regretted sexual intercourse among young teenagers in Scotland: a cross sectional survey\"],\"abstracts\":[\"\",\"No abstract available.\"],\"language\":\"eng\",\"subjects\":[\"Papers\"],\"creators\":[\"Wight, Daniel\",\"Henderson, Marion\",\"Raab, Gillian\",\"Abraham, Charles\",\"Buston, Katie\",\"Scott, Sue\",\"Hart, Graham\"],\"publicationdate\":\"2000-05-06\",\"publisher\":\"British Medical Journal\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC27366\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC27366\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"No abstract available.\"]},\"provenance\":{\"repositoryName\":\"Enlighten\",\"url\":\"http://dx.doi.org/10.1136/bmj.320.7244.1243\",\"id\":\"oai:eprints.gla.ac.uk:112\"},\"trust\":0.2454117}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:251085"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wight, Daniel","Henderson, Marion","Raab, Gillian","Abraham, Charles","Buston, Katie","Scott, Sue","Hart, Graham"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.gla.ac.uk:112"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::82aa4b0af34c2313a562076992e50aa3"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Papers"]},"trust":{"type":"FLOAT","value":0.2454117},"target_publication_title":{"type":"STRING","value":"Extent of regretted sexual intercourse among young teenagers in Scotland: a cross sectional survey"},"provenance_datasource_name":{"type":"STRING","value":"Enlighten"},"target_dateofacceptance":{"type":"DATE","value":"2000-05-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:eprints.gla.ac.uk:112\",\"titles\":[\"Extent of regretted sexual intercourse among young teenagers in Scotland: a cross sectional survey\"],\"abstracts\":[\"No abstract available.\"],\"language\":\"eng\",\"subjects\":[\"HQ The family. Marriage. Woman\"],\"creators\":[\"Wight, G.\",\"Henderson, M.\",\"Raab, G.\",\"Abraham, C.\",\"Buston, K.\",\"Scott, S.\",\"Hart, G.\"],\"publicationdate\":\"2000-01-01\",\"publisher\":\"BMJ Publishing Group\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Enlighten\"],\"pids\":[{\"value\":\"10.1136/bmj.320.7244.1243\",\"type\":\"doi\"},{\"value\":\"PMC27366\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://dx.doi.org/10.1136/bmj.320.7244.1243\",\"license\":\"OPEN\",\"hostedby\":\"Enlighten\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC27366\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC27366\",\"id\":\"oai:europepmc.org:251085\"},\"trust\":0.0087480545}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Enlighten"},"target_publication_id":{"type":"STRING","value":"oai:eprints.gla.ac.uk:112"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wight, G.","Henderson, M.","Raab, G.","Abraham, C.","Buston, K.","Scott, S.","Hart, G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:251085"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["HQ The family. Marriage. Woman"]},"trust":{"type":"FLOAT","value":0.0087480545},"target_publication_title":{"type":"STRING","value":"Extent of regretted sexual intercourse among young teenagers in Scotland: a cross sectional survey"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2000-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::82aa4b0af34c2313a562076992e50aa3"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:eprints.gla.ac.uk:112\",\"titles\":[\"Extent of regretted sexual intercourse among young teenagers in Scotland: a cross sectional survey\"],\"abstracts\":[\"No abstract available.\"],\"language\":\"eng\",\"subjects\":[\"HQ The family. Marriage. Woman\"],\"creators\":[\"Wight, G.\",\"Henderson, M.\",\"Raab, G.\",\"Abraham, C.\",\"Buston, K.\",\"Scott, S.\",\"Hart, G.\"],\"publicationdate\":\"2000-01-01\",\"publisher\":\"BMJ Publishing Group\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Enlighten\"],\"pids\":[{\"value\":\"10.1136/bmj.320.7244.1243\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://dx.doi.org/10.1136/bmj.320.7244.1243\",\"license\":\"OPEN\",\"hostedby\":\"Enlighten\",\"instancetype\":\"Article\"},{\"url\":\"http://eprints.gla.ac.uk/112/1/BMJWight2000.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Enlighten\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://eprints.gla.ac.uk/112/1/BMJWight2000.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Enlighten\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"CORE\",\"url\":\"http://eprints.gla.ac.uk/112/1/BMJWight2000.pdf\",\"id\":\"oai:eprints.gla.ac.uk:112\"},\"trust\":0.84719837}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Enlighten"},"target_publication_id":{"type":"STRING","value":"oai:eprints.gla.ac.uk:112"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wight, G.","Henderson, M.","Raab, G.","Abraham, C.","Buston, K.","Scott, S.","Hart, G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:eprints.gla.ac.uk:112"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::437f4b072b1aa198adcbc35910ff3b98"},"target_publication_subject_list":{"type":"LIST_STRING","value":["HQ The family. Marriage. Woman"]},"trust":{"type":"FLOAT","value":0.84719837},"target_publication_title":{"type":"STRING","value":"Extent of regretted sexual intercourse among young teenagers in Scotland: a cross sectional survey"},"provenance_datasource_name":{"type":"STRING","value":"CORE"},"target_dateofacceptance":{"type":"DATE","value":"2000-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::82aa4b0af34c2313a562076992e50aa3"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1768283\",\"titles\":[\"Critical care issues in liver transplantation\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Letters to the Editor\"],\"creators\":[\"Gonzalez-Granado, Luis Ignacio\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"Medknow Publications\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Indian Journal of Critical Care Medicine : Peer-reviewed, Official Publication of Indian Society of Critical Care Medicine\",\"issn\":\"0972-5229\",\"eissn\":\"1998-359X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.4103/0972-5229.68232\",\"type\":\"doi\"},{\"value\":\"PMC2936732\",\"type\":\"pmc\"},{\"value\":\"20859501\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2936732\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.ijccm.org/article.asp?issn\\u003d0972-5229;year\\u003d2010;volume\\u003d14;issue\\u003d2;spage\\u003d106;epage\\u003d107;aulast\\u003dGonzalez-Granado\",\"license\":\"OPEN\",\"hostedby\":\"Indian Journal of Critical Care Medicine\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ijccm.org/article.asp?issn\\u003d0972-5229;year\\u003d2010;volume\\u003d14;issue\\u003d2;spage\\u003d106;epage\\u003d107;aulast\\u003dGonzalez-Granado\",\"license\":\"OPEN\",\"hostedby\":\"Indian Journal of Critical Care Medicine\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.ijccm.org/article.asp?issn\\u003d0972-5229;year\\u003d2010;volume\\u003d14;issue\\u003d2;spage\\u003d106;epage\\u003d107;aulast\\u003dGonzalez-Granado\",\"id\":\"oai:doaj.org/article:05b3c0d4ba1c4a8fbfa6ffe6fa7c450d\"},\"trust\":0.81847346}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1768283"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gonzalez-Granado, Luis Ignacio"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:05b3c0d4ba1c4a8fbfa6ffe6fa7c450d"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Letters to the Editor"]},"trust":{"type":"FLOAT","value":0.81847346},"target_publication_title":{"type":"STRING","value":"Critical care issues in liver transplantation"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.usu.ac.id:123456789/12981\",\"titles\":[\"Risiko Atas Hilangnya Barang Bergerak Dalam Perjanjian Beli Sewa\"],\"abstracts\":[\"Perjanjian belt sewa alau disebut juga dengan istilah perjanjian beti sewa atau perjanjian jual sewa, tidak diatur secara tegas dalam peraturan perundang-undangan (KUH. Perdata). Namun demikian dalam ketentuan Pasal 1 sub a SK. Menteri Perdagangan dan Koperasi No. 34/KP/U/1980 ditegaskan bahwa beli sewa (hiro aurchase) adalah jual beli baiang dimana penjual melaksanakan penjualan barang dengan cara memperhitungkan setiap pembayaran yang ditakukan oleh pembeli dengan pelimasan atas harga barang yang telah disepakat bersama dan yang diikat dalam suatu perjanjian, serta hak milik atas barang tersebut baru beralih dan penjual kepada pembeli setelah jumlah harganya dibayar lunas oleh pembeli kepada penjual.\\nDalam penulisan sknpsi im penulis membahas pennasalahan tentang bagaimana tanggung jawab para pihak dalam perjanjian beli sewa, bagaimana akibat hukum wanprestasi dalam perjanjian beli sewa, bagaimana penyelesaian hukum jika dalam perjanjian beli sewa terjadi persengketaan diantara para pihak.\\nUntuk membahas pennasalahan tersebut maka digunakan metode teiaah pustaka (library research) untuk mentelaah data-data sekunder dan penelitian lapangan (field research) yaitu dengan melakukan penelitian di PT. Astra Medan.\\nBerdasarkan pembahasan yang dilakukan maka dapat disimpulan bahwa dalam perjanjian beli sewa pihak yang terkait adalah pihak PT. Astra Cabang Medan sebagai penjual sewa yaitu pihak yang menjual sewakan barang yang menjadi objek perjanjian beli sewa. Dalam hal terjadinya resiko dalam perjanjian beli sewa maka pihak PT. Astra Cabang Medan bertanggung jawab atas cacat tersembunyi dan mutu barang yang menjadi objek beli sewa sebelum diserahkan kepada pembeli sewa. Jika sudah diserahkan, maka resiko dan tanggung jawab tersebut beralih kepada pihak pembeli. Jika dalam perjanjian beli sewa salah satu pihak melakukan wanprestasi, maka memberikan hak kepada pihak yang dirugikan untuk meminta ganti rugi akibat perbuatan tersebut. Jika terjadi wanprestasi dari salah satu pihak dalam perjanjian beli sewa tersebut, maka pihak yang merasa dirugikan dapat melakukan dengan dua cara, yaitu : Menyelesaikan di luar pengadilan, yaitu : memmtut pembatalan perjanjian, meminta pengembalian barang, menuntut ganti rugi., kemudian menyelesaikannya di pengadilan, yaitu : meletakkan sita jaminan untuk pengembalian barang, menuntut ganti rugi, membebankan biaya perkara kepada pihak lain yang melakukan wanprestasi.\",\"020222052\"],\"language\":\"ind\",\"subjects\":[\"hukum keperdataan\",\"perjanjian beli sewa\"],\"creators\":[\"Rizky Akbar Harahap, M.\"],\"publicationdate\":\"2008-07-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Prof. Dr. Tan Kamello, SH. MS.; Idris Zainal, SH.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"USU Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/12981\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"},{\"url\":\"http://repository.usu.ac.id/handle/123456789/12981\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/12981\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"USU Repository\",\"url\":\"http://repository.usu.ac.id/handle/123456789/12981\",\"id\":\"oai:repository.usu.ac.id:123456789/36506\"},\"trust\":0.80625033}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"USU Repository"},"target_publication_id":{"type":"STRING","value":"oai:repository.usu.ac.id:123456789/12981"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rizky Akbar Harahap, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repository.usu.ac.id:123456789/36506"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"},"target_publication_subject_list":{"type":"LIST_STRING","value":["hukum keperdataan","perjanjian beli sewa"]},"trust":{"type":"FLOAT","value":0.80625033},"target_publication_title":{"type":"STRING","value":"Risiko Atas Hilangnya Barang Bergerak Dalam Perjanjian Beli Sewa"},"provenance_datasource_name":{"type":"STRING","value":"USU Repository"},"target_dateofacceptance":{"type":"DATE","value":"2008-07-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repository.usu.ac.id:123456789/36506\",\"titles\":[\"Risiko Atas Hilangnya Barang Bergerak Dalam Perjanjian Beli Sewa\"],\"abstracts\":[\"Perjanjian belt sewa alau disebut juga dengan istilah perjanjian beti sewa atau perjanjian jual sewa, tidak diatur secara tegas dalam peraturan perundang-undangan (KUH. Perdata). Namun demikian dalam ketentuan Pasal 1 sub a SK. Menteri Perdagangan dan Koperasi No. 34/KP/U/1980 ditegaskan bahwa beli sewa (hiro aurchase) adalah jual beli baiang dimana penjual melaksanakan penjualan barang dengan cara memperhitungkan setiap pembayaran yang ditakukan oleh pembeli dengan pelimasan atas harga barang yang telah disepakat bersama dan yang diikat dalam suatu perjanjian, serta hak milik atas barang tersebut baru beralih dan penjual kepada pembeli setelah jumlah harganya dibayar lunas oleh pembeli kepada penjual.\\nDalam penulisan sknpsi im penulis membahas pennasalahan tentang bagaimana tanggung jawab para pihak dalam perjanjian beli sewa, bagaimana akibat hukum wanprestasi dalam perjanjian beli sewa, bagaimana penyelesaian hukum jika dalam perjanjian beli sewa terjadi persengketaan diantara para pihak.\\nUntuk membahas pennasalahan tersebut maka digunakan metode teiaah pustaka (library research) untuk mentelaah data-data sekunder dan penelitian lapangan (field research) yaitu dengan melakukan penelitian di PT. Astra Medan.\\nBerdasarkan pembahasan yang dilakukan maka dapat disimpulan bahwa dalam perjanjian beli sewa pihak yang terkait adalah pihak PT. Astra Cabang Medan sebagai penjual sewa yaitu pihak yang menjual sewakan barang yang menjadi objek perjanjian beli sewa. Dalam hal terjadinya resiko dalam perjanjian beli sewa maka pihak PT. Astra Cabang Medan bertanggung jawab atas cacat tersembunyi dan mutu barang yang menjadi objek beli sewa sebelum diserahkan kepada pembeli sewa. Jika sudah diserahkan, maka resiko dan tanggung jawab tersebut beralih kepada pihak pembeli. Jika dalam perjanjian beli sewa salah satu pihak melakukan wanprestasi, maka memberikan hak kepada pihak yang dirugikan untuk meminta ganti rugi akibat perbuatan tersebut. Jika terjadi wanprestasi dari salah satu pihak dalam perjanjian beli sewa tersebut, maka pihak yang merasa dirugikan dapat melakukan dengan dua cara, yaitu : Menyelesaikan di luar pengadilan, yaitu : memmtut pembatalan perjanjian, meminta pengembalian barang, menuntut ganti rugi., kemudian menyelesaikannya di pengadilan, yaitu : meletakkan sita jaminan untuk pengembalian barang, menuntut ganti rugi, membebankan biaya perkara kepada pihak lain yang melakukan wanprestasi.\",\"020222052\"],\"language\":\"ind\",\"subjects\":[\"hukum keperdataan\",\"perjanjian beli sewa\"],\"creators\":[\"Rizky Akbar Harahap, M.\"],\"publicationdate\":\"2008-07-15\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Prof. Dr. Tan Kamello, SH. MS.; Idris Zainal, SH.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"USU Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/12981\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"},{\"url\":\"http://repository.usu.ac.id/handle/123456789/12981\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repository.usu.ac.id/handle/123456789/12981\",\"license\":\"OPEN\",\"hostedby\":\"USU Repository\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"USU Repository\",\"url\":\"http://repository.usu.ac.id/handle/123456789/12981\",\"id\":\"oai:repository.usu.ac.id:123456789/12981\"},\"trust\":0.63709545}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"USU Repository"},"target_publication_id":{"type":"STRING","value":"oai:repository.usu.ac.id:123456789/36506"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rizky Akbar Harahap, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repository.usu.ac.id:123456789/12981"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"},"target_publication_subject_list":{"type":"LIST_STRING","value":["hukum keperdataan","perjanjian beli sewa"]},"trust":{"type":"FLOAT","value":0.63709545},"target_publication_title":{"type":"STRING","value":"Risiko Atas Hilangnya Barang Bergerak Dalam Perjanjian Beli Sewa"},"provenance_datasource_name":{"type":"STRING","value":"USU Repository"},"target_dateofacceptance":{"type":"DATE","value":"2008-07-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b5700012be65c9da25f49408d959ca0"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.theseus.fi:10024/13531\",\"titles\":[\"Asiakastietokannan käyttöönoton valmistelu\"],\"abstracts\":[\"Opinnäytetyön tavoitteena oli saada Terveysasema Neuvoset Oy:lle tehty asiakastietokantasovellus viimeistelytöiden jälkeen yrityksen käyttöön. Koska tietokantaa tullaan käyttämään asiakasrekisterinä, niin tehtävänä oli myös selvittää, mitä vaatimuksia laki asettaa asiakasrekisterin tietosuojalle ja tietoturvalle. Lisäksi tavoitteena oli suunnitella tietokannan ylläpito.\\n\\nTietokannan viimeistelytyötä tehtiin haastattelujen sekä käyttäjien tietokannan testaamisesta saatujen kokemuksien avulla. Tietoturvaan ja tietosuojaan perehdyttiin sekä lain että alan kirjallisuuden avulla.\\n\\nTyön tuloksena saatiin toimiva ja yrityksen tarpeisiin suunniteltu tietokantasovellus otettua yrityksen käyttöön. Työn tuloksena syntyi myös asiakasrekisterille lain vaatima rekisteriseloste.\",\"The purpose of this thesis was to introduce Terveysasema Neuvoset Oy’s remodelled customer database. Since the database would be used as a customer registry, then there was a need to research what was required from a legal point of view. In addition, the aim was design the maintenance of the database.\\n\\nThe finishing touches for the database were made through the information gathered from the experiences of the users via interviews and user trials. Information on security law and literature was used to learn about data security and privacy.\\n\\nThe resulting work was a functional database application tailored to the needs of the company in question. A legally required registry documentary for the customer database was also produced.\"],\"language\":\"fin\",\"subjects\":[],\"creators\":[\"Karjalainen, Pirjo\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"Lapin ammattikorkeakoulu\",\"embargoenddate\":\"\",\"contributor\":[\"Rovaniemen ammattikorkeakoulu\",\"Lapin ammattikorkeakoulu\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Theseus\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.theseus.fi/handle/10024/13531\",\"license\":\"OPEN\",\"hostedby\":\"Theseus\",\"instancetype\":\"Unknown\"},{\"url\":\"http://publications.theseus.fi/handle/10024/13531\",\"license\":\"OPEN\",\"hostedby\":\"Theseus\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://publications.theseus.fi/handle/10024/13531\",\"license\":\"OPEN\",\"hostedby\":\"Theseus\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Theseus\",\"url\":\"http://publications.theseus.fi/handle/10024/13531\",\"id\":\"oai:publications.theseus.fi:10024/13531\"},\"trust\":0.2407}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Theseus"},"target_publication_id":{"type":"STRING","value":"oai:www.theseus.fi:10024/13531"},"target_publication_author_list":{"type":"LIST_STRING","value":["Karjalainen, Pirjo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:publications.theseus.fi:10024/13531"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1ee3dfcd8a0645a25a35977997223d22"},"trust":{"type":"FLOAT","value":0.2407},"target_publication_title":{"type":"STRING","value":"Asiakastietokannan käyttöönoton valmistelu"},"provenance_datasource_name":{"type":"STRING","value":"Theseus"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1ee3dfcd8a0645a25a35977997223d22"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:publications.theseus.fi:10024/13531\",\"titles\":[\"Asiakastietokannan käyttöönoton valmistelu\"],\"abstracts\":[\"Opinnäytetyön tavoitteena oli saada Terveysasema Neuvoset Oy:lle tehty asiakastietokantasovellus viimeistelytöiden jälkeen yrityksen käyttöön. Koska tietokantaa tullaan käyttämään asiakasrekisterinä, niin tehtävänä oli myös selvittää, mitä vaatimuksia laki asettaa asiakasrekisterin tietosuojalle ja tietoturvalle. Lisäksi tavoitteena oli suunnitella tietokannan ylläpito.\\n\\nTietokannan viimeistelytyötä tehtiin haastattelujen sekä käyttäjien tietokannan testaamisesta saatujen kokemuksien avulla. Tietoturvaan ja tietosuojaan perehdyttiin sekä lain että alan kirjallisuuden avulla.\\n\\nTyön tuloksena saatiin toimiva ja yrityksen tarpeisiin suunniteltu tietokantasovellus otettua yrityksen käyttöön. Työn tuloksena syntyi myös asiakasrekisterille lain vaatima rekisteriseloste.\",\"The purpose of this thesis was to introduce Terveysasema Neuvoset Oy’s remodelled customer database. Since the database would be used as a customer registry, then there was a need to research what was required from a legal point of view. In addition, the aim was design the maintenance of the database.\\n\\nThe finishing touches for the database were made through the information gathered from the experiences of the users via interviews and user trials. Information on security law and literature was used to learn about data security and privacy.\\n\\nThe resulting work was a functional database application tailored to the needs of the company in question. A legally required registry documentary for the customer database was also produced.\"],\"language\":\"fin\",\"subjects\":[],\"creators\":[\"Karjalainen, Pirjo\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"Rovaniemen ammattikorkeakoulu\",\"embargoenddate\":\"\",\"contributor\":[\"Rovaniemen ammattikorkeakoulu\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Theseus\"],\"pids\":[],\"instances\":[{\"url\":\"http://publications.theseus.fi/handle/10024/13531\",\"license\":\"OPEN\",\"hostedby\":\"Theseus\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.theseus.fi/handle/10024/13531\",\"license\":\"OPEN\",\"hostedby\":\"Theseus\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.theseus.fi/handle/10024/13531\",\"license\":\"OPEN\",\"hostedby\":\"Theseus\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Theseus\",\"url\":\"http://www.theseus.fi/handle/10024/13531\",\"id\":\"oai:www.theseus.fi:10024/13531\"},\"trust\":0.4358058}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Theseus"},"target_publication_id":{"type":"STRING","value":"oai:publications.theseus.fi:10024/13531"},"target_publication_author_list":{"type":"LIST_STRING","value":["Karjalainen, Pirjo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.theseus.fi:10024/13531"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::1ee3dfcd8a0645a25a35977997223d22"},"trust":{"type":"FLOAT","value":0.4358058},"target_publication_title":{"type":"STRING","value":"Asiakastietokannan käyttöönoton valmistelu"},"provenance_datasource_name":{"type":"STRING","value":"Theseus"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::1ee3dfcd8a0645a25a35977997223d22"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:library.wur.nl:wurpubs/10278\",\"titles\":[\"Werkwijze voor het bereiden van een _-amylase-adsorbent, geschikt voor gebruik in de affiniteitschromatografie, werkwijze voor het omzetten van een dergelijk adsorbent van de poedervorm in de granule-vorm, het verkregen adsorbent in poeder- en granulevorm alsook werkwijze voor het winnen van _-amylase, in het bijzonder bacterieel _-amylase, met behulp van het betreffende adsorbent.\"],\"abstracts\":[],\"language\":\"dut/nld\",\"subjects\":[\"Levensmiddelenchemie en -microbiologie\"],\"creators\":[\"Somers, W. A. C.\",\"Rozie, H. J.\",\"Riet, K.\",\"Rombouts, F. M.\",\"Visser, J.\"],\"publicationdate\":\"1989-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Wageningen Yield\"],\"pids\":[],\"instances\":[{\"url\":\"http://edepot.wur.nl/24760\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Patent\"},{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/10278\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Patent\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://library.wur.nl/WebQuery/wurpubs/10278\",\"license\":\"OPEN\",\"hostedby\":\"Wageningen Yield\",\"instancetype\":\"Patent\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://library.wur.nl/WebQuery/wurpubs/10278\",\"id\":\"wur:oai:library.wur.nl:wurpubs/10278\"},\"trust\":0.90844214}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Wageningen Yield"},"target_publication_id":{"type":"STRING","value":"oai:library.wur.nl:wurpubs/10278"},"target_publication_author_list":{"type":"LIST_STRING","value":["Somers, W. A. C.","Rozie, H. J.","Riet, K.","Rombouts, F. M.","Visser, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["wur:oai:library.wur.nl:wurpubs/10278"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Levensmiddelenchemie en -microbiologie"]},"trust":{"type":"FLOAT","value":0.90844214},"target_publication_title":{"type":"STRING","value":"Werkwijze voor het bereiden van een _-amylase-adsorbent, geschikt voor gebruik in de affiniteitschromatografie, werkwijze voor het omzetten van een dergelijk adsorbent van de poedervorm in de granule-vorm, het verkregen adsorbent in poeder- en granulevorm alsook werkwijze voor het winnen van _-amylase, in het bijzonder bacterieel _-amylase, met behulp van het betreffende adsorbent."},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1989-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::d709f38ef758b5066ef31b18039b8ce5"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3094487\",\"titles\":[\"A Game-Theoretic Response Strategy for Coordinator Attack in Wireless Sensor Networks\"],\"abstracts\":[\"The coordinator is a specific node that controls the whole network and has a significant impact on the performance in cooperative multihop ZigBee wireless sensor networks (ZWSNs). However, the malicious node attacks coordinator nodes in an effort to waste the resources and disrupt the operation of the network. Attacking leads to a failure of one round of communication between the source nodes and destination nodes. Coordinator selection is a technique that can considerably defend against attack and reduce the data delivery delay, and increase network performance of cooperative communications. In this paper, we propose an adaptive coordinator selection algorithm using game and fuzzy logic aiming at both minimizing the average number of hops and maximizing network lifetime. The proposed game model consists of two interrelated formulations: a stochastic game for dynamic defense and a best response policy using evolutionary game formulation for coordinator selection. The stable equilibrium best policy to response defense is obtained from this game model. It is shown that the proposed scheme can improve reliability and save energy during the network lifetime with respect to security.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Liu, Jianhua\",\"Yue, Guangxue\",\"Shen, Shigen\",\"Shang, Huiliang\",\"Li, Hongjie\"],\"publicationdate\":\"2014-07-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"The Scientific World Journal\",\"issn\":\"2356-6140\",\"eissn\":\"1537-744X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2014/950618\",\"type\":\"doi\"},{\"value\":\"PMC4102080\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4102080\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2014/950618\",\"license\":\"OPEN\",\"hostedby\":\"The Scientific World Journal\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2014/950618\",\"license\":\"OPEN\",\"hostedby\":\"The Scientific World Journal\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2014/950618\",\"id\":\"oai:doaj.org/article:d88a4e2be21642df98b534da195c0e7e\"},\"trust\":0.75631624}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3094487"},"target_publication_author_list":{"type":"LIST_STRING","value":["Liu, Jianhua","Yue, Guangxue","Shen, Shigen","Shang, Huiliang","Li, Hongjie"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:d88a4e2be21642df98b534da195c0e7e"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.75631624},"target_publication_title":{"type":"STRING","value":"A Game-Theoretic Response Strategy for Coordinator Attack in Wireless Sensor Networks"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberwo:13826\",\"titles\":[\"Evidence From Maternity Leave Expansions of the Impact of Maternal Care on Early Child Development\"],\"abstracts\":[\"We study the impact of maternal care on early child development using an expansion in Canadian maternity leave entitlements. Following the leave expansion, mothers who took leave spent between 48 and 58 percent more time not working in the first year of their children\\u0027s lives. We find that this extra maternal care primarily crowded out home-based care by unlicensed non-relatives, and replaced mostly full-time work. However, the estimates suggest a weak impact of the increase in maternal care on indicators of child development. Measures of family environment and motor-social development showed changes very close to zero. Some improvements in temperament were observed but occurred both for treated and untreated children.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Michael Baker\",\"Kevin Milligan\"],\"publicationdate\":\"2008-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/papers/w13826.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://jhr.uwpress.org/cgi/reprint/45/1/1\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://jhr.uwpress.org/cgi/reprint/45/1/1\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://jhr.uwpress.org/cgi/reprint/45/1/1\",\"id\":\"oai:RePEc:uwp:jhriss:v:45:y:2010:i:1:p1-32\"},\"trust\":0.28453332}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberwo:13826"},"target_publication_author_list":{"type":"LIST_STRING","value":["Michael Baker","Kevin Milligan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:uwp:jhriss:v:45:y:2010:i:1:p1-32"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.28453332},"target_publication_title":{"type":"STRING","value":"Evidence From Maternity Leave Expansions of the Impact of Maternal Care on Early Child Development"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:uwp:jhriss:v:45:y:2010:i:1:p1-32\",\"titles\":[\"Evidence from Maternity Leave Expansions of the Impact of Maternal Care on Early Child Development\"],\"abstracts\":[\"We study the impact of maternal care on early child development using an expansion in Canadian maternity leave entitlements. Following the leave expansion, mothers who took leave spent 48–58 percent more time not working in their children’s first year of life. This extra maternal care primarily crowded out home-based care by unlicensed nonrelatives and replaced full-time work. Our estimates suggest a weak impact of this increase in maternal care on indicators of child development. For example, measures of temperament and motor and social development show changes that are small and statistically insignificant.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Michael Baker\",\"Kevin Milligan\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Human Resources\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://jhr.uwpress.org/cgi/reprint/45/1/1\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.nber.org/papers/w13826.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.nber.org/papers/w13826.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.nber.org/papers/w13826.pdf\",\"id\":\"oai:RePEc:nbr:nberwo:13826\"},\"trust\":0.13116294}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:uwp:jhriss:v:45:y:2010:i:1:p1-32"},"target_publication_author_list":{"type":"LIST_STRING","value":["Michael Baker","Kevin Milligan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:nbr:nberwo:13826"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.13116294},"target_publication_title":{"type":"STRING","value":"Evidence from Maternity Leave Expansions of the Impact of Maternal Care on Early Child Development"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repositorio-aberto.up.pt:10216/68474\",\"titles\":[\"Torque Loss in a Planetary Multiplier Gearbox: Influence of Operating Conditions and Gear Oil Formulation\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Diogo Costa Todo-Bom Pereira\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Faculdade de Engenharia\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repositório Aberto da Universidade do Porto\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10216/68474\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Aberto da Universidade do Porto\",\"instancetype\":\"Master thesis\"},{\"url\":\"http://hdl.handle.net/10216/76168\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Aberto da Universidade do Porto\",\"instancetype\":\"Master thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10216/76168\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Aberto da Universidade do Porto\",\"instancetype\":\"Master thesis\"}]},\"provenance\":{\"repositoryName\":\"Repositório Aberto da Universidade do Porto\",\"url\":\"http://hdl.handle.net/10216/76168\",\"id\":\"oai:repositorio-aberto.up.pt:10216/76168\"},\"trust\":0.22812802}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repositório Aberto da Universidade do Porto"},"target_publication_id":{"type":"STRING","value":"oai:repositorio-aberto.up.pt:10216/68474"},"target_publication_author_list":{"type":"LIST_STRING","value":["Diogo Costa Todo-Bom Pereira"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repositorio-aberto.up.pt:10216/76168"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b7087c1f4f89e63af8d46f3b20271153"},"trust":{"type":"FLOAT","value":0.22812802},"target_publication_title":{"type":"STRING","value":"Torque Loss in a Planetary Multiplier Gearbox: Influence of Operating Conditions and Gear Oil Formulation"},"provenance_datasource_name":{"type":"STRING","value":"Repositório Aberto da Universidade do Porto"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b7087c1f4f89e63af8d46f3b20271153"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:repositorio-aberto.up.pt:10216/76168\",\"titles\":[\"Torque loss in a planetary multiplier gearbox: Influence of operating conditions and gear oil formulation\"],\"abstracts\":[],\"language\":\"por\",\"subjects\":[],\"creators\":[\"Raquel Camacho Simões Dias\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Faculdade de Engenharia\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Repositório Aberto da Universidade do Porto\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10216/76168\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Aberto da Universidade do Porto\",\"instancetype\":\"Master thesis\"},{\"url\":\"http://hdl.handle.net/10216/68474\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Aberto da Universidade do Porto\",\"instancetype\":\"Master thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10216/68474\",\"license\":\"OPEN\",\"hostedby\":\"Repositório Aberto da Universidade do Porto\",\"instancetype\":\"Master thesis\"}]},\"provenance\":{\"repositoryName\":\"Repositório Aberto da Universidade do Porto\",\"url\":\"http://hdl.handle.net/10216/68474\",\"id\":\"oai:repositorio-aberto.up.pt:10216/68474\"},\"trust\":0.1881035}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Repositório Aberto da Universidade do Porto"},"target_publication_id":{"type":"STRING","value":"oai:repositorio-aberto.up.pt:10216/76168"},"target_publication_author_list":{"type":"LIST_STRING","value":["Raquel Camacho Simões Dias"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:repositorio-aberto.up.pt:10216/68474"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::b7087c1f4f89e63af8d46f3b20271153"},"trust":{"type":"FLOAT","value":0.1881035},"target_publication_title":{"type":"STRING","value":"Torque loss in a planetary multiplier gearbox: Influence of operating conditions and gear oil formulation"},"provenance_datasource_name":{"type":"STRING","value":"Repositório Aberto da Universidade do Porto"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::b7087c1f4f89e63af8d46f3b20271153"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1858608\",\"titles\":[\"Endothelial and Non-Endothelial Coronary Blood Flow Reserve and Left Ventricular Dysfunction in Systemic Hypertension\"],\"abstracts\":[\"OBJECTIVES: We evaluated the impairment of endothelium-dependent and endothelium-independent coronary blood flow reserve after administration of intracoronary acetylcholine and adenosine, and its association with hypertensive cardiac disease. INTRODUCTION: Coronary blood flow reserve reduction has been proposed as a mechanism for the progression of compensated left ventricular hypertrophy to ventricular dysfunction. METHODS: Eighteen hypertensive patients with normal epicardial coronary arteries on angiography were divided into two groups according to left ventricular fractional shortening (FS). Group 1 (FS ≥0.25): n\\u003d8, FS\\u003d0.29 ± 0.03; Group 2 (FS \\u003c0.25): n\\u003d10, FS\\u003d 0.17 ± 0.03. RESULTS: Baseline coronary blood flow was similar in both groups (Group 1: 80.15 ± 26.41 mL/min, Group 2: 100.09 ± 21.51 mL/min, p\\u003dNS). In response to adenosine, coronary blood flow increased to 265.1 ± 100.2 mL/min in Group 1 and to 300.8 ± 113.6 mL/min (p \\u003c0.05) in Group 2. Endothelium-independent coronary blood flow reserve was similar in both groups (Group 1: 3.31 ± 0.68 and Group 2: 2.97 ± 0.80, p\\u003dNS). In response to acetylcholine, coronary blood flow increased to 156.08 ± 36.79 mL/min in Group 1 and to 177.8 ± 83.6 mL/min in Group 2 (p \\u003c0.05). Endothelium-dependent coronary blood flow reserve was similar in the two groups (Group 1: 2.08 ± 0.74 and group Group 2: 1.76 ± 0.61, p\\u003dNS). Peak acetylcholine/peak adenosine coronary blood flow response (Group 1: 0.65 ± 0.27 and Group 2: 0.60 ± 0.17) and minimal coronary vascular resistance (Group 1: 0.48 ± 0.21 mmHg/mL/min and Group 2: 0.34 ± 0.12 mmHg/mL/min) were similar in both groups (p\\u003d NS). Casual diastolic blood pressure and end-systolic left ventricular stress were independently associated with FS. CONCLUSIONS: In our hypertensive patients, endothelium-dependent and endothelium-independent coronary blood flow reserve vasodilator administrations had similar effects in patients with either normal or decreased left ventricular systolic function.\"],\"language\":\"eng\",\"subjects\":[\"Clinical Sciences\",\"Coronary blood flow reserve\",\"Hypertension\",\"Heart failure\",\"Adenosine\",\"Acetylcholine\"],\"creators\":[\"Rocha, Aloísio Marchi\",\"Salemi, Vera Maria Cury\",\"Neto, Pedro Alves Lemos\",\"Matsumoto, Afonso Yoshikiro\",\"Pereira, Valéria Fontenelle Angelim\",\"Fernandes, Fábio\",\"Nastari, Luciano\",\"Mady, Charles\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"Hospital das Clínicas da Faculdade de Medicina da Universidade de São Paulo\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Clinics (Sao Paulo, Brazil)\",\"issn\":\"1807-5932\",\"eissn\":\"1980-5322\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1590/S1807-59322009000400011\",\"type\":\"doi\"},{\"value\":\"PMC2694462\",\"type\":\"pmc\"},{\"value\":\"19488591\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2694462\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.scielo.br/scielo.php?script\\u003dsci_arttext\\u0026pid\\u003dS1807-59322009000400011\",\"license\":\"OPEN\",\"hostedby\":\"Clinics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.scielo.br/scielo.php?script\\u003dsci_arttext\\u0026pid\\u003dS1807-59322009000400011\",\"license\":\"OPEN\",\"hostedby\":\"Clinics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.scielo.br/scielo.php?script\\u003dsci_arttext\\u0026pid\\u003dS1807-59322009000400011\",\"id\":\"oai:doaj.org/article:07e570b1843d40bb8c2def5ecb0292ef\"},\"trust\":0.379305}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1858608"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rocha, Aloísio Marchi","Salemi, Vera Maria Cury","Neto, Pedro Alves Lemos","Matsumoto, Afonso Yoshikiro","Pereira, Valéria Fontenelle Angelim","Fernandes, Fábio","Nastari, Luciano","Mady, Charles"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:07e570b1843d40bb8c2def5ecb0292ef"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Clinical Sciences","Coronary blood flow reserve","Hypertension","Heart failure","Adenosine","Acetylcholine"]},"trust":{"type":"FLOAT","value":0.379305},"target_publication_title":{"type":"STRING","value":"Endothelial and Non-Endothelial Coronary Blood Flow Reserve and Left Ventricular Dysfunction in Systemic Hypertension"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:6eb0ff96-062f-4082-99d2-4277ba5cf048\",\"titles\":[\"Grooming and social cohesion in primates: A comment on Grueter et al.\"],\"abstracts\":[\"Grueter et al. have recently claimed that grooming time in primates is best explained by terrestriality, which they take to be a proxy for hygiene demand. We suggest that their results arise from a confound between terrestriality and other aspects of sociality, combined with a number of conceptual and sampling problems. © 2013 Elsevier Inc.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Dunbar, Rim\",\"Lehmann, J.\"],\"publicationdate\":\"2013-11-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1016/j.evolhumbehav.2013.08.003\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:6eb0ff96-062f-4082-99d2-4277ba5cf048\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1016/j.evolhumbehav.2013.08.003\",\"license\":\"OPEN\",\"hostedby\":\"Unknown Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1016/j.evolhumbehav.2013.08.003\",\"license\":\"OPEN\",\"hostedby\":\"Unknown Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"European Research Council (ERC)\",\"url\":\"http://dx.doi.org/10.1016/j.evolhumbehav.2013.08.003\",\"id\":\"154972\"},\"trust\":0.5302966}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:6eb0ff96-062f-4082-99d2-4277ba5cf048"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dunbar, Rim","Lehmann, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["154972"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::5ecaf0d3af3004219bc6b5907d19b6d9"},"trust":{"type":"FLOAT","value":0.5302966},"target_publication_title":{"type":"STRING","value":"Grooming and social cohesion in primates: A comment on Grueter et al."},"provenance_datasource_name":{"type":"STRING","value":"European Research Council (ERC)"},"target_dateofacceptance":{"type":"DATE","value":"2013-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:6eb0ff96-062f-4082-99d2-4277ba5cf048\",\"titles\":[\"Grooming and social cohesion in primates: A comment on Grueter et al.\"],\"abstracts\":[\"Grueter et al. have recently claimed that grooming time in primates is best explained by terrestriality, which they take to be a proxy for hygiene demand. We suggest that their results arise from a confound between terrestriality and other aspects of sociality, combined with a number of conceptual and sampling problems. © 2013 Elsevier Inc.\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Dunbar, Rim\",\"Lehmann, J.\"],\"publicationdate\":\"2013-11-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1016/j.evolhumbehav.2013.08.003\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:6eb0ff96-062f-4082-99d2-4277ba5cf048\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1016/j.evolhumbehav.2013.08.003\",\"license\":\"OPEN\",\"hostedby\":\"Unknown Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1016/j.evolhumbehav.2013.08.003\",\"license\":\"OPEN\",\"hostedby\":\"Unknown Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"European Research Council (ERC)\",\"url\":\"http://dx.doi.org/10.1016/j.evolhumbehav.2013.08.003\",\"id\":\"154972\"},\"trust\":0.5302966}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:6eb0ff96-062f-4082-99d2-4277ba5cf048"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dunbar, Rim","Lehmann, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["154972"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::5ecaf0d3af3004219bc6b5907d19b6d9"},"trust":{"type":"FLOAT","value":0.5302966},"target_publication_title":{"type":"STRING","value":"Grooming and social cohesion in primates: A comment on Grueter et al."},"provenance_datasource_name":{"type":"STRING","value":"European Research Council (ERC)"},"target_dateofacceptance":{"type":"DATE","value":"2013-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:912d7ca1-5d4b-43bb-b17c-9fc72d912077\",\"titles\":[\"Grooming and social cohesion in primates: a comment on Grueter et al.\"],\"abstracts\":[\"Grueter et al. have recently claimed that grooming time in primates is best explained by terrestriality, which they take to be a proxy for hygiene demand. We suggest that their results arise from a confound between terrestriality and other aspects of sociality, combined with a number of conceptual and sampling problems. © 2013 Elsevier Inc. All rights reserved.\"],\"language\":\"aar\",\"subjects\":[],\"creators\":[\"Dunbar, Rim\",\"Lehmann, J.\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1016/j.evolhumbehav.2013.08.003\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:912d7ca1-5d4b-43bb-b17c-9fc72d912077\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1016/j.evolhumbehav.2013.08.003\",\"license\":\"OPEN\",\"hostedby\":\"Unknown Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1016/j.evolhumbehav.2013.08.003\",\"license\":\"OPEN\",\"hostedby\":\"Unknown Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"European Research Council (ERC)\",\"url\":\"http://dx.doi.org/10.1016/j.evolhumbehav.2013.08.003\",\"id\":\"154972\"},\"trust\":0.054744422}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:912d7ca1-5d4b-43bb-b17c-9fc72d912077"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dunbar, Rim","Lehmann, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["154972"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::5ecaf0d3af3004219bc6b5907d19b6d9"},"trust":{"type":"FLOAT","value":0.054744422},"target_publication_title":{"type":"STRING","value":"Grooming and social cohesion in primates: a comment on Grueter et al."},"provenance_datasource_name":{"type":"STRING","value":"European Research Council (ERC)"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:912d7ca1-5d4b-43bb-b17c-9fc72d912077\",\"titles\":[\"Grooming and social cohesion in primates: a comment on Grueter et al.\"],\"abstracts\":[\"Grueter et al. have recently claimed that grooming time in primates is best explained by terrestriality, which they take to be a proxy for hygiene demand. We suggest that their results arise from a confound between terrestriality and other aspects of sociality, combined with a number of conceptual and sampling problems. © 2013 Elsevier Inc. All rights reserved.\"],\"language\":\"aar\",\"subjects\":[],\"creators\":[\"Dunbar, Rim\",\"Lehmann, J.\"],\"publicationdate\":\"2013-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1016/j.evolhumbehav.2013.08.003\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:912d7ca1-5d4b-43bb-b17c-9fc72d912077\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1016/j.evolhumbehav.2013.08.003\",\"license\":\"OPEN\",\"hostedby\":\"Unknown Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1016/j.evolhumbehav.2013.08.003\",\"license\":\"OPEN\",\"hostedby\":\"Unknown Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"European Research Council (ERC)\",\"url\":\"http://dx.doi.org/10.1016/j.evolhumbehav.2013.08.003\",\"id\":\"154972\"},\"trust\":0.054744422}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:912d7ca1-5d4b-43bb-b17c-9fc72d912077"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dunbar, Rim","Lehmann, J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["154972"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::5ecaf0d3af3004219bc6b5907d19b6d9"},"trust":{"type":"FLOAT","value":0.054744422},"target_publication_title":{"type":"STRING","value":"Grooming and social cohesion in primates: a comment on Grueter et al."},"provenance_datasource_name":{"type":"STRING","value":"European Research Council (ERC)"},"target_dateofacceptance":{"type":"DATE","value":"2013-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:21076\",\"titles\":[\"Taxes and benefits in a non-linear wage equation\"],\"abstracts\":[\"This paper develops a theoretical wage bargaining model, which yields a non-linear wage equation with a positive long term impact of taxes on wages as a special case. The elasticity of the replacement rate depends on the unemploy¬ment rate. The wage equation is estimated on time series data of the Netherlands. By distinguishing between short-term and long-term coefficients, we reconcile the divergence between theoretical predictions and empirical estimates of various components in the tax wedge. The last section summarizes the main findings and reviews some policy implications.\"],\"language\":\"und\",\"subjects\":[\"Wage equation; bargaining model; tax wedge; non-linearity\"],\"creators\":[\"Graafland, J. J.\",\"Huizinga, F. H.\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/21076/1/MPRA_paper_21076.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/21076/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/21076/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/21076/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:21076\"},\"trust\":0.49444348}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:21076"},"target_publication_author_list":{"type":"LIST_STRING","value":["Graafland, J. J.","Huizinga, F. H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:21076"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Wage equation; bargaining model; tax wedge; non-linearity"]},"trust":{"type":"FLOAT","value":0.49444348},"target_publication_title":{"type":"STRING","value":"Taxes and benefits in a non-linear wage equation"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:21076\",\"titles\":[\"Taxes and benefits in a non-linear wage equation\"],\"abstracts\":[\"This paper develops a theoretical wage bargaining model, which yields a non-linear wage equation with a positive long term impact of taxes on wages as a special case. The elasticity of the replacement rate depends on the unemploy¬ment rate. The wage equation is estimated on time series data of the Netherlands. By distinguishing between short-term and long-term coefficients, we reconcile the divergence between theoretical predictions and empirical estimates of various components in the tax wedge. The last section summarizes the main findings and reviews some policy implications.\"],\"language\":\"eng\",\"subjects\":[\"J38 - Public Policy\",\"J32 - Nonwage Labor Costs and Benefits; Private Pensions\",\"J52 - Dispute Resolution: Strikes, Arbitration, and Mediation; Collective Bargaining\",\"H39 - Other\"],\"creators\":[\"Graafland, J. J.\",\"Huizinga, F. H.\"],\"publicationdate\":\"1998-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/21076/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/21076/1/MPRA_paper_21076.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/21076/1/MPRA_paper_21076.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/21076/1/MPRA_paper_21076.pdf\",\"id\":\"oai:RePEc:pra:mprapa:21076\"},\"trust\":0.9061881}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:21076"},"target_publication_author_list":{"type":"LIST_STRING","value":["Graafland, J. J.","Huizinga, F. H."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:21076"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["J38 - Public Policy","J32 - Nonwage Labor Costs and Benefits; Private Pensions","J52 - Dispute Resolution: Strikes, Arbitration, and Mediation; Collective Bargaining","H39 - Other"]},"trust":{"type":"FLOAT","value":0.9061881},"target_publication_title":{"type":"STRING","value":"Taxes and benefits in a non-linear wage equation"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"1998-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:tudelft.nl:uuid:a90a50eb-a7b2-4283-aae2-b0c330731426\",\"titles\":[\"Design and characteristics of a rotating plasma device:\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Bannenberg, J. G.\"],\"publicationdate\":\"1971-10-06\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Kistemaker, J.\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"TU Delft Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://resolver.tudelft.nl/uuid:a90a50eb-a7b2-4283-aae2-b0c330731426\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"http://resolver.tudelft.nl/uuid:a90a50eb-a7b2-4283-aae2-b0c330731426\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://resolver.tudelft.nl/uuid:a90a50eb-a7b2-4283-aae2-b0c330731426\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://resolver.tudelft.nl/uuid:a90a50eb-a7b2-4283-aae2-b0c330731426\",\"id\":\"tud:oai:tudelft.nl:uuid:a90a50eb-a7b2-4283-aae2-b0c330731426\"},\"trust\":0.105365634}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"TU Delft Repository"},"target_publication_id":{"type":"STRING","value":"oai:tudelft.nl:uuid:a90a50eb-a7b2-4283-aae2-b0c330731426"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bannenberg, J. G."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tud:oai:tudelft.nl:uuid:a90a50eb-a7b2-4283-aae2-b0c330731426"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.105365634},"target_publication_title":{"type":"STRING","value":"Design and characteristics of a rotating plasma device:"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1971-10-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::c9892a989183de32e976c6f04e700201"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:a9e8939f-ece2-4aca-9f2b-d4e93da1ebaf\",\"titles\":[\"Mode of action and features of antimalarial drugs\"],\"abstracts\":[\"The treatment for Plasmodium falciparum malaria is too often based on empirical notions of the efficacy and toxicity of drugs. Understanding the pharmacokinetic-pharmacodynamic relationships and antimalarial drugs\\u0027 modes of action allows one to better understand the therapeutic responses observed in the treatment of severe or uncomplicated P. falciparum infections. The authors discuss the variations of parasitemia and their influencing factors (prevention, synchronism, virulence, and pretreatment). These factors are to be taken into account when first considering therapy. Many variables are defined to analyze the pharmacodynamic-efficacy interactions of anti-malarial drugs: minimal parasiticidal concentration (MPC) of a drug, minimum concentration in blood which produces a maximal inhibition (or maximum efficacy [Emax]), the parasitic reduction ratio (PRR), which is the relationship between the initial parasitemia over the parasitemia 48 hours after onset of treatment. These variables are specific to each drug and are useful in selecting the therapeutic answer and to better use antimalarial drugs. The main drugs and their combinations are reviewed (quinine, chloroquine, sulfadoxine-pyrimethamine, biguanides, mefloquine, halofantrine, artemisinine-based drugs), taking into account these pharmacological concepts.\"],\"language\":\"fra/fre\",\"subjects\":[\"Antimalarial drugs\",\"Parasite cycle\",\"Pharmacodynamics\",\"Pharmacokinetics\"],\"creators\":[\"Nosten, F.\",\"White, Nj\"],\"publicationdate\":\"1999-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1016/S0399-077X(00)88269-4\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:a9e8939f-ece2-4aca-9f2b-d4e93da1ebaf\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/S0399-077X(00)88269-4\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:f20e2cb1-b725-41e2-b45f-f7a84b38585a\",\"id\":\"oai:ora.ox.ac.uk:uuid:f20e2cb1-b725-41e2-b45f-f7a84b38585a\"},\"trust\":0.040437818}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:a9e8939f-ece2-4aca-9f2b-d4e93da1ebaf"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nosten, F.","White, Nj"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:f20e2cb1-b725-41e2-b45f-f7a84b38585a"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Antimalarial drugs","Parasite cycle","Pharmacodynamics","Pharmacokinetics"]},"trust":{"type":"FLOAT","value":0.040437818},"target_publication_title":{"type":"STRING","value":"Mode of action and features of antimalarial drugs"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"1999-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:a9e8939f-ece2-4aca-9f2b-d4e93da1ebaf\",\"titles\":[\"Mode of action and features of antimalarial drugs\"],\"abstracts\":[\"The treatment for Plasmodium falciparum malaria is too often based on empirical notions of the efficacy and toxicity of drugs. Understanding the pharmacokinetic-pharmacodynamic relationships and antimalarial drugs\\u0027 modes of action allows one to better understand the therapeutic responses observed in the treatment of severe or uncomplicated P. falciparum infections. The authors discuss the variations of parasitemia and their influencing factors (prevention, synchronism, virulence, and pretreatment). These factors are to be taken into account when first considering therapy. Many variables are defined to analyze the pharmacodynamic-efficacy interactions of anti-malarial drugs: minimal parasiticidal concentration (MPC) of a drug, minimum concentration in blood which produces a maximal inhibition (or maximum efficacy [Emax]), the parasitic reduction ratio (PRR), which is the relationship between the initial parasitemia over the parasitemia 48 hours after onset of treatment. These variables are specific to each drug and are useful in selecting the therapeutic answer and to better use antimalarial drugs. The main drugs and their combinations are reviewed (quinine, chloroquine, sulfadoxine-pyrimethamine, biguanides, mefloquine, halofantrine, artemisinine-based drugs), taking into account these pharmacological concepts.\"],\"language\":\"fra/fre\",\"subjects\":[\"Antimalarial drugs\",\"Parasite cycle\",\"Pharmacodynamics\",\"Pharmacokinetics\"],\"creators\":[\"Nosten, F.\",\"White, Nj\"],\"publicationdate\":\"1999-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1016/S0399-077X(00)88269-4\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:a9e8939f-ece2-4aca-9f2b-d4e93da1ebaf\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1016/S0399-077X(00)88269-4\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:f20e2cb1-b725-41e2-b45f-f7a84b38585a\",\"id\":\"oai:ora.ox.ac.uk:uuid:f20e2cb1-b725-41e2-b45f-f7a84b38585a\"},\"trust\":0.040437818}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:a9e8939f-ece2-4aca-9f2b-d4e93da1ebaf"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nosten, F.","White, Nj"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:f20e2cb1-b725-41e2-b45f-f7a84b38585a"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Antimalarial drugs","Parasite cycle","Pharmacodynamics","Pharmacokinetics"]},"trust":{"type":"FLOAT","value":0.040437818},"target_publication_title":{"type":"STRING","value":"Mode of action and features of antimalarial drugs"},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"1999-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:f20e2cb1-b725-41e2-b45f-f7a84b38585a\",\"titles\":[\"Mode of action and features of antimalarial drugs.\"],\"abstracts\":[\"The treatment for Plasmodium falciparum malaria is too often based on empirical notions of the efficacy and toxicity of drugs. Understanding the pharmacokinetic-pharmacodynamic relationships and antimalarial drugs\\u0027 modes of action allows one to better understand the therapeutic responses observed in the treatment of severe or uncomplicated P. falciparum infections. The authors discuss the variations of parasitemia and their influencing factors (prevention, synchronism, virulence, and pretreatment). These factors are to be taken into account when first considering therapy. Many variables are defined to analyze the pharmacodynamic-efficacy interactions of anti-malarial drugs: minimal parasiticidal concentration (MPC) of a drug, minimum concentration in blood which produces a maximal inhibition (or maximum efficacy [Emax]), the parasitic reduction ratio (PRR), which is the relationship between the initial parasitemia over the parasitemia 48 hours after onset of treatment. These variables are specific to each drug and are useful in selecting the therapeutic answer and to better use antimalarial drugs. The main drugs and their combinations are reviewed (quinine, chloroquine, sulfadoxine-pyrimethamine, biguanides, mefloquine, halofantrine, artemisinine-based drugs), taking into account these pharmacological concepts.\"],\"language\":\"aar\",\"subjects\":[\"antimalarial drugs\",\"parasite cycle\",\"pharmacokinetics\",\"pharmacodynamics\"],\"creators\":[\"Nosten, F.\",\"White, Nj\"],\"publicationdate\":\"1999-12-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1016/S0399-077X(00)88269-4\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:f20e2cb1-b725-41e2-b45f-f7a84b38585a\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"The treatment for Plasmodium falciparum malaria is too often based on empirical notions of the efficacy and toxicity of drugs. Understanding the pharmacokinetic-pharmacodynamic relationships and antimalarial drugs\\u0027 modes of action allows one to better understand the therapeutic responses observed in the treatment of severe or uncomplicated P. falciparum infections. The authors discuss the variations of parasitemia and their influencing factors (prevention, synchronism, virulence, and pretreatment). These factors are to be taken into account when first considering therapy. Many variables are defined to analyze the pharmacodynamic-efficacy interactions of anti-malarial drugs: minimal parasiticidal concentration (MPC) of a drug, minimum concentration in blood which produces a maximal inhibition (or maximum efficacy [Emax]), the parasitic reduction ratio (PRR), which is the relationship between the initial parasitemia over the parasitemia 48 hours after onset of treatment. These variables are specific to each drug and are useful in selecting the therapeutic answer and to better use antimalarial drugs. The main drugs and their combinations are reviewed (quinine, chloroquine, sulfadoxine-pyrimethamine, biguanides, mefloquine, halofantrine, artemisinine-based drugs), taking into account these pharmacological concepts.\"]},\"provenance\":{\"repositoryName\":\"Oxford University Research Archive\",\"url\":\"http://ora.ox.ac.uk/objects/uuid:a9e8939f-ece2-4aca-9f2b-d4e93da1ebaf\",\"id\":\"oai:ora.ox.ac.uk:uuid:a9e8939f-ece2-4aca-9f2b-d4e93da1ebaf\"},\"trust\":0.3417384}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:f20e2cb1-b725-41e2-b45f-f7a84b38585a"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nosten, F.","White, Nj"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:ora.ox.ac.uk:uuid:a9e8939f-ece2-4aca-9f2b-d4e93da1ebaf"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"},"target_publication_subject_list":{"type":"LIST_STRING","value":["antimalarial drugs","parasite cycle","pharmacokinetics","pharmacodynamics"]},"trust":{"type":"FLOAT","value":0.3417384},"target_publication_title":{"type":"STRING","value":"Mode of action and features of antimalarial drugs."},"provenance_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"1999-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:math/0310290\",\"titles\":[\"A note on absolute summability factors\"],\"abstracts\":[\" In this paper, by using an almost increasing and $\\\\delta$-quasi-monotone\\nsequence, a general theorem on $\\\\phi-{\\\\mid{C},\\\\alpha\\\\mid}_k$ summability\\nfactors, which generalizes a result of Bor \\\\cite{3} on ${\\\\phi-\\\\mid{C},1\\\\mid}_k$\\nsummability factors, has been proved under weaker and more general conditions.\\n\",\"Comment: 4 pages\"],\"language\":\"eng\",\"subjects\":[\"Mathematics - Classical Analysis and ODEs\"],\"creators\":[\"Ozarslan, H. S.\"],\"publicationdate\":\"2003-10-18\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/math/0310290\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/S0161171294000700\",\"license\":\"OPEN\",\"hostedby\":\"International Journal of Mathematics and Mathematical Sciences\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/S0161171294000700\",\"license\":\"OPEN\",\"hostedby\":\"International Journal of Mathematics and Mathematical Sciences\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/S0161171294000700\",\"id\":\"oai:doaj.org/article:579f476ad09f49ada9052610c9da33f9\"},\"trust\":0.087821245}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:math/0310290"},"target_publication_author_list":{"type":"LIST_STRING","value":["Ozarslan, H. S."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:579f476ad09f49ada9052610c9da33f9"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematics - Classical Analysis and ODEs"]},"trust":{"type":"FLOAT","value":0.087821245},"target_publication_title":{"type":"STRING","value":"A note on absolute summability factors"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2003-10-18"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:6ce1c5ec-7a00-4638-94b5-6b77a450d3ec\",\"titles\":[\"Conflicting phylogenetic signals in the SlX1/Y1 gene in Silene.\"],\"abstracts\":[\"BACKGROUND: Increasing evidence from DNA sequence data has revealed that phylogenies based on different genes may drastically differ from each other. This may be due to either inter- or intralineage processes, or to methodological or stochastic errors. Here we investigate a spectacular case where two parts of the same gene (SlX1/Y1) show conflicting phylogenies within Silene (Caryophyllaceae). SlX1 and SlY1 are sex-linked genes on the sex chromosomes of dioecious members of Silene sect. Elisanthe. RESULTS: We sequenced the homologues of the SlX1/Y1 genes in several Sileneae species. We demonstrate that different parts of the SlX1/Y1 region give different phylogenetic signals. The major discrepancy is that Silene vulgaris and S. sect. Conoimorpha (S. conica and relatives) exchange positions. To determine whether gene duplication followed by recombination (an intralineage process) may explain the phylogenetic conflict in the Silene SlX1/Y1 gene, we use a novel probabilistic, multiple primer-pair PCR approach. We did not find any evidence supporting gene duplication/loss as explanation to the phylogenetic conflict. CONCLUSION: The phylogenetic conflict in the Silene SlX1/Y1 gene cannot be explained by paralogy or artefacts, such as in vitro recombination during PCR. The support for the conflict is strong enough to exclude methodological or stochastic errors as likely sources. Instead, the phylogenetic incongruence may have been caused by recombination of two divergent alleles following ancient interspecific hybridization or incomplete lineage sorting. These events probably took place several million years ago. This example clearly demonstrates that different parts of the genome may have different evolutionary histories and stresses the importance of using multiple genes in reconstruction of taxonomic relationships.\"],\"language\":\"eng\",\"subjects\":[\"Chromosomes, Plant\",\"Silene\",\"Plant Proteins\",\"Phylogeny\",\"Gene Duplication\",\"Recombination, Genetic\",\"Molecular Sequence Data\"],\"creators\":[\"Rautenberg, A.\",\"Filatov, D.\",\"Svennblad, B.\",\"Heidari, N.\",\"Oxelman, B.\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1186/1471-2148-8-299\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:6ce1c5ec-7a00-4638-94b5-6b77a450d3ec\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.biomedcentral.com/1471-2148/8/299\",\"license\":\"OPEN\",\"hostedby\":\"BMC Evolutionary Biology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.biomedcentral.com/1471-2148/8/299\",\"license\":\"OPEN\",\"hostedby\":\"BMC Evolutionary Biology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.biomedcentral.com/1471-2148/8/299\",\"id\":\"oai:doaj.org/article:c50f3b886efb4b3ea4ce36dd2e19d5b9\"},\"trust\":0.94746417}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:6ce1c5ec-7a00-4638-94b5-6b77a450d3ec"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rautenberg, A.","Filatov, D.","Svennblad, B.","Heidari, N.","Oxelman, B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:c50f3b886efb4b3ea4ce36dd2e19d5b9"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Chromosomes, Plant","Silene","Plant Proteins","Phylogeny","Gene Duplication","Recombination, Genetic","Molecular Sequence Data"]},"trust":{"type":"FLOAT","value":0.94746417},"target_publication_title":{"type":"STRING","value":"Conflicting phylogenetic signals in the SlX1/Y1 gene in Silene."},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:6ce1c5ec-7a00-4638-94b5-6b77a450d3ec\",\"titles\":[\"Conflicting phylogenetic signals in the SlX1/Y1 gene in Silene.\"],\"abstracts\":[\"BACKGROUND: Increasing evidence from DNA sequence data has revealed that phylogenies based on different genes may drastically differ from each other. This may be due to either inter- or intralineage processes, or to methodological or stochastic errors. Here we investigate a spectacular case where two parts of the same gene (SlX1/Y1) show conflicting phylogenies within Silene (Caryophyllaceae). SlX1 and SlY1 are sex-linked genes on the sex chromosomes of dioecious members of Silene sect. Elisanthe. RESULTS: We sequenced the homologues of the SlX1/Y1 genes in several Sileneae species. We demonstrate that different parts of the SlX1/Y1 region give different phylogenetic signals. The major discrepancy is that Silene vulgaris and S. sect. Conoimorpha (S. conica and relatives) exchange positions. To determine whether gene duplication followed by recombination (an intralineage process) may explain the phylogenetic conflict in the Silene SlX1/Y1 gene, we use a novel probabilistic, multiple primer-pair PCR approach. We did not find any evidence supporting gene duplication/loss as explanation to the phylogenetic conflict. CONCLUSION: The phylogenetic conflict in the Silene SlX1/Y1 gene cannot be explained by paralogy or artefacts, such as in vitro recombination during PCR. The support for the conflict is strong enough to exclude methodological or stochastic errors as likely sources. Instead, the phylogenetic incongruence may have been caused by recombination of two divergent alleles following ancient interspecific hybridization or incomplete lineage sorting. These events probably took place several million years ago. This example clearly demonstrates that different parts of the genome may have different evolutionary histories and stresses the importance of using multiple genes in reconstruction of taxonomic relationships.\"],\"language\":\"eng\",\"subjects\":[\"Chromosomes, Plant\",\"Silene\",\"Plant Proteins\",\"Phylogeny\",\"Gene Duplication\",\"Recombination, Genetic\",\"Molecular Sequence Data\"],\"creators\":[\"Rautenberg, A.\",\"Filatov, D.\",\"Svennblad, B.\",\"Heidari, N.\",\"Oxelman, B.\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1186/1471-2148-8-299\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:6ce1c5ec-7a00-4638-94b5-6b77a450d3ec\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.biomedcentral.com/1471-2148/8/299\",\"license\":\"OPEN\",\"hostedby\":\"BMC Evolutionary Biology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.biomedcentral.com/1471-2148/8/299\",\"license\":\"OPEN\",\"hostedby\":\"BMC Evolutionary Biology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.biomedcentral.com/1471-2148/8/299\",\"id\":\"oai:doaj.org/article:c50f3b886efb4b3ea4ce36dd2e19d5b9\"},\"trust\":0.94746417}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:6ce1c5ec-7a00-4638-94b5-6b77a450d3ec"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rautenberg, A.","Filatov, D.","Svennblad, B.","Heidari, N.","Oxelman, B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:c50f3b886efb4b3ea4ce36dd2e19d5b9"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Chromosomes, Plant","Silene","Plant Proteins","Phylogeny","Gene Duplication","Recombination, Genetic","Molecular Sequence Data"]},"trust":{"type":"FLOAT","value":0.94746417},"target_publication_title":{"type":"STRING","value":"Conflicting phylogenetic signals in the SlX1/Y1 gene in Silene."},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:6ce1c5ec-7a00-4638-94b5-6b77a450d3ec\",\"titles\":[\"Conflicting phylogenetic signals in the SlX1/Y1 gene in Silene.\"],\"abstracts\":[\"BACKGROUND: Increasing evidence from DNA sequence data has revealed that phylogenies based on different genes may drastically differ from each other. This may be due to either inter- or intralineage processes, or to methodological or stochastic errors. Here we investigate a spectacular case where two parts of the same gene (SlX1/Y1) show conflicting phylogenies within Silene (Caryophyllaceae). SlX1 and SlY1 are sex-linked genes on the sex chromosomes of dioecious members of Silene sect. Elisanthe. RESULTS: We sequenced the homologues of the SlX1/Y1 genes in several Sileneae species. We demonstrate that different parts of the SlX1/Y1 region give different phylogenetic signals. The major discrepancy is that Silene vulgaris and S. sect. Conoimorpha (S. conica and relatives) exchange positions. To determine whether gene duplication followed by recombination (an intralineage process) may explain the phylogenetic conflict in the Silene SlX1/Y1 gene, we use a novel probabilistic, multiple primer-pair PCR approach. We did not find any evidence supporting gene duplication/loss as explanation to the phylogenetic conflict. CONCLUSION: The phylogenetic conflict in the Silene SlX1/Y1 gene cannot be explained by paralogy or artefacts, such as in vitro recombination during PCR. The support for the conflict is strong enough to exclude methodological or stochastic errors as likely sources. Instead, the phylogenetic incongruence may have been caused by recombination of two divergent alleles following ancient interspecific hybridization or incomplete lineage sorting. These events probably took place several million years ago. This example clearly demonstrates that different parts of the genome may have different evolutionary histories and stresses the importance of using multiple genes in reconstruction of taxonomic relationships.\"],\"language\":\"eng\",\"subjects\":[\"Chromosomes, Plant\",\"Silene\",\"Plant Proteins\",\"Phylogeny\",\"Gene Duplication\",\"Recombination, Genetic\",\"Molecular Sequence Data\"],\"creators\":[\"Rautenberg, A.\",\"Filatov, D.\",\"Svennblad, B.\",\"Heidari, N.\",\"Oxelman, B.\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1186/1471-2148-8-299\",\"type\":\"doi\"},{\"value\":\"PMC2636791\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:6ce1c5ec-7a00-4638-94b5-6b77a450d3ec\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2636791\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2636791\",\"id\":\"oai:europepmc.org:1394478\"},\"trust\":0.832968}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:6ce1c5ec-7a00-4638-94b5-6b77a450d3ec"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rautenberg, A.","Filatov, D.","Svennblad, B.","Heidari, N.","Oxelman, B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1394478"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Chromosomes, Plant","Silene","Plant Proteins","Phylogeny","Gene Duplication","Recombination, Genetic","Molecular Sequence Data"]},"trust":{"type":"FLOAT","value":0.832968},"target_publication_title":{"type":"STRING","value":"Conflicting phylogenetic signals in the SlX1/Y1 gene in Silene."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:ora.ox.ac.uk:uuid:6ce1c5ec-7a00-4638-94b5-6b77a450d3ec\",\"titles\":[\"Conflicting phylogenetic signals in the SlX1/Y1 gene in Silene.\"],\"abstracts\":[\"BACKGROUND: Increasing evidence from DNA sequence data has revealed that phylogenies based on different genes may drastically differ from each other. This may be due to either inter- or intralineage processes, or to methodological or stochastic errors. Here we investigate a spectacular case where two parts of the same gene (SlX1/Y1) show conflicting phylogenies within Silene (Caryophyllaceae). SlX1 and SlY1 are sex-linked genes on the sex chromosomes of dioecious members of Silene sect. Elisanthe. RESULTS: We sequenced the homologues of the SlX1/Y1 genes in several Sileneae species. We demonstrate that different parts of the SlX1/Y1 region give different phylogenetic signals. The major discrepancy is that Silene vulgaris and S. sect. Conoimorpha (S. conica and relatives) exchange positions. To determine whether gene duplication followed by recombination (an intralineage process) may explain the phylogenetic conflict in the Silene SlX1/Y1 gene, we use a novel probabilistic, multiple primer-pair PCR approach. We did not find any evidence supporting gene duplication/loss as explanation to the phylogenetic conflict. CONCLUSION: The phylogenetic conflict in the Silene SlX1/Y1 gene cannot be explained by paralogy or artefacts, such as in vitro recombination during PCR. The support for the conflict is strong enough to exclude methodological or stochastic errors as likely sources. Instead, the phylogenetic incongruence may have been caused by recombination of two divergent alleles following ancient interspecific hybridization or incomplete lineage sorting. These events probably took place several million years ago. This example clearly demonstrates that different parts of the genome may have different evolutionary histories and stresses the importance of using multiple genes in reconstruction of taxonomic relationships.\"],\"language\":\"eng\",\"subjects\":[\"Chromosomes, Plant\",\"Silene\",\"Plant Proteins\",\"Phylogeny\",\"Gene Duplication\",\"Recombination, Genetic\",\"Molecular Sequence Data\"],\"creators\":[\"Rautenberg, A.\",\"Filatov, D.\",\"Svennblad, B.\",\"Heidari, N.\",\"Oxelman, B.\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Oxford University Research Archive\"],\"pids\":[{\"value\":\"10.1186/1471-2148-8-299\",\"type\":\"doi\"},{\"value\":\"18973668\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://ora.ox.ac.uk/objects/uuid:6ce1c5ec-7a00-4638-94b5-6b77a450d3ec\",\"license\":\"RESTRICTED\",\"hostedby\":\"Oxford University Research Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"18973668\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2636791\",\"id\":\"oai:europepmc.org:1394478\"},\"trust\":0.832968}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Oxford University Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:ora.ox.ac.uk:uuid:6ce1c5ec-7a00-4638-94b5-6b77a450d3ec"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rautenberg, A.","Filatov, D.","Svennblad, B.","Heidari, N.","Oxelman, B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:1394478"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Chromosomes, Plant","Silene","Plant Proteins","Phylogeny","Gene Duplication","Recombination, Genetic","Molecular Sequence Data"]},"trust":{"type":"FLOAT","value":0.832968},"target_publication_title":{"type":"STRING","value":"Conflicting phylogenetic signals in the SlX1/Y1 gene in Silene."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::2290a7385ed77cc5592dc2153229f082"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1394478\",\"titles\":[\"Conflicting phylogenetic signals in the SlX1/Y1 gene in Silene\"],\"abstracts\":[\"Background Increasing evidence from DNA sequence data has revealed that phylogenies based on different genes may drastically differ from each other. This may be due to either inter- or intralineage processes, or to methodological or stochastic errors. Here we investigate a spectacular case where two parts of the same gene (SlX1/Y1) show conflicting phylogenies within Silene (Caryophyllaceae). SlX1 and SlY1 are sex-linked genes on the sex chromosomes of dioecious members of Silene sect. Elisanthe. Results We sequenced the homologues of the SlX1/Y1 genes in several Sileneae species. We demonstrate that different parts of the SlX1/Y1 region give different phylogenetic signals. The major discrepancy is that Silene vulgaris and S. sect. Conoimorpha (S. conica and relatives) exchange positions. To determine whether gene duplication followed by recombination (an intralineage process) may explain the phylogenetic conflict in the Silene SlX1/Y1 gene, we use a novel probabilistic, multiple primer-pair PCR approach. We did not find any evidence supporting gene duplication/loss as explanation to the phylogenetic conflict. Conclusion The phylogenetic conflict in the Silene SlX1/Y1 gene cannot be explained by paralogy or artefacts, such as in vitro recombination during PCR. The support for the conflict is strong enough to exclude methodological or stochastic errors as likely sources. Instead, the phylogenetic incongruence may have been caused by recombination of two divergent alleles following ancient interspecific hybridization or incomplete lineage sorting. These events probably took place several million years ago. This example clearly demonstrates that different parts of the genome may have different evolutionary histories and stresses the importance of using multiple genes in reconstruction of taxonomic relationships.\"],\"language\":\"eng\",\"subjects\":[\"Research Article\"],\"creators\":[\"Rautenberg, Anja\",\"Filatov, Dmitry\",\"Svennblad, Bodil\",\"Heidari, Nahid\",\"Oxelman, Bengt\"],\"publicationdate\":\"2008-10-01\",\"publisher\":\"BioMed Central\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"BMC Evolutionary Biology\",\"issn\":\"\",\"eissn\":\"1471-2148\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1186/1471-2148-8-299\",\"type\":\"doi\"},{\"value\":\"PMC2636791\",\"type\":\"pmc\"},{\"value\":\"18973668\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2636791\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.biomedcentral.com/1471-2148/8/299\",\"license\":\"OPEN\",\"hostedby\":\"BMC Evolutionary Biology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.biomedcentral.com/1471-2148/8/299\",\"license\":\"OPEN\",\"hostedby\":\"BMC Evolutionary Biology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.biomedcentral.com/1471-2148/8/299\",\"id\":\"oai:doaj.org/article:c50f3b886efb4b3ea4ce36dd2e19d5b9\"},\"trust\":0.8992161}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1394478"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rautenberg, Anja","Filatov, Dmitry","Svennblad, Bodil","Heidari, Nahid","Oxelman, Bengt"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:c50f3b886efb4b3ea4ce36dd2e19d5b9"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Research Article"]},"trust":{"type":"FLOAT","value":0.8992161},"target_publication_title":{"type":"STRING","value":"Conflicting phylogenetic signals in the SlX1/Y1 gene in Silene"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2008-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:pure.atira.dk:publications/88a5efa3-ae10-48a0-9ffa-9d4199b9a33f\",\"titles\":[\"THz radiation from delta-doped GaAs\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Birkedal, Dan\",\"Keiding, S. R.\"],\"publicationdate\":\"1994-01-01\",\"publisher\":\"IEEE\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Online Research Database In Technology\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/thz-radiation-from-deltadoped-gaas(88a5efa3-ae10-48a0-9ffa-9d4199b9a33f).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"},{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d264863\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d264863\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d264863\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"id\":\"oai:oai.forksningsdatabasen.dk:831914\"},\"trust\":0.96625406}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_publication_id":{"type":"STRING","value":"oai:pure.atira.dk:publications/88a5efa3-ae10-48a0-9ffa-9d4199b9a33f"},"target_publication_author_list":{"type":"LIST_STRING","value":["Birkedal, Dan","Keiding, S. R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:831914"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"trust":{"type":"FLOAT","value":0.96625406},"target_publication_title":{"type":"STRING","value":"THz radiation from delta-doped GaAs"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"1994-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:pure.atira.dk:publications/88a5efa3-ae10-48a0-9ffa-9d4199b9a33f\",\"titles\":[\"THz radiation from delta-doped GaAs\"],\"abstracts\":[\"Copyright: 1994 IEEE. Personal use of this material is permitted. However, permission to reprint/republish this material for advertising or promotional purposes or for creating new collective works for resale or redistribution to servers or lists, or to reuse any copyrighted component of this work in other works must be obtained from the IEEE\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Birkedal, Dan\",\"Keiding, S. R.\"],\"publicationdate\":\"1994-01-01\",\"publisher\":\"IEEE\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Online Research Database In Technology\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/thz-radiation-from-deltadoped-gaas(88a5efa3-ae10-48a0-9ffa-9d4199b9a33f).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"Copyright: 1994 IEEE. Personal use of this material is permitted. However, permission to reprint/republish this material for advertising or promotional purposes or for creating new collective works for resale or redistribution to servers or lists, or to reuse any copyrighted component of this work in other works must be obtained from the IEEE\"]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d264863\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"id\":\"oai:oai.forksningsdatabasen.dk:831914\"},\"trust\":0.79464155}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_publication_id":{"type":"STRING","value":"oai:pure.atira.dk:publications/88a5efa3-ae10-48a0-9ffa-9d4199b9a33f"},"target_publication_author_list":{"type":"LIST_STRING","value":["Birkedal, Dan","Keiding, S. R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:831914"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"trust":{"type":"FLOAT","value":0.79464155},"target_publication_title":{"type":"STRING","value":"THz radiation from delta-doped GaAs"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"1994-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:831914\",\"titles\":[\"THz radiation from delta-doped GaAs\"],\"abstracts\":[\"Copyright: 1994 IEEE. Personal use of this material is permitted. However, permission to reprint/republish this material for advertising or promotional purposes or for creating new collective works for resale or redistribution to servers or lists, or to reuse any copyrighted component of this work in other works must be obtained from the IEEE\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Birkedal, Dan\",\"Keiding, S. R.\"],\"publicationdate\":\"2010-07-08\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d264863\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Conference object\"},{\"url\":\"http://orbit.dtu.dk/en/publications/thz-radiation-from-deltadoped-gaas(88a5efa3-ae10-48a0-9ffa-9d4199b9a33f).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/thz-radiation-from-deltadoped-gaas(88a5efa3-ae10-48a0-9ffa-9d4199b9a33f).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}]},\"provenance\":{\"repositoryName\":\"Online Research Database In Technology\",\"url\":\"http://orbit.dtu.dk/en/publications/thz-radiation-from-deltadoped-gaas(88a5efa3-ae10-48a0-9ffa-9d4199b9a33f).html\",\"id\":\"oai:pure.atira.dk:publications/88a5efa3-ae10-48a0-9ffa-9d4199b9a33f\"},\"trust\":0.89626133}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:831914"},"target_publication_author_list":{"type":"LIST_STRING","value":["Birkedal, Dan","Keiding, S. R."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:pure.atira.dk:publications/88a5efa3-ae10-48a0-9ffa-9d4199b9a33f"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"},"trust":{"type":"FLOAT","value":0.89626133},"target_publication_title":{"type":"STRING","value":"THz radiation from delta-doped GaAs"},"provenance_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_dateofacceptance":{"type":"DATE","value":"2010-07-08"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1143237\",\"titles\":[\"Effects of prenatal exposure to surface-coated nanosized titanium dioxide (UV-Titan). A study in mice (vol 7, 16, 2010)\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Hougaard, Karin S.\",\"Jackson, Petra\",\"Jensen, Keld A.\",\"Sloth, Jens Jørgen\",\"Löschner, Katrin\",\"Larsen, Erik Huusfeldt\",\"Birkedal, Renie K.\",\"Vibenholt, Anni\",\"Boisen, Anne Mette Zenner\",\"Wallin, Hakan\"],\"publicationdate\":\"2011-06-28\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d277967\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Article\"},{\"url\":\"http://orbit.dtu.dk/en/publications/effects-of-prenatal-exposure-to-surfacecoated-nanosized-titanium-dioxide-uvtitan-a-study-in-mice-vol-7-16-2010(f59bc112-2ee1-40ab-9ed6-287cce9aef57).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/effects-of-prenatal-exposure-to-surfacecoated-nanosized-titanium-dioxide-uvtitan-a-study-in-mice-vol-7-16-2010(f59bc112-2ee1-40ab-9ed6-287cce9aef57).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}]},\"provenance\":{\"repositoryName\":\"Online Research Database In Technology\",\"url\":\"http://orbit.dtu.dk/en/publications/effects-of-prenatal-exposure-to-surfacecoated-nanosized-titanium-dioxide-uvtitan-a-study-in-mice-vol-7-16-2010(f59bc112-2ee1-40ab-9ed6-287cce9aef57).html\",\"id\":\"oai:pure.atira.dk:publications/f59bc112-2ee1-40ab-9ed6-287cce9aef57\"},\"trust\":0.6580633}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1143237"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hougaard, Karin S.","Jackson, Petra","Jensen, Keld A.","Sloth, Jens Jørgen","Löschner, Katrin","Larsen, Erik Huusfeldt","Birkedal, Renie K.","Vibenholt, Anni","Boisen, Anne Mette Zenner","Wallin, Hakan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:pure.atira.dk:publications/f59bc112-2ee1-40ab-9ed6-287cce9aef57"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"},"trust":{"type":"FLOAT","value":0.6580633},"target_publication_title":{"type":"STRING","value":"Effects of prenatal exposure to surface-coated nanosized titanium dioxide (UV-Titan). A study in mice (vol 7, 16, 2010)"},"provenance_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_dateofacceptance":{"type":"DATE","value":"2011-06-28"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:pure.atira.dk:publications/f59bc112-2ee1-40ab-9ed6-287cce9aef57\",\"titles\":[\"Effects of prenatal exposure to surface-coated nanosized titanium dioxide (UV-Titan). A study in mice (vol 7, 16, 2010)\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Hougaard, Karin S.\",\"Jackson, Petra\",\"Jensen, Keld A.\",\"Sloth, Jens Jørgen\",\"Löschner, Katrin\",\"Larsen, Erik Huusfeldt\",\"Birkedal, Renie K.\",\"Vibenholt, Anni\",\"Boisen, Anne Mette Zenner\",\"Wallin, Hakan\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"BioMed Central Ltd.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Online Research Database In Technology\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/effects-of-prenatal-exposure-to-surfacecoated-nanosized-titanium-dioxide-uvtitan-a-study-in-mice-vol-7-16-2010(f59bc112-2ee1-40ab-9ed6-287cce9aef57).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"},{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d277967\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d277967\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d277967\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"id\":\"oai:oai.forksningsdatabasen.dk:1143237\"},\"trust\":0.6173441}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_publication_id":{"type":"STRING","value":"oai:pure.atira.dk:publications/f59bc112-2ee1-40ab-9ed6-287cce9aef57"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hougaard, Karin S.","Jackson, Petra","Jensen, Keld A.","Sloth, Jens Jørgen","Löschner, Katrin","Larsen, Erik Huusfeldt","Birkedal, Renie K.","Vibenholt, Anni","Boisen, Anne Mette Zenner","Wallin, Hakan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:1143237"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"trust":{"type":"FLOAT","value":0.6173441},"target_publication_title":{"type":"STRING","value":"Effects of prenatal exposure to surface-coated nanosized titanium dioxide (UV-Titan). A study in mice (vol 7, 16, 2010)"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00001491v4\",\"titles\":[\"On the scarring of eigenstates in some arithmetic hyperbolic manifolds\"],\"abstracts\":[\"Written in January-February 2003 and corrected in March 2004 and August 2005. 35 pages\",\"In this paper, we deal with the conjecture of \\u0027Quantum Unique Ergodicity\\u0027. Z. Rudnick and P. Sarnak showed that there is no \\u0027strong scarring\\u0027 on closed geodesics for arithmetic congruence surfaces derived from a quaternion division algebra. We extend this result to a class of three-dimensional Riemannian manifolds X\\u003dGamma\\\\H^3 that are again derived from quaternion division algebras. We show that there is no \\u0027strong scarring\\u0027 on closed geodesics or on Gamma-closed imbedded totally geodesics surfaces of X.\"],\"language\":\"eng\",\"subjects\":[\"Quantum Chaos\",\"Laplace-Beltrami\",\"Hyperbolic Manifolds\",\"Modular Correspondences\",\"Quaternion Algebras\",\"Prime Numbers\",\"MP, NT, OA\",\"[MATH.MATH-MP] Mathematics/Mathematical Physics\",\"[MATH.MATH-NT] Mathematics/Number Theory\",\"[MATH.MATH-OA] Mathematics/Operator Algebras\"],\"creators\":[\"Poullaouec, Tristan\"],\"publicationdate\":\"2005-12-08\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Institut de Mathématiques de Jussieu (IMJ) ; Université Paris VII - Paris Diderot - Université Pierre et Marie Curie (UPMC) - Paris VI - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00001491\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://arxiv.org/abs/math-ph/0404066\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/math-ph/0404066\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/math-ph/0404066\",\"id\":\"oai:arXiv.org:math-ph/0404066\"},\"trust\":0.2683242}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00001491v4"},"target_publication_author_list":{"type":"LIST_STRING","value":["Poullaouec, Tristan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:math-ph/0404066"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Quantum Chaos","Laplace-Beltrami","Hyperbolic Manifolds","Modular Correspondences","Quaternion Algebras","Prime Numbers","MP, NT, OA","[MATH.MATH-MP] Mathematics/Mathematical Physics","[MATH.MATH-NT] Mathematics/Number Theory","[MATH.MATH-OA] Mathematics/Operator Algebras"]},"trust":{"type":"FLOAT","value":0.2683242},"target_publication_title":{"type":"STRING","value":"On the scarring of eigenstates in some arithmetic hyperbolic manifolds"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2005-12-08"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00001491v4\",\"titles\":[\"On the scarring of eigenstates in some arithmetic hyperbolic manifolds\"],\"abstracts\":[\"Written in January-February 2003 and corrected in March 2004 and August 2005. 35 pages\",\"In this paper, we deal with the conjecture of \\u0027Quantum Unique Ergodicity\\u0027. Z. Rudnick and P. Sarnak showed that there is no \\u0027strong scarring\\u0027 on closed geodesics for arithmetic congruence surfaces derived from a quaternion division algebra. We extend this result to a class of three-dimensional Riemannian manifolds X\\u003dGamma\\\\H^3 that are again derived from quaternion division algebras. We show that there is no \\u0027strong scarring\\u0027 on closed geodesics or on Gamma-closed imbedded totally geodesics surfaces of X.\"],\"language\":\"eng\",\"subjects\":[\"Quantum Chaos\",\"Laplace-Beltrami\",\"Hyperbolic Manifolds\",\"Modular Correspondences\",\"Quaternion Algebras\",\"Prime Numbers\",\"MP, NT, OA\",\"[MATH.MATH-MP] Mathematics/Mathematical Physics\",\"[MATH.MATH-NT] Mathematics/Number Theory\",\"[MATH.MATH-OA] Mathematics/Operator Algebras\"],\"creators\":[\"Poullaouec, Tristan\"],\"publicationdate\":\"2005-12-08\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Institut de Mathématiques de Jussieu (IMJ) ; Université Paris VII - Paris Diderot - Université Pierre et Marie Curie (UPMC) - Paris VI - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00001491\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00001491\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00001491\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00001491\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00001491\"},\"trust\":0.8652948}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00001491v4"},"target_publication_author_list":{"type":"LIST_STRING","value":["Poullaouec, Tristan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00001491"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Quantum Chaos","Laplace-Beltrami","Hyperbolic Manifolds","Modular Correspondences","Quaternion Algebras","Prime Numbers","MP, NT, OA","[MATH.MATH-MP] Mathematics/Mathematical Physics","[MATH.MATH-NT] Mathematics/Number Theory","[MATH.MATH-OA] Mathematics/Operator Algebras"]},"trust":{"type":"FLOAT","value":0.8652948},"target_publication_title":{"type":"STRING","value":"On the scarring of eigenstates in some arithmetic hyperbolic manifolds"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2005-12-08"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:math-ph/0404066\",\"titles\":[\"On the scarring of eigenstates in some arithmetic hyperbolic manifolds\"],\"abstracts\":[\" In this paper, we deal with the conjecture of \\u0027Quantum Unique Ergodicity\\u0027. Z.\\nRudnick and P. Sarnak showed that there is no \\u0027strong scarring\\u0027 on closed\\ngeodesics for arithmetic congruence surfaces derived from a quaternion division\\nalgebra. We extend this result to a class of three-dimensional Riemannian\\nmanifolds X\\u003dGamma\\\\H^3 that are again derived from quaternion division algebras.\\nWe show that there is no \\u0027strong scarring\\u0027 on closed geodesics or on\\nGamma-closed imbedded totally geodesics surfaces of X.\\n\",\"Comment: Written in January-February 2003 and corrected in March 2004 and\\n August 2005. 35 pages\"],\"language\":\"eng\",\"subjects\":[\"Mathematical Physics\",\"Mathematics - Number Theory\",\"Mathematics - Operator Algebras\",\"MP, NT, OA\"],\"creators\":[\"Poullaouec, Tristan\"],\"publicationdate\":\"2004-04-27\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/math-ph/0404066\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00001491\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00001491\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00001491\",\"id\":\"oai:HAL:hal-00001491v4\"},\"trust\":0.21669465}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:math-ph/0404066"},"target_publication_author_list":{"type":"LIST_STRING","value":["Poullaouec, Tristan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00001491v4"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematical Physics","Mathematics - Number Theory","Mathematics - Operator Algebras","MP, NT, OA"]},"trust":{"type":"FLOAT","value":0.21669465},"target_publication_title":{"type":"STRING","value":"On the scarring of eigenstates in some arithmetic hyperbolic manifolds"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-04-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:math-ph/0404066\",\"titles\":[\"On the scarring of eigenstates in some arithmetic hyperbolic manifolds\"],\"abstracts\":[\" In this paper, we deal with the conjecture of \\u0027Quantum Unique Ergodicity\\u0027. Z.\\nRudnick and P. Sarnak showed that there is no \\u0027strong scarring\\u0027 on closed\\ngeodesics for arithmetic congruence surfaces derived from a quaternion division\\nalgebra. We extend this result to a class of three-dimensional Riemannian\\nmanifolds X\\u003dGamma\\\\H^3 that are again derived from quaternion division algebras.\\nWe show that there is no \\u0027strong scarring\\u0027 on closed geodesics or on\\nGamma-closed imbedded totally geodesics surfaces of X.\\n\",\"Comment: Written in January-February 2003 and corrected in March 2004 and\\n August 2005. 35 pages\"],\"language\":\"eng\",\"subjects\":[\"Mathematical Physics\",\"Mathematics - Number Theory\",\"Mathematics - Operator Algebras\",\"MP, NT, OA\"],\"creators\":[\"Poullaouec, Tristan\"],\"publicationdate\":\"2004-04-27\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/math-ph/0404066\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00001491\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00001491\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00001491\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00001491\"},\"trust\":0.045546353}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:math-ph/0404066"},"target_publication_author_list":{"type":"LIST_STRING","value":["Poullaouec, Tristan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00001491"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematical Physics","Mathematics - Number Theory","Mathematics - Operator Algebras","MP, NT, OA"]},"trust":{"type":"FLOAT","value":0.045546353},"target_publication_title":{"type":"STRING","value":"On the scarring of eigenstates in some arithmetic hyperbolic manifolds"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-04-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00001491\",\"titles\":[\"On the scarring of eigenstates in some arithmetic hyperbolic manifolds\"],\"abstracts\":[\"In this paper, we deal with the conjecture of \\u0027Quantum Unique Ergodicity\\u0027. Z. Rudnick and P. Sarnak showed that there is no \\u0027strong scarring\\u0027 on closed geodesics for arithmetic congruence surfaces derived from a quaternion division algebra. We extend this result to a class of three-dimensional Riemannian manifolds X\\u003dGamma\\\\H^3 that are again derived from quaternion division algebras. We show that there is no \\u0027strong scarring\\u0027 on closed geodesics or on Gamma-closed imbedded totally geodesics surfaces of X.\"],\"language\":\"eng\",\"subjects\":[\"[MATH:MATH_MP] Mathematics/Mathematical Physics\",\"[MATH:MATH_MP] Mathématiques/Physique mathématique\",\"[MATH:MATH_NT] Mathematics/Number Theory\",\"[MATH:MATH_NT] Mathématiques/Théorie des nombres\",\"[MATH:MATH_OA] Mathematics/Operator Algebras\",\"[MATH:MATH_OA] Mathématiques/Algèbres d\\u0027opérateurs\",\"Quantum Chaos\",\"Laplace-Beltrami\",\"Hyperbolic Manifolds\",\"Modular Correspondences\",\"Quaternion Algebras\",\"Prime Numbers\"],\"creators\":[\"Poullaouec, Tristan\"],\"publicationdate\":\"2004-04-27\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00001491\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00001491\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00001491\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00001491\",\"id\":\"oai:HAL:hal-00001491v4\"},\"trust\":0.05818665}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00001491"},"target_publication_author_list":{"type":"LIST_STRING","value":["Poullaouec, Tristan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00001491v4"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH:MATH_MP] Mathematics/Mathematical Physics","[MATH:MATH_MP] Mathématiques/Physique mathématique","[MATH:MATH_NT] Mathematics/Number Theory","[MATH:MATH_NT] Mathématiques/Théorie des nombres","[MATH:MATH_OA] Mathematics/Operator Algebras","[MATH:MATH_OA] Mathématiques/Algèbres d\u0027opérateurs","Quantum Chaos","Laplace-Beltrami","Hyperbolic Manifolds","Modular Correspondences","Quaternion Algebras","Prime Numbers"]},"trust":{"type":"FLOAT","value":0.05818665},"target_publication_title":{"type":"STRING","value":"On the scarring of eigenstates in some arithmetic hyperbolic manifolds"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-04-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00001491\",\"titles\":[\"On the scarring of eigenstates in some arithmetic hyperbolic manifolds\"],\"abstracts\":[\"In this paper, we deal with the conjecture of \\u0027Quantum Unique Ergodicity\\u0027. Z. Rudnick and P. Sarnak showed that there is no \\u0027strong scarring\\u0027 on closed geodesics for arithmetic congruence surfaces derived from a quaternion division algebra. We extend this result to a class of three-dimensional Riemannian manifolds X\\u003dGamma\\\\H^3 that are again derived from quaternion division algebras. We show that there is no \\u0027strong scarring\\u0027 on closed geodesics or on Gamma-closed imbedded totally geodesics surfaces of X.\"],\"language\":\"eng\",\"subjects\":[\"[MATH:MATH_MP] Mathematics/Mathematical Physics\",\"[MATH:MATH_MP] Mathématiques/Physique mathématique\",\"[MATH:MATH_NT] Mathematics/Number Theory\",\"[MATH:MATH_NT] Mathématiques/Théorie des nombres\",\"[MATH:MATH_OA] Mathematics/Operator Algebras\",\"[MATH:MATH_OA] Mathématiques/Algèbres d\\u0027opérateurs\",\"Quantum Chaos\",\"Laplace-Beltrami\",\"Hyperbolic Manifolds\",\"Modular Correspondences\",\"Quaternion Algebras\",\"Prime Numbers\"],\"creators\":[\"Poullaouec, Tristan\"],\"publicationdate\":\"2004-04-27\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00001491\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Preprint\"},{\"url\":\"http://arxiv.org/abs/math-ph/0404066\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/math-ph/0404066\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/math-ph/0404066\",\"id\":\"oai:arXiv.org:math-ph/0404066\"},\"trust\":0.42196095}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00001491"},"target_publication_author_list":{"type":"LIST_STRING","value":["Poullaouec, Tristan"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:math-ph/0404066"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH:MATH_MP] Mathematics/Mathematical Physics","[MATH:MATH_MP] Mathématiques/Physique mathématique","[MATH:MATH_NT] Mathematics/Number Theory","[MATH:MATH_NT] Mathématiques/Théorie des nombres","[MATH:MATH_OA] Mathematics/Operator Algebras","[MATH:MATH_OA] Mathématiques/Algèbres d\u0027opérateurs","Quantum Chaos","Laplace-Beltrami","Hyperbolic Manifolds","Modular Correspondences","Quaternion Algebras","Prime Numbers"]},"trust":{"type":"FLOAT","value":0.42196095},"target_publication_title":{"type":"STRING","value":"On the scarring of eigenstates in some arithmetic hyperbolic manifolds"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2004-04-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:1850390\",\"titles\":[\"Applications of Machine Learning in Cancer Prediction and Prognosis\"],\"abstracts\":[\"Machine learning is a branch of artificial intelligence that employs a variety of statistical, probabilistic and optimization techniques that allows computers to “learn” from past examples and to detect hard-to-discern patterns from large, noisy or complex data sets. This capability is particularly well-suited to medical applications, especially those that depend on complex proteomic and genomic measurements. As a result, machine learning is frequently used in cancer diagnosis and detection. More recently machine learning has been applied to cancer prognosis and prediction. This latter approach is particularly interesting as it is part of a growing trend towards personalized, predictive medicine. In assembling this review we conducted a broad survey of the different types of machine learning methods being used, the types of data being integrated and the performance of these methods in cancer prediction and prognosis. A number of trends are noted, including a growing dependence on protein biomarkers and microarray data, a strong bias towards applications in prostate and breast cancer, and a heavy reliance on “older” technologies such artificial neural networks (ANNs) instead of more recently developed or more easily interpretable machine learning methods. A number of published studies also appear to lack an appropriate level of validation or testing. Among the better designed and validated studies it is clear that machine learning methods can be used to substantially (15–25%) improve the accuracy of predicting cancer susceptibility, recurrence and mortality. At a more fundamental level, it is also evident that machine learning is also helping to improve our basic understanding of cancer development and progression.\"],\"language\":\"eng\",\"subjects\":[\"Review\",\"Cancer\",\"machine learning\",\"prognosis\",\"risk\",\"prediction\"],\"creators\":[\"Cruz, Joseph A.\",\"Wishart, David S.\"],\"publicationdate\":\"2007-02-01\",\"publisher\":\"Libertas Academica\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Cancer Informatics\",\"issn\":\"\",\"eissn\":\"1176-9351\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC2675494\",\"type\":\"pmc\"},{\"value\":\"19458758\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2675494\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://la-press.com/article.php?article_id\\u003d110\",\"license\":\"OPEN\",\"hostedby\":\"Cancer Informatics\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://la-press.com/article.php?article_id\\u003d110\",\"license\":\"OPEN\",\"hostedby\":\"Cancer Informatics\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://la-press.com/article.php?article_id\\u003d110\",\"id\":\"oai:doaj.org/article:772708a551c743f89c4d16c923a49710\"},\"trust\":0.2836612}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:1850390"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cruz, Joseph A.","Wishart, David S."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:772708a551c743f89c4d16c923a49710"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Review","Cancer","machine learning","prognosis","risk","prediction"]},"trust":{"type":"FLOAT","value":0.2836612},"target_publication_title":{"type":"STRING","value":"Applications of Machine Learning in Cancer Prediction and Prognosis"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2007-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00922314v1\",\"titles\":[\"Dynamical 2-complexes\"],\"abstracts\":[\"International audience\",\"We introduce the class of dynamical 2-complexes. These complexes allow us to obtain in particular a topological representation of any free group automorphism.\"],\"language\":\"eng\",\"subjects\":[\"2-complexes\",\"suspension\",\"free group automorphism\",\"[MATH.MATH-GT] Mathematics/Geometric Topology\",\"[MATH.MATH-DS] Mathematics/Dynamical Systems\"],\"creators\":[\"Gautero, François\"],\"publicationdate\":\"2001-01-01\",\"publisher\":\"Springer Verlag (Germany)\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire Jean Alexandre Dieudonné (JAD) ; Université Nice Sophia Antipolis (UNS) - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00922314\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00922314\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00922314\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00922314\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00922314\"},\"trust\":0.39385617}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00922314v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gautero, François"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00922314"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["2-complexes","suspension","free group automorphism","[MATH.MATH-GT] Mathematics/Geometric Topology","[MATH.MATH-DS] Mathematics/Dynamical Systems"]},"trust":{"type":"FLOAT","value":0.39385617},"target_publication_title":{"type":"STRING","value":"Dynamical 2-complexes"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2001-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00922314\",\"titles\":[\"Dynamical 2-complexes\"],\"abstracts\":[\"We introduce the class of dynamical 2-complexes. These complexes allow us to obtain in particular a topological representation of any free group automorphism.\"],\"language\":\"eng\",\"subjects\":[\"[MATH:MATH_GT] Mathematics/Geometric Topology\",\"[MATH:MATH_GT] Mathématiques/Topologie géométrique\",\"[MATH:MATH_DS] Mathematics/Dynamical Systems\",\"[MATH:MATH_DS] Mathématiques/Systèmes dynamiques\",\"2-complexes\",\"suspension\",\"free group automorphism\"],\"creators\":[\"Gautero, François\"],\"publicationdate\":\"2001-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00922314\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00922314\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00922314\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00922314\",\"id\":\"oai:HAL:hal-00922314v1\"},\"trust\":0.79589695}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00922314"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gautero, François"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00922314v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[MATH:MATH_GT] Mathematics/Geometric Topology","[MATH:MATH_GT] Mathématiques/Topologie géométrique","[MATH:MATH_DS] Mathematics/Dynamical Systems","[MATH:MATH_DS] Mathématiques/Systèmes dynamiques","2-complexes","suspension","free group automorphism"]},"trust":{"type":"FLOAT","value":0.79589695},"target_publication_title":{"type":"STRING","value":"Dynamical 2-complexes"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2001-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2181972\",\"titles\":[\"Comparative genomics approach to detecting split-coding regions in a low-coverage genome: lessons from the chimaera Callorhinchus milii (Holocephali, Chondrichthyes)\"],\"abstracts\":[\"Recent development of deep sequencing technologies has facilitated de novo genome sequencing projects, now conducted even by individual laboratories. However, this will yield more and more genome sequences that are not well assembled, and will hinder thorough annotation when no closely related reference genome is available. One of the challenging issues is the identification of protein-coding sequences split into multiple unassembled genomic segments, which can confound orthology assignment and various laboratory experiments requiring the identification of individual genes. In this study, using the genome of a cartilaginous fish, Callorhinchus milii, as test case, we performed gene prediction using a model specifically trained for this genome. We implemented an algorithm, designated ESPRIT, to identify possible linkages between multiple protein-coding portions derived from a single genomic locus split into multiple unassembled genomic segments. We developed a validation framework based on an artificially fragmented human genome, improvements between early and recent mouse genome assemblies, comparison with experimentally validated sequences from GenBank, and phylogenetic analyses. Our strategy provided insights into practical solutions for efficient annotation of only partially sequenced (low-coverage) genomes. To our knowledge, our study is the first formulation of a method to link unassembled genomic segments based on proteomes of relatively distantly related species as references.\"],\"language\":\"eng\",\"subjects\":[\"Special Issue Papers\",\"Chondrichthyes\",\"trained gene prediction\",\"next generation sequencing\",\"genome assembly\",\"orthology\"],\"creators\":[\"Dessimoz, Christophe\",\"Zoller, Stefan\",\"Manousaki, Tereza\",\"Qiu, Huan\",\"Meyer, Axel\",\"Kuraku, Shigehiro\"],\"publicationdate\":\"2011-06-01\",\"publisher\":\"Oxford University Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Briefings in Bioinformatics\",\"issn\":\"1467-5463\",\"eissn\":\"1477-4054\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1093/bib/bbr038\",\"type\":\"doi\"},{\"value\":\"PMC3178057\",\"type\":\"pmc\"},{\"value\":\"21712341\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3178057\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:352-194550\",\"license\":\"OPEN\",\"hostedby\":\"Konstanzer Online-Publikations-System\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:352-194550\",\"license\":\"OPEN\",\"hostedby\":\"Konstanzer Online-Publikations-System\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Konstanzer Online-Publikations-System\",\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:352-194550\",\"id\":\"oai:kops.uni-konstanz.de:123456789/19455\"},\"trust\":0.9284161}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2181972"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dessimoz, Christophe","Zoller, Stefan","Manousaki, Tereza","Qiu, Huan","Meyer, Axel","Kuraku, Shigehiro"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:kops.uni-konstanz.de:123456789/19455"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8df707a948fac1b4a0f97aa554886ec8"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Special Issue Papers","Chondrichthyes","trained gene prediction","next generation sequencing","genome assembly","orthology"]},"trust":{"type":"FLOAT","value":0.9284161},"target_publication_title":{"type":"STRING","value":"Comparative genomics approach to detecting split-coding regions in a low-coverage genome: lessons from the chimaera Callorhinchus milii (Holocephali, Chondrichthyes)"},"provenance_datasource_name":{"type":"STRING","value":"Konstanzer Online-Publikations-System"},"target_dateofacceptance":{"type":"DATE","value":"2011-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:kops.uni-konstanz.de:123456789/19455\",\"titles\":[\"Comparative genomics approach to detecting split-coding regions in a low-coverage genome : lessons from the chimaera Callorhinchus milii (Holocephali, Chondrichthyes)\"],\"abstracts\":[\"Recent development of deep sequencing technologies has facilitated de novo genome sequencing projects, now conducted even by individual laboratories. However, this will yield more and more genome sequences that are not well assembled, and will hinder thorough annotation when no closely related reference genome is available. One of the challenging issues is the identification of protein-coding sequences split into multiple unassembled genomic segments, which can confound orthology assignment and various laboratory experiments requiring the identification of individual genes. In this study, using the genome of a cartilaginous fish, Callorhinchus milii, as test case, we performed gene prediction using a model specifically trained for this genome. We implemented an algorithm, designated ESPRIT, to identify possible linkages between multiple protein-coding portions derived from a single genomic locus split into multiple unassembled genomic segments. We developed a validation framework based on an artificially fragmented human genome, improvements between early and recent mouse genome assemblies, comparison with experimentally validated sequences from GenBank, and phylogenetic analyses. Our strategy provided insights into practical solutions for efficient annotation of only partially sequenced (low-coverage) genomes. To our knowledge, our study is the first formulation of a method to link unassembled genomic segments based on proteomes of relatively distantly related species as references.\"],\"language\":\"eng\",\"subjects\":[\"Chondrichthyes\",\"trained gene prediction\",\"next generation sequencing\",\"genome assembly\",\"orthology\",\"info:eu-repo/classification/ddc/570\"],\"creators\":[\"Dessimoz, Christophe\",\"Zoller, Stefan\",\"Manousaki, Tereza\",\"Qiu, Huan\",\"Meyer, Axel\",\"Kuraku, Shigehiro\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Konstanzer Online-Publikations-System\"],\"pids\":[{\"value\":\"10.1093/bib/bbr038\",\"type\":\"doi\"},{\"value\":\"PMC3178057\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:352-194550\",\"license\":\"OPEN\",\"hostedby\":\"Konstanzer Online-Publikations-System\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC3178057\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3178057\",\"id\":\"oai:europepmc.org:2181972\"},\"trust\":0.7836995}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Konstanzer Online-Publikations-System"},"target_publication_id":{"type":"STRING","value":"oai:kops.uni-konstanz.de:123456789/19455"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dessimoz, Christophe","Zoller, Stefan","Manousaki, Tereza","Qiu, Huan","Meyer, Axel","Kuraku, Shigehiro"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2181972"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Chondrichthyes","trained gene prediction","next generation sequencing","genome assembly","orthology","info:eu-repo/classification/ddc/570"]},"trust":{"type":"FLOAT","value":0.7836995},"target_publication_title":{"type":"STRING","value":"Comparative genomics approach to detecting split-coding regions in a low-coverage genome : lessons from the chimaera Callorhinchus milii (Holocephali, Chondrichthyes)"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8df707a948fac1b4a0f97aa554886ec8"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:kops.uni-konstanz.de:123456789/19455\",\"titles\":[\"Comparative genomics approach to detecting split-coding regions in a low-coverage genome : lessons from the chimaera Callorhinchus milii (Holocephali, Chondrichthyes)\"],\"abstracts\":[\"Recent development of deep sequencing technologies has facilitated de novo genome sequencing projects, now conducted even by individual laboratories. However, this will yield more and more genome sequences that are not well assembled, and will hinder thorough annotation when no closely related reference genome is available. One of the challenging issues is the identification of protein-coding sequences split into multiple unassembled genomic segments, which can confound orthology assignment and various laboratory experiments requiring the identification of individual genes. In this study, using the genome of a cartilaginous fish, Callorhinchus milii, as test case, we performed gene prediction using a model specifically trained for this genome. We implemented an algorithm, designated ESPRIT, to identify possible linkages between multiple protein-coding portions derived from a single genomic locus split into multiple unassembled genomic segments. We developed a validation framework based on an artificially fragmented human genome, improvements between early and recent mouse genome assemblies, comparison with experimentally validated sequences from GenBank, and phylogenetic analyses. Our strategy provided insights into practical solutions for efficient annotation of only partially sequenced (low-coverage) genomes. To our knowledge, our study is the first formulation of a method to link unassembled genomic segments based on proteomes of relatively distantly related species as references.\"],\"language\":\"eng\",\"subjects\":[\"Chondrichthyes\",\"trained gene prediction\",\"next generation sequencing\",\"genome assembly\",\"orthology\",\"info:eu-repo/classification/ddc/570\"],\"creators\":[\"Dessimoz, Christophe\",\"Zoller, Stefan\",\"Manousaki, Tereza\",\"Qiu, Huan\",\"Meyer, Axel\",\"Kuraku, Shigehiro\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Konstanzer Online-Publikations-System\"],\"pids\":[{\"value\":\"10.1093/bib/bbr038\",\"type\":\"doi\"},{\"value\":\"21712341\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://nbn-resolving.de/urn:nbn:de:bsz:352-194550\",\"license\":\"OPEN\",\"hostedby\":\"Konstanzer Online-Publikations-System\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"21712341\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC3178057\",\"id\":\"oai:europepmc.org:2181972\"},\"trust\":0.7836995}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Konstanzer Online-Publikations-System"},"target_publication_id":{"type":"STRING","value":"oai:kops.uni-konstanz.de:123456789/19455"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dessimoz, Christophe","Zoller, Stefan","Manousaki, Tereza","Qiu, Huan","Meyer, Axel","Kuraku, Shigehiro"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2181972"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Chondrichthyes","trained gene prediction","next generation sequencing","genome assembly","orthology","info:eu-repo/classification/ddc/570"]},"trust":{"type":"FLOAT","value":0.7836995},"target_publication_title":{"type":"STRING","value":"Comparative genomics approach to detecting split-coding regions in a low-coverage genome : lessons from the chimaera Callorhinchus milii (Holocephali, Chondrichthyes)"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8df707a948fac1b4a0f97aa554886ec8"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:mgt:youmgt:v:4:y:2006:i:2:p:167-189\",\"titles\":[\"Competitiveness of Slovenia as a Tourist Destination\"],\"abstracts\":[\"In an increasingly saturated market the fundamental task for the destination management, is understanding how tourism destination competitiveness can be enhanced and sustained. Competitiveness of a tourist destination is an important factor that positively influences the growth of the market share. Therefore tourism managers have to identify and explore competitive advantages and analyse the actual competitive position. There exist different approaches that model the competitiveness (Ritchie and Crouch 1993; Evans and Johnson 1995; Hassan 2000; Kozak 2001; De Keyser and Vanhove 1994; Dwyer, Livaic and Mellor 2003). Among all we follow the framework (Dwyer, Livaic and Mellor 2003), which was developed in a collaborative effort by researchers in Korea and Australia and presented in Sydney in 2001, and conduct an empirical analysis on Slovenia as a tourist destination. The aim of this paper is to present the model of destination competitiveness. The paper presents the results of a survey, based on indicators associated with the model, to determine the competitiveness of Slovenia as a tourist destination.\"],\"language\":\"und\",\"subjects\":[\"previous visitation, Slovenia\"],\"creators\":[\"Doris Gomezelj Omerzel\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Managing Global Transitions\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.fm-kp.si/zalozba/ISSN/1581-6311/4_167-189.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Article\"},{\"url\":\"http://www.fm-kp.si/zalozba/ISSN/1581-6311/4_167-189.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Managing Global Transitions\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.fm-kp.si/zalozba/ISSN/1581-6311/4_167-189.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Managing Global Transitions\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.fm-kp.si/zalozba/ISSN/1581-6311/4_167-189.pdf\",\"id\":\"oai:doaj.org/article:1326a5f3f6df465bb571d04d6db28867\"},\"trust\":0.47505617}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:mgt:youmgt:v:4:y:2006:i:2:p:167-189"},"target_publication_author_list":{"type":"LIST_STRING","value":["Doris Gomezelj Omerzel"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:1326a5f3f6df465bb571d04d6db28867"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["previous visitation, Slovenia"]},"trust":{"type":"FLOAT","value":0.47505617},"target_publication_title":{"type":"STRING","value":"Competitiveness of Slovenia as a Tourist Destination"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:math/0606026\",\"titles\":[\"Geometric and homotopy theoretic methods in Nielsen coincidence theory\"],\"abstracts\":[\" In classical fixed point and coincidence theory the notion of Nielsen numbers\\nhas proved to be extremely fruitful. Here we extend it to pairs (f_1, f_2) of\\nmaps between manifolds of arbitrary dimensions. This leads to estimates of the\\nminimum numbers MCC(f_1, f_2) (and MC(f_1, f_2), resp.) of pathcomponents (and\\nof points, resp.) in the coincidence sets of those pairs of maps which are\\nhomotopic to (f_1, f_2). Furthermore we deduce finiteness conditions for\\nMC(f_1, f_2). As an application we compute both minimum numbers explicitly in\\nfour concrete geometric sample situations. The Nielsen decomposition of a\\ncoincidence set is induced by the decomposition of a certain path space E(f_1,\\nf_2) into pathcomponents. Its higher dimensional topology captures further\\ncrucial geometric coincidence data. An analoguous approach can be used to\\ndefine also Nielsen numbers of certain link maps.\\n\"],\"language\":\"eng\",\"subjects\":[\"Mathematics - Algebraic Topology\",\"Mathematics - Geometric Topology\",\"55M20\",\"57R90\",\"55P35\"],\"creators\":[\"Koschorke, Ulrich\"],\"publicationdate\":\"2006-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/math/0606026\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/FPTA/2006/84093\",\"license\":\"OPEN\",\"hostedby\":\"Fixed Point Theory and Applications\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/FPTA/2006/84093\",\"license\":\"OPEN\",\"hostedby\":\"Fixed Point Theory and Applications\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/FPTA/2006/84093\",\"id\":\"oai:doaj.org/article:b74b0aff0eeb4757a164e4403f153065\"},\"trust\":0.3940425}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:math/0606026"},"target_publication_author_list":{"type":"LIST_STRING","value":["Koschorke, Ulrich"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:b74b0aff0eeb4757a164e4403f153065"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematics - Algebraic Topology","Mathematics - Geometric Topology","55M20","57R90","55P35"]},"trust":{"type":"FLOAT","value":0.3940425},"target_publication_title":{"type":"STRING","value":"Geometric and homotopy theoretic methods in Nielsen coincidence theory"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2006-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:math/0606026\",\"titles\":[\"Geometric and homotopy theoretic methods in Nielsen coincidence theory\"],\"abstracts\":[\" In classical fixed point and coincidence theory the notion of Nielsen numbers\\nhas proved to be extremely fruitful. Here we extend it to pairs (f_1, f_2) of\\nmaps between manifolds of arbitrary dimensions. This leads to estimates of the\\nminimum numbers MCC(f_1, f_2) (and MC(f_1, f_2), resp.) of pathcomponents (and\\nof points, resp.) in the coincidence sets of those pairs of maps which are\\nhomotopic to (f_1, f_2). Furthermore we deduce finiteness conditions for\\nMC(f_1, f_2). As an application we compute both minimum numbers explicitly in\\nfour concrete geometric sample situations. The Nielsen decomposition of a\\ncoincidence set is induced by the decomposition of a certain path space E(f_1,\\nf_2) into pathcomponents. Its higher dimensional topology captures further\\ncrucial geometric coincidence data. An analoguous approach can be used to\\ndefine also Nielsen numbers of certain link maps.\\n\"],\"language\":\"eng\",\"subjects\":[\"Mathematics - Algebraic Topology\",\"Mathematics - Geometric Topology\",\"55M20\",\"57R90\",\"55P35\"],\"creators\":[\"Koschorke, Ulrich\"],\"publicationdate\":\"2006-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/math/0606026\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://www.fixedpointtheoryandapplications.com/content/2006/84093\",\"license\":\"OPEN\",\"hostedby\":\"Fixed Point Theory and Applications\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.fixedpointtheoryandapplications.com/content/2006/84093\",\"license\":\"OPEN\",\"hostedby\":\"Fixed Point Theory and Applications\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.fixedpointtheoryandapplications.com/content/2006/84093\",\"id\":\"oai:doaj.org/article:fda7e9700b5143ccaaca1985d029ef27\"},\"trust\":0.7869426}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:math/0606026"},"target_publication_author_list":{"type":"LIST_STRING","value":["Koschorke, Ulrich"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:fda7e9700b5143ccaaca1985d029ef27"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Mathematics - Algebraic Topology","Mathematics - Geometric Topology","55M20","57R90","55P35"]},"trust":{"type":"FLOAT","value":0.7869426},"target_publication_title":{"type":"STRING","value":"Geometric and homotopy theoretic methods in Nielsen coincidence theory"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2006-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3101993\",\"titles\":[\"FUNGEMIA CAUSED BY Candida SPECIES IN A CHILDREN\\u0027S PUBLIC HOSPITAL IN THE CITY OF SÃO PAULO, BRAZIL: STUDY IN THE PERIOD 2007-2010\"],\"abstracts\":[\"Candidemia remains a major cause of morbidity and mortality in the health care environment. The epidemiology of Candida infection is changing, mainly in relation to the number of episodes caused by species C. non-albicans. The overall objective of this study was to evaluate the frequency of yeasts of the genus Candida, in a four-year period, isolated from blood of pediatric patients hospitalized in a public hospital of the city of São Paulo, Brazil. In this period, yeasts from blood of 104 patients were isolated and, the identified species of Candida by phenotypic and genotypic methods were: C. albicans (39/104), C. tropicalis (25/104), C. parapsilosis (23/104), Pichia anomala (6/104), C. guilliermondii (5/104), C. krusei (3/104), C. glabrata (2/104) and C. pararugosa (1/104). During the period of the study, a higher frequency of isolates of C. non-albicans (63.55%) (p \\u003d 0.0286) was verified. In this study we verified the increase of the non-albicans species throughout the years (mainly in 2009 and 2010). Thus, considering the peculiarities presented by Candida species, a correct identification of species is recommended to lead to a faster diagnosis and an efficient treatment.\"],\"language\":\"eng\",\"subjects\":[\"Nosocomial Infections\",\"Candida\",\"Candidemia\",\"Pediatric\"],\"creators\":[\"Oliveira, Vanessa Kummer Perinazzo\",\"Ruiz, Luciana Da Silva\",\"Oliveira, Nélio Alessandro Jesus\",\"Moreira, Débora\",\"Hahn, Rosane Christine\",\"Melo, Analy Salles Azevedo\",\"Nishikaku, Angela Satie\",\"Paula, Claudete Rodrigues\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"Instituto de Medicina Tropical\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Revista do Instituto de Medicina Tropical de São Paulo\",\"issn\":\"0036-4665\",\"eissn\":\"1678-9946\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1590/S0036-46652014000400006\",\"type\":\"doi\"},{\"value\":\"PMC4131815\",\"type\":\"pmc\"},{\"value\":\"25076430\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4131815\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.scielo.br/scielo.php?script\\u003dsci_arttext\\u0026pid\\u003dS0036-46652014000400301\\u0026lng\\u003den\\u0026tlng\\u003den\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.scielo.br/scielo.php?script\\u003dsci_arttext\\u0026pid\\u003dS0036-46652014000400301\\u0026lng\\u003den\\u0026tlng\\u003den\",\"license\":\"OPEN\",\"hostedby\":\"DOAJ-Articles\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.scielo.br/scielo.php?script\\u003dsci_arttext\\u0026pid\\u003dS0036-46652014000400301\\u0026lng\\u003den\\u0026tlng\\u003den\",\"id\":\"oai:doaj.org/article:3a46a53dec3c4387bb14e33008b62a1d\"},\"trust\":0.22944438}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3101993"},"target_publication_author_list":{"type":"LIST_STRING","value":["Oliveira, Vanessa Kummer Perinazzo","Ruiz, Luciana Da Silva","Oliveira, Nélio Alessandro Jesus","Moreira, Débora","Hahn, Rosane Christine","Melo, Analy Salles Azevedo","Nishikaku, Angela Satie","Paula, Claudete Rodrigues"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:3a46a53dec3c4387bb14e33008b62a1d"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Nosocomial Infections","Candida","Candidemia","Pediatric"]},"trust":{"type":"FLOAT","value":0.22944438},"target_publication_title":{"type":"STRING","value":"FUNGEMIA CAUSED BY Candida SPECIES IN A CHILDREN\u0027S PUBLIC HOSPITAL IN THE CITY OF SÃO PAULO, BRAZIL: STUDY IN THE PERIOD 2007-2010"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2746131\",\"titles\":[\"A narrative approach to explore grief experiences and treatment adherence in people with chronic pain after participation in a pain-management program: a 6-year follow-up study\"],\"abstracts\":[\"Objective The aim of this study was to explore grief caused by chronic pain and treatment adherence, and how these experiences are integrated into ongoing life stories. Methods A 6-year follow-up using a qualitative mixed-methods design based on written narratives and image narratives was performed. Five women suffering from chronic pain comprised the purposive sample. They had completed an 8-week group pain-management program with two follow-ups, and thereafter continued as a self-help group. A narrative approach was used to analyze the written and image narratives guided by three analytic steps. Results Findings showed that experiences of grief over time were commonly associated with chronic pain. The participants’ past experiences reflected their grief at having to abandon jobs and social networks, and revealed loneliness and despair. The present life situation seemed to reflect adaptation, and hope for the future had been established. Overall, forward progression means an ongoing struggle towards a reintegrated body and a meaningful life. Conclusion Through such narratives, health-care workers can identify treatment adherence related to grief and pain, and learn how people might regain their lives beyond using traditional interviews.\"],\"language\":\"eng\",\"subjects\":[\"Original Research\",\"chronic pain\",\"follow-up\",\"grief\",\"image\",\"narrative\",\"nursing\"],\"creators\":[\"Dysvik, Elin\",\"Natvig, Gerd Karin\",\"Furnes, Bodil\"],\"publicationdate\":\"2013-08-01\",\"publisher\":\"Dove Medical Press\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Patient preference and adherence\",\"issn\":\"\",\"eissn\":\"1177-889X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.2147/PPA.S46272\",\"type\":\"doi\"},{\"value\":\"PMC3749063\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3749063\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www.dovepress.com/a-narrative-approach-to-explore-grief-experiences-and-treatment-adhere-a13992\",\"license\":\"OPEN\",\"hostedby\":\"Patient Preference and Adherence\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.dovepress.com/a-narrative-approach-to-explore-grief-experiences-and-treatment-adhere-a13992\",\"license\":\"OPEN\",\"hostedby\":\"Patient Preference and Adherence\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://www.dovepress.com/a-narrative-approach-to-explore-grief-experiences-and-treatment-adhere-a13992\",\"id\":\"oai:doaj.org/article:51fcecbbda1941a082935a8a9e414fe3\"},\"trust\":0.8688857}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2746131"},"target_publication_author_list":{"type":"LIST_STRING","value":["Dysvik, Elin","Natvig, Gerd Karin","Furnes, Bodil"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:51fcecbbda1941a082935a8a9e414fe3"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Original Research","chronic pain","follow-up","grief","image","narrative","nursing"]},"trust":{"type":"FLOAT","value":0.8688857},"target_publication_title":{"type":"STRING","value":"A narrative approach to explore grief experiences and treatment adherence in people with chronic pain after participation in a pain-management program: a 6-year follow-up study"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2013-08-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00655059v1\",\"titles\":[\"Pairing Model-Theoretic Syntax and Semantic Network for Writing Assistance\"],\"abstracts\":[\"International audience\",\"In this paper we investigate the possibility of a syntax- semantics inferface between a framework for Model-Theoretic Syntax on one hand and a semantic network on the other hand. We focus on exploring the ability of such a pairing to solve a collection of grammar checking problems, with an emphasis on cases of missing words. We dis- cuss a solution where constraint violations are interpreted as grammar errors and yield the re-generation of new candidate parses (partially un- realised) through tree operations. Follows a surface realisation phase, where missing words are filled through semantic network exploration.\"],\"language\":\"eng\",\"subjects\":[\"[INFO.INFO-TT] Computer Science/Document and Text Processing\"],\"creators\":[\"Prost, Jean-Philippe\",\"Lafourcade, Mathieu\"],\"publicationdate\":\"2011-09-27\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"INFO/TEXTE ; Laboratoire d\\u0027Informatique de Robotique et de Microélectronique de Montpellier (LIRMM) ; Université Montpellier II - Sciences et techniques - CNRS - Université Montpellier II - Sciences et techniques - CNRS\",\"Philippe Blache and Henning Christiansen and Veronica Dahl and Jorgen Villadsen\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00655059\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00655059\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00655059\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00655059\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00655059\"},\"trust\":0.9389181}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00655059v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Prost, Jean-Philippe","Lafourcade, Mathieu"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00655059"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO.INFO-TT] Computer Science/Document and Text Processing"]},"trust":{"type":"FLOAT","value":0.9389181},"target_publication_title":{"type":"STRING","value":"Pairing Model-Theoretic Syntax and Semantic Network for Writing Assistance"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-09-27"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00655059\",\"titles\":[\"Pairing Model-Theoretic Syntax and Semantic Network for Writing Assistance\"],\"abstracts\":[\"In this paper we investigate the possibility of a syntax- semantics inferface between a framework for Model-Theoretic Syntax on one hand and a semantic network on the other hand. We focus on exploring the ability of such a pairing to solve a collection of grammar checking problems, with an emphasis on cases of missing words. We dis- cuss a solution where constraint violations are interpreted as grammar errors and yield the re-generation of new candidate parses (partially un- realised) through tree operations. Follows a surface realisation phase, where missing words are filled through semantic network exploration.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_TT] Computer Science/Document and Text Processing\",\"[INFO:INFO_TT] Informatique/Traitement du texte et du document\"],\"creators\":[\"Prost, Jean-Philippe\",\"Lafourcade, Mathieu\"],\"publicationdate\":\"2011-10-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00655059\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00655059\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00655059\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00655059\",\"id\":\"oai:HAL:hal-00655059v1\"},\"trust\":0.64374256}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00655059"},"target_publication_author_list":{"type":"LIST_STRING","value":["Prost, Jean-Philippe","Lafourcade, Mathieu"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00655059v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_TT] Computer Science/Document and Text Processing","[INFO:INFO_TT] Informatique/Traitement du texte et du document"]},"trust":{"type":"FLOAT","value":0.64374256},"target_publication_title":{"type":"STRING","value":"Pairing Model-Theoretic Syntax and Semantic Network for Writing Assistance"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberch:0056\",\"titles\":[\"Fiscal Implications of Pension Reforms in Italy\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Agar Brugiavini\",\"Franco Peracchi\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/chapters/c0056.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"},{\"url\":\"http://www.unive.it/media/allegato/DIP/Economia/Working_papers/Working_papers_2008/WP_DSE_brugiavini_peracchi_30_08.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.unive.it/media/allegato/DIP/Economia/Working_papers/Working_papers_2008/WP_DSE_brugiavini_peracchi_30_08.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.unive.it/media/allegato/DIP/Economia/Working_papers/Working_papers_2008/WP_DSE_brugiavini_peracchi_30_08.pdf\",\"id\":\"oai:RePEc:ven:wpaper:2008_30\"},\"trust\":0.19839847}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberch:0056"},"target_publication_author_list":{"type":"LIST_STRING","value":["Agar Brugiavini","Franco Peracchi"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ven:wpaper:2008_30"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.19839847},"target_publication_title":{"type":"STRING","value":"Fiscal Implications of Pension Reforms in Italy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberch:0056\",\"titles\":[\"Fiscal Implications of Pension Reforms in Italy\"],\"abstracts\":[\"In this paper, we contribute to the current debate on the Italian pension system by analyzing the impact of social security reforms, in terms of both budgetary implications and distributional effects. This is done by simulating the effects of three hypothetical reforms, plus the effects of the 1995- reform of the Italian pension system (the so-called Dini reform). Our approach relies on the use of a semi-structural econometric model to predict retirement probabilities under different policy scenarios, so as to properly take into account the behavioral effects of the reforms. On the basis of the estimated retirement model, we develop a complete accounting exercise which includes not only changes in gross future benefits due to policy changes, but also changes in social security contributions, income taxes and value added taxes. Thus, our results provide not only estimates of the workers’ gains or losses, but also an exhaustive evaluation of the gains and losses for the government budget. We find that the reforms, particularly the Dini reform (once fully phased in), have a substantial impact on individuals’ retirement decisions and their net social security wealth, as well as substantial gains for the government finances.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Agar Brugiavini\",\"Franco Peracchi\"],\"publicationdate\":\"\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/chapters/c0056.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"In this paper, we contribute to the current debate on the Italian pension system by analyzing the impact of social security reforms, in terms of both budgetary implications and distributional effects. This is done by simulating the effects of three hypothetical reforms, plus the effects of the 1995- reform of the Italian pension system (the so-called Dini reform). Our approach relies on the use of a semi-structural econometric model to predict retirement probabilities under different policy scenarios, so as to properly take into account the behavioral effects of the reforms. On the basis of the estimated retirement model, we develop a complete accounting exercise which includes not only changes in gross future benefits due to policy changes, but also changes in social security contributions, income taxes and value added taxes. Thus, our results provide not only estimates of the workers’ gains or losses, but also an exhaustive evaluation of the gains and losses for the government budget. We find that the reforms, particularly the Dini reform (once fully phased in), have a substantial impact on individuals’ retirement decisions and their net social security wealth, as well as substantial gains for the government finances.\"]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.unive.it/media/allegato/DIP/Economia/Working_papers/Working_papers_2008/WP_DSE_brugiavini_peracchi_30_08.pdf\",\"id\":\"oai:RePEc:ven:wpaper:2008_30\"},\"trust\":0.7269149}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberch:0056"},"target_publication_author_list":{"type":"LIST_STRING","value":["Agar Brugiavini","Franco Peracchi"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ven:wpaper:2008_30"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.7269149},"target_publication_title":{"type":"STRING","value":"Fiscal Implications of Pension Reforms in Italy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PUBLICATION_DATE","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:nbr:nberch:0056\",\"titles\":[\"Fiscal Implications of Pension Reforms in Italy\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Agar Brugiavini\",\"Franco Peracchi\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.nber.org/chapters/c0056.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"publicationdate\":\"2008-01-01\"},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.unive.it/media/allegato/DIP/Economia/Working_papers/Working_papers_2008/WP_DSE_brugiavini_peracchi_30_08.pdf\",\"id\":\"oai:RePEc:ven:wpaper:2008_30\"},\"trust\":0.04532647}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:nbr:nberch:0056"},"target_publication_author_list":{"type":"LIST_STRING","value":["Agar Brugiavini","Franco Peracchi"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ven:wpaper:2008_30"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.04532647},"target_publication_title":{"type":"STRING","value":"Fiscal Implications of Pension Reforms in Italy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ven:wpaper:2008_30\",\"titles\":[\"Fiscal Implications of Pension Reforms in Italy\"],\"abstracts\":[\"In this paper, we contribute to the current debate on the Italian pension system by analyzing the impact of social security reforms, in terms of both budgetary implications and distributional effects. This is done by simulating the effects of three hypothetical reforms, plus the effects of the 1995- reform of the Italian pension system (the so-called Dini reform). Our approach relies on the use of a semi-structural econometric model to predict retirement probabilities under different policy scenarios, so as to properly take into account the behavioral effects of the reforms. On the basis of the estimated retirement model, we develop a complete accounting exercise which includes not only changes in gross future benefits due to policy changes, but also changes in social security contributions, income taxes and value added taxes. Thus, our results provide not only estimates of the workers’ gains or losses, but also an exhaustive evaluation of the gains and losses for the government budget. We find that the reforms, particularly the Dini reform (once fully phased in), have a substantial impact on individuals’ retirement decisions and their net social security wealth, as well as substantial gains for the government finances.\"],\"language\":\"und\",\"subjects\":[\"Social security budget, early retirement, fiscal effects of pension reforms\"],\"creators\":[\"Agar Brugiavini\",\"Franco Peracchi\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.unive.it/media/allegato/DIP/Economia/Working_papers/Working_papers_2008/WP_DSE_brugiavini_peracchi_30_08.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.nber.org/chapters/c0056.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.nber.org/chapters/c0056.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Book\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.nber.org/chapters/c0056.pdf\",\"id\":\"oai:RePEc:nbr:nberch:0056\"},\"trust\":0.26127827}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ven:wpaper:2008_30"},"target_publication_author_list":{"type":"LIST_STRING","value":["Agar Brugiavini","Franco Peracchi"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:nbr:nberch:0056"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Social security budget, early retirement, fiscal effects of pension reforms"]},"trust":{"type":"FLOAT","value":0.26127827},"target_publication_title":{"type":"STRING","value":"Fiscal Implications of Pension Reforms in Italy"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2429151\",\"titles\":[\"Osteopetrosis, Hypophosphatemia, and Phosphaturia in a Young Man: A Case Presentation and Differential Diagnosis\"],\"abstracts\":[\"We report the case of a 30-year-old African-American male with osteopetrosis and hypophosphatemia, presenting with diffuse myalgias. Laboratory evaluation performed revealed a low serum phosphorus level with urinary phosphate wasting, low calcium, and 25-hydroxyvitamin D concentrations, as well as elevated alkaline phosphatase. Skull and pelvic radiographs revealed high bone density consistent with high bone mass found on bone mineral density reports. PHEX gene mutation analysis was negative. Patient was started on calcium and phosphorus replacement, and he clinically improved. This paper will review the different subtypes of osteopetrosis, and the evaluation of hypophosphatemia.\"],\"language\":\"eng\",\"subjects\":[\"Case Report\"],\"creators\":[\"Mitri, Zahi\",\"Tangpricha, Vin\"],\"publicationdate\":\"2012-02-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Case Reports in Endocrinology\",\"issn\":\"2090-6501\",\"eissn\":\"2090-651X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2012/238364\",\"type\":\"doi\"},{\"value\":\"PMC3420435\",\"type\":\"pmc\"},{\"value\":\"22934198\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3420435\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2012/238364\",\"license\":\"OPEN\",\"hostedby\":\"Case Reports in Endocrinology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2012/238364\",\"license\":\"OPEN\",\"hostedby\":\"Case Reports in Endocrinology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2012/238364\",\"id\":\"oai:doaj.org/article:c0e7f53cc72045ce8419b7ecc95603a1\"},\"trust\":0.9681208}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2429151"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mitri, Zahi","Tangpricha, Vin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:c0e7f53cc72045ce8419b7ecc95603a1"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Case Report"]},"trust":{"type":"FLOAT","value":0.9681208},"target_publication_title":{"type":"STRING","value":"Osteopetrosis, Hypophosphatemia, and Phosphaturia in a Young Man: A Case Presentation and Differential Diagnosis"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2012-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00922298\",\"titles\":[\"A compact model of precessional spin-transfer switching for MTJ with a perpendicular polarizer\"],\"abstracts\":[\"Magnetic Tunnel Junction (MTJ) devices are CMOS compatible with high stability, high reliability and non-volatility. A macro-model of MTJ with preces- sional switching is presented in this paper. This model is based on Spin-Transfer Torque (STT) writing approach. The current-induced magnetic switching and excitations was studied in structures comprising a perpendicularly magnetized polarizing layer (PL), an in-plane magne- tized free layer (FL), and an in-plane magnetized ana- lyzing layer (AL).\"],\"language\":\"eng\",\"subjects\":[\"[SPI:NANO] Engineering Sciences/Micro and nanotechnologies/Microelectronics\",\"[SPI:NANO] Sciences de l\\u0027ingénieur/Micro et nanotechnologies/Microélectronique\",\"Magnetic Tunnel Junction\",\"Magnetic Random Access Memory\",\"Spin-Transfer Torque\",\"Perpendicular Polarizer\",\"CMOS architectures\"],\"creators\":[\"Mejdoubi, Abdelilah\",\"Guillaume, Prenat\",\"Bernard, Dieny\"],\"publicationdate\":\"2013-12-25\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00922298\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00922298\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00922298\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00922298\",\"id\":\"oai:HAL:hal-00922298v1\"},\"trust\":0.5709704}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00922298"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mejdoubi, Abdelilah","Guillaume, Prenat","Bernard, Dieny"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00922298v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SPI:NANO] Engineering Sciences/Micro and nanotechnologies/Microelectronics","[SPI:NANO] Sciences de l\u0027ingénieur/Micro et nanotechnologies/Microélectronique","Magnetic Tunnel Junction","Magnetic Random Access Memory","Spin-Transfer Torque","Perpendicular Polarizer","CMOS architectures"]},"trust":{"type":"FLOAT","value":0.5709704},"target_publication_title":{"type":"STRING","value":"A compact model of precessional spin-transfer switching for MTJ with a perpendicular polarizer"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-12-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00922298\",\"titles\":[\"A compact model of precessional spin-transfer switching for MTJ with a perpendicular polarizer\"],\"abstracts\":[\"Magnetic Tunnel Junction (MTJ) devices are CMOS compatible with high stability, high reliability and non-volatility. A macro-model of MTJ with preces- sional switching is presented in this paper. This model is based on Spin-Transfer Torque (STT) writing approach. The current-induced magnetic switching and excitations was studied in structures comprising a perpendicularly magnetized polarizing layer (PL), an in-plane magne- tized free layer (FL), and an in-plane magnetized ana- lyzing layer (AL).\"],\"language\":\"eng\",\"subjects\":[\"[SPI:NANO] Engineering Sciences/Micro and nanotechnologies/Microelectronics\",\"[SPI:NANO] Sciences de l\\u0027ingénieur/Micro et nanotechnologies/Microélectronique\",\"Magnetic Tunnel Junction\",\"Magnetic Random Access Memory\",\"Spin-Transfer Torque\",\"Perpendicular Polarizer\",\"CMOS architectures\"],\"creators\":[\"Mejdoubi, Abdelilah\",\"Guillaume, Prenat\",\"Bernard, Dieny\"],\"publicationdate\":\"2013-12-25\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1109/MIEL.2012.6222840\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00922298\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1109/MIEL.2012.6222840\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"European Research Council (ERC)\",\"url\":\"http://dx.doi.org/10.1109/MIEL.2012.6222840\",\"id\":\"185653\"},\"trust\":0.34736854}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00922298"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mejdoubi, Abdelilah","Guillaume, Prenat","Bernard, Dieny"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["185653"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::5ecaf0d3af3004219bc6b5907d19b6d9"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SPI:NANO] Engineering Sciences/Micro and nanotechnologies/Microelectronics","[SPI:NANO] Sciences de l\u0027ingénieur/Micro et nanotechnologies/Microélectronique","Magnetic Tunnel Junction","Magnetic Random Access Memory","Spin-Transfer Torque","Perpendicular Polarizer","CMOS architectures"]},"trust":{"type":"FLOAT","value":0.34736854},"target_publication_title":{"type":"STRING","value":"A compact model of precessional spin-transfer switching for MTJ with a perpendicular polarizer"},"provenance_datasource_name":{"type":"STRING","value":"European Research Council (ERC)"},"target_dateofacceptance":{"type":"DATE","value":"2013-12-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00922298\",\"titles\":[\"A compact model of precessional spin-transfer switching for MTJ with a perpendicular polarizer\"],\"abstracts\":[\"Magnetic Tunnel Junction (MTJ) devices are CMOS compatible with high stability, high reliability and non-volatility. A macro-model of MTJ with preces- sional switching is presented in this paper. This model is based on Spin-Transfer Torque (STT) writing approach. The current-induced magnetic switching and excitations was studied in structures comprising a perpendicularly magnetized polarizing layer (PL), an in-plane magne- tized free layer (FL), and an in-plane magnetized ana- lyzing layer (AL).\"],\"language\":\"eng\",\"subjects\":[\"[SPI:NANO] Engineering Sciences/Micro and nanotechnologies/Microelectronics\",\"[SPI:NANO] Sciences de l\\u0027ingénieur/Micro et nanotechnologies/Microélectronique\",\"Magnetic Tunnel Junction\",\"Magnetic Random Access Memory\",\"Spin-Transfer Torque\",\"Perpendicular Polarizer\",\"CMOS architectures\"],\"creators\":[\"Mejdoubi, Abdelilah\",\"Guillaume, Prenat\",\"Bernard, Dieny\"],\"publicationdate\":\"2013-12-25\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1109/MIEL.2012.6222840\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00922298\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1109/MIEL.2012.6222840\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"European Research Council (ERC)\",\"url\":\"http://dx.doi.org/10.1109/MIEL.2012.6222840\",\"id\":\"185653\"},\"trust\":0.34736854}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00922298"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mejdoubi, Abdelilah","Guillaume, Prenat","Bernard, Dieny"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["185653"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::5ecaf0d3af3004219bc6b5907d19b6d9"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SPI:NANO] Engineering Sciences/Micro and nanotechnologies/Microelectronics","[SPI:NANO] Sciences de l\u0027ingénieur/Micro et nanotechnologies/Microélectronique","Magnetic Tunnel Junction","Magnetic Random Access Memory","Spin-Transfer Torque","Perpendicular Polarizer","CMOS architectures"]},"trust":{"type":"FLOAT","value":0.34736854},"target_publication_title":{"type":"STRING","value":"A compact model of precessional spin-transfer switching for MTJ with a perpendicular polarizer"},"provenance_datasource_name":{"type":"STRING","value":"European Research Council (ERC)"},"target_dateofacceptance":{"type":"DATE","value":"2013-12-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00922298v1\",\"titles\":[\"A compact model of precessional spin-transfer switching for MTJ with a perpendicular polarizer\"],\"abstracts\":[\"International audience\",\"Magnetic Tunnel Junction (MTJ) devices are CMOS compatible with high stability, high reliability and non-volatility. A macro-model of MTJ with preces- sional switching is presented in this paper. This model is based on Spin-Transfer Torque (STT) writing approach. The current-induced magnetic switching and excitations was studied in structures comprising a perpendicularly magnetized polarizing layer (PL), an in-plane magne- tized free layer (FL), and an in-plane magnetized ana- lyzing layer (AL).\"],\"language\":\"eng\",\"subjects\":[\"Perpendicular Polarizer\",\"CMOS architectures\",\"Spin-Transfer Torque\",\"Magnetic Random Access Memory\",\"Magnetic Tunnel Junction\",\"[SPI.NANO] Engineering Sciences/Micro and nanotechnologies/Microelectronics\"],\"creators\":[\"Mejdoubi, Abdelilah\",\"Guillaume, Prenat\",\"Bernard, Dieny\"],\"publicationdate\":\"2013-12-25\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Logic ; SPINtronique et technologie des composants (SPINTEC - UMR 8191) ; CEA - CEA - CNRS - CEA - CEA - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00922298\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00922298\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00922298\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00922298\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00922298\"},\"trust\":0.31943542}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00922298v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mejdoubi, Abdelilah","Guillaume, Prenat","Bernard, Dieny"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00922298"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Perpendicular Polarizer","CMOS architectures","Spin-Transfer Torque","Magnetic Random Access Memory","Magnetic Tunnel Junction","[SPI.NANO] Engineering Sciences/Micro and nanotechnologies/Microelectronics"]},"trust":{"type":"FLOAT","value":0.31943542},"target_publication_title":{"type":"STRING","value":"A compact model of precessional spin-transfer switching for MTJ with a perpendicular polarizer"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2013-12-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00922298v1\",\"titles\":[\"A compact model of precessional spin-transfer switching for MTJ with a perpendicular polarizer\"],\"abstracts\":[\"International audience\",\"Magnetic Tunnel Junction (MTJ) devices are CMOS compatible with high stability, high reliability and non-volatility. A macro-model of MTJ with preces- sional switching is presented in this paper. This model is based on Spin-Transfer Torque (STT) writing approach. The current-induced magnetic switching and excitations was studied in structures comprising a perpendicularly magnetized polarizing layer (PL), an in-plane magne- tized free layer (FL), and an in-plane magnetized ana- lyzing layer (AL).\"],\"language\":\"eng\",\"subjects\":[\"Perpendicular Polarizer\",\"CMOS architectures\",\"Spin-Transfer Torque\",\"Magnetic Random Access Memory\",\"Magnetic Tunnel Junction\",\"[SPI.NANO] Engineering Sciences/Micro and nanotechnologies/Microelectronics\"],\"creators\":[\"Mejdoubi, Abdelilah\",\"Guillaume, Prenat\",\"Bernard, Dieny\"],\"publicationdate\":\"2013-12-25\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Logic ; SPINtronique et technologie des composants (SPINTEC - UMR 8191) ; CEA - CEA - CNRS - CEA - CEA - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1109/MIEL.2012.6222840\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00922298\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1109/MIEL.2012.6222840\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"European Research Council (ERC)\",\"url\":\"http://dx.doi.org/10.1109/MIEL.2012.6222840\",\"id\":\"185653\"},\"trust\":0.025121033}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00922298v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mejdoubi, Abdelilah","Guillaume, Prenat","Bernard, Dieny"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["185653"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::5ecaf0d3af3004219bc6b5907d19b6d9"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Perpendicular Polarizer","CMOS architectures","Spin-Transfer Torque","Magnetic Random Access Memory","Magnetic Tunnel Junction","[SPI.NANO] Engineering Sciences/Micro and nanotechnologies/Microelectronics"]},"trust":{"type":"FLOAT","value":0.025121033},"target_publication_title":{"type":"STRING","value":"A compact model of precessional spin-transfer switching for MTJ with a perpendicular polarizer"},"provenance_datasource_name":{"type":"STRING","value":"European Research Council (ERC)"},"target_dateofacceptance":{"type":"DATE","value":"2013-12-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00922298v1\",\"titles\":[\"A compact model of precessional spin-transfer switching for MTJ with a perpendicular polarizer\"],\"abstracts\":[\"International audience\",\"Magnetic Tunnel Junction (MTJ) devices are CMOS compatible with high stability, high reliability and non-volatility. A macro-model of MTJ with preces- sional switching is presented in this paper. This model is based on Spin-Transfer Torque (STT) writing approach. The current-induced magnetic switching and excitations was studied in structures comprising a perpendicularly magnetized polarizing layer (PL), an in-plane magne- tized free layer (FL), and an in-plane magnetized ana- lyzing layer (AL).\"],\"language\":\"eng\",\"subjects\":[\"Perpendicular Polarizer\",\"CMOS architectures\",\"Spin-Transfer Torque\",\"Magnetic Random Access Memory\",\"Magnetic Tunnel Junction\",\"[SPI.NANO] Engineering Sciences/Micro and nanotechnologies/Microelectronics\"],\"creators\":[\"Mejdoubi, Abdelilah\",\"Guillaume, Prenat\",\"Bernard, Dieny\"],\"publicationdate\":\"2013-12-25\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Logic ; SPINtronique et technologie des composants (SPINTEC - UMR 8191) ; CEA - CEA - CNRS - CEA - CEA - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1109/MIEL.2012.6222840\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00922298\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"10.1109/MIEL.2012.6222840\",\"type\":\"doi\"}]},\"provenance\":{\"repositoryName\":\"European Research Council (ERC)\",\"url\":\"http://dx.doi.org/10.1109/MIEL.2012.6222840\",\"id\":\"185653\"},\"trust\":0.025121033}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00922298v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Mejdoubi, Abdelilah","Guillaume, Prenat","Bernard, Dieny"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["185653"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::5ecaf0d3af3004219bc6b5907d19b6d9"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Perpendicular Polarizer","CMOS architectures","Spin-Transfer Torque","Magnetic Random Access Memory","Magnetic Tunnel Junction","[SPI.NANO] Engineering Sciences/Micro and nanotechnologies/Microelectronics"]},"trust":{"type":"FLOAT","value":0.025121033},"target_publication_title":{"type":"STRING","value":"A compact model of precessional spin-transfer switching for MTJ with a perpendicular polarizer"},"provenance_datasource_name":{"type":"STRING","value":"European Research Council (ERC)"},"target_dateofacceptance":{"type":"DATE","value":"2013-12-25"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00296237v1\",\"titles\":[\"Humidity observations in the Arctic troposphere over Ny-Ålesund, Svalbard based on 15 years of radiosonde data\"],\"abstracts\":[\"International audience\",\"Water vapour is an important component in the radiative balance of the polar atmosphere. We present a study covering fifteen years of data of tropospheric humidity profiles measured with standard radiosondes at Ny-Ålesund (78°55\\u0027 N 11°52\\u0027 E) during the period from 1991 to 2006. It is well-known that relative humidity measurements are less reliable at low temperatures when measured with standard radiosondes. The data was corrected for errors and used to determine key characteristic features of the vertical and temporal relative humidity evolution in the Arctic troposphere over Ny-Ålesund. We present frequencies of occurrence of ice-supersaturation layers in the troposphere, their vertical span, temperature and statistical distribution. Supersaturation with respect to ice shows a clear seasonal behaviour. In winter, (October?February) it occurred in 19% of all cases and less frequently in spring (March?May 12%), and summer (June?September, 9%). Finally, the results are compared with findings from the SAGE II satellite instrument on subvisible clouds.\"],\"language\":\"eng\",\"subjects\":[\"[SDU.OCEAN] Sciences of the Universe/Ocean, Atmosphere\"],\"creators\":[\"Treffeisen, R.\",\"Krejci, R.\",\"Ström, J.\",\"Engvall, A. C.\",\"Herber, A.\",\"Thomason, L.\"],\"publicationdate\":\"2007-05-24\",\"publisher\":\"European Geosciences Union (EGU)\",\"embargoenddate\":\"\",\"contributor\":[\"Department of Bentho-pelagic processes ; Alfred Wegener Institute for Polar and Marine Research\",\"Department of Meteorology (MISU) ; Department of Meteorology (MISU)\",\"ITM \\u0026ndash ; Department of Applied Environmental Science\",\"Alfred Wegner Institute for Polar and Marine Research ; Alfred Wegner Institute for Polar and Marine Research\",\"NASA Langley Research Center [Hampton] ; NASA\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00296237\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00296237\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00296237\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00296237\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00296237\"},\"trust\":0.82532996}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00296237v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Treffeisen, R.","Krejci, R.","Ström, J.","Engvall, A. C.","Herber, A.","Thomason, L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00296237"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDU.OCEAN] Sciences of the Universe/Ocean, Atmosphere"]},"trust":{"type":"FLOAT","value":0.82532996},"target_publication_title":{"type":"STRING","value":"Humidity observations in the Arctic troposphere over Ny-Ålesund, Svalbard based on 15 years of radiosonde data"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2007-05-24"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00296237\",\"titles\":[\"Humidity observations in the Arctic troposphere over Ny-Ålesund, Svalbard based on 15 years of radiosonde data\"],\"abstracts\":[\"Water vapour is an important component in the radiative balance of the polar atmosphere. We present a study covering fifteen years of data of tropospheric humidity profiles measured with standard radiosondes at Ny-Ålesund (78°55\\u0027 N 11°52\\u0027 E) during the period from 1991 to 2006. It is well-known that relative humidity measurements are less reliable at low temperatures when measured with standard radiosondes. The data was corrected for errors and used to determine key characteristic features of the vertical and temporal relative humidity evolution in the Arctic troposphere over Ny-Ålesund. We present frequencies of occurrence of ice-supersaturation layers in the troposphere, their vertical span, temperature and statistical distribution. Supersaturation with respect to ice shows a clear seasonal behaviour. In winter, (October?February) it occurred in 19% of all cases and less frequently in spring (March?May 12%), and summer (June?September, 9%). Finally, the results are compared with findings from the SAGE II satellite instrument on subvisible clouds.\"],\"language\":\"eng\",\"subjects\":[\"[SDU:OCEAN] Sciences of the Universe/Ocean, Atmosphere\",\"[SDU:OCEAN] Planète et Univers/Océan, Atmosphère\"],\"creators\":[\"Treffeisen, R.\",\"Krejci, R.\",\"Ström, J.\",\"Engvall, A. C.\",\"Herber, A.\",\"Thomason, L.\"],\"publicationdate\":\"2007-05-24\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00296237\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00296237\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00296237\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00296237\",\"id\":\"oai:HAL:hal-00296237v1\"},\"trust\":0.16329724}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00296237"},"target_publication_author_list":{"type":"LIST_STRING","value":["Treffeisen, R.","Krejci, R.","Ström, J.","Engvall, A. C.","Herber, A.","Thomason, L."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00296237v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDU:OCEAN] Sciences of the Universe/Ocean, Atmosphere","[SDU:OCEAN] Planète et Univers/Océan, Atmosphère"]},"trust":{"type":"FLOAT","value":0.16329724},"target_publication_title":{"type":"STRING","value":"Humidity observations in the Arctic troposphere over Ny-Ålesund, Svalbard based on 15 years of radiosonde data"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2007-05-24"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:depot.knaw.nl:2920\",\"titles\":[\"Een Duitse expansie\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Bennis, H. J.\"],\"publicationdate\":\"2005-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"KNAW Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://depot.knaw.nl/2920/\",\"license\":\"OPEN\",\"hostedby\":\"KNAW Repository\",\"instancetype\":\"Article\"},{\"url\":\"https://pure.knaw.nl/portal/en/publications/een-duitse-expansie(030b0fd3-e123-4b2c-b7eb-09da191ac986).html\",\"license\":\"OPEN\",\"hostedby\":\"KNAW Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://pure.knaw.nl/portal/en/publications/een-duitse-expansie(030b0fd3-e123-4b2c-b7eb-09da191ac986).html\",\"license\":\"OPEN\",\"hostedby\":\"KNAW Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"https://pure.knaw.nl/portal/en/publications/een-duitse-expansie(030b0fd3-e123-4b2c-b7eb-09da191ac986).html\",\"id\":\"knaw:oai:pure.knaw.nl:publications/030b0fd3-e123-4b2c-b7eb-09da191ac986\"},\"trust\":0.2637989}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"KNAW Repository"},"target_publication_id":{"type":"STRING","value":"oai:depot.knaw.nl:2920"},"target_publication_author_list":{"type":"LIST_STRING","value":["Bennis, H. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["knaw:oai:pure.knaw.nl:publications/030b0fd3-e123-4b2c-b7eb-09da191ac986"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.2637989},"target_publication_title":{"type":"STRING","value":"Een Duitse expansie"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2005-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::97275a23ca44226c9964043c8462be96"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.inria.fr:inria-00000573\",\"titles\":[\"Self-Growth of Basic Behaviors in an Action Selection Based Agent\"],\"abstracts\":[\"We investigate on designing agents facing multiple objectives simultaneously, that creates difficult situations, even if each objective is of low complexity. The present paper builds on an existing action selection process based on basic behaviors (resulting in a modular architecture) and proposes an algorithm for automatically selecting and learning the required basic behaviors through an incremental Reinforcement Learning approach. This leads to a very autonomous architecture, as the hand-coding is here reduced to its minimum.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_AI] Computer Science/Artificial Intelligence\",\"[INFO:INFO_AI] Informatique/Intelligence artificielle\",\"Markov Decision Problems\",\"Reinforcement Learning\",\"Multiple Motivations\"],\"creators\":[\"Buffet, Olivier\",\"Dutech, Alain\",\"Charpillet, François\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00000573\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.inria.fr/inria-00000573\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00000573\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.inria.fr/inria-00000573\",\"id\":\"oai:HAL:inria-00000573v1\"},\"trust\":0.7607642}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.inria.fr:inria-00000573"},"target_publication_author_list":{"type":"LIST_STRING","value":["Buffet, Olivier","Dutech, Alain","Charpillet, François"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:inria-00000573v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_AI] Computer Science/Artificial Intelligence","[INFO:INFO_AI] Informatique/Intelligence artificielle","Markov Decision Problems","Reinforcement Learning","Multiple Motivations"]},"trust":{"type":"FLOAT","value":0.7607642},"target_publication_title":{"type":"STRING","value":"Self-Growth of Basic Behaviors in an Action Selection Based Agent"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:inria-00000573v1\",\"titles\":[\"Self-Growth of Basic Behaviors in an Action Selection Based Agent\"],\"abstracts\":[\"http://mitpress.mit.edu/\",\"We investigate on designing agents facing multiple objectives simultaneously, that creates difficult situations, even if each objective is of low complexity. The present paper builds on an existing action selection process based on basic behaviors (resulting in a modular architecture) and proposes an algorithm for automatically selecting and learning the required basic behaviors through an incremental Reinforcement Learning approach. This leads to a very autonomous architecture, as the hand-coding is here reduced to its minimum.\"],\"language\":\"eng\",\"subjects\":[\"Markov Decision Problems\",\"Reinforcement Learning\",\"Multiple Motivations\",\"[INFO.INFO-AI] Computer Science/Artificial Intelligence\"],\"creators\":[\"Buffet, Olivier\",\"Dutech, Alain\",\"Charpillet, François\"],\"publicationdate\":\"2004-07-13\",\"publisher\":\"MIT Press\",\"embargoenddate\":\"\",\"contributor\":[\"MAIA (INRIA Lorraine - LORIA) ; INRIA - Université Henri Poincaré - Nancy I - Université Nancy II - Institut National Polytechnique de Lorraine (INPL) - CNRS\",\"Statistical Machine Learning Group (SML) ; Australian National University - National ICT Australia - NICTA\",\"Stefan Schaal, Auke Jan Ijspeert, Aude Billard, Sethu Vijayakumar, John Hallam and Jean-Arcady Meyer\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.inria.fr/inria-00000573\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.inria.fr/inria-00000573\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.inria.fr/inria-00000573\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.inria.fr/inria-00000573\",\"id\":\"oai:hal.inria.fr:inria-00000573\"},\"trust\":0.65461856}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:inria-00000573v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Buffet, Olivier","Dutech, Alain","Charpillet, François"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.inria.fr:inria-00000573"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Markov Decision Problems","Reinforcement Learning","Multiple Motivations","[INFO.INFO-AI] Computer Science/Artificial Intelligence"]},"trust":{"type":"FLOAT","value":0.65461856},"target_publication_title":{"type":"STRING","value":"Self-Growth of Basic Behaviors in an Action Selection Based Agent"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2004-07-13"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1365869\",\"titles\":[\"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden\"],\"abstracts\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. Overslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. For EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller. Nye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\",\"Rapport R-135\"],\"language\":\"dan\",\"subjects\":[],\"creators\":[\"Tommerup, Henrik M.\",\"Nørgaard, Jørgen\"],\"publicationdate\":\"2012-02-26\",\"publisher\":\"BYG-DTU\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/fedora/objects/orbit:76303/datastreams/file_2455155/content\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"},{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"id\":\"oai:oai.forksningsdatabasen.dk:419301\"},\"trust\":0.25459194}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1365869"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tommerup, Henrik M.","Nørgaard, Jørgen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:419301"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"trust":{"type":"FLOAT","value":0.25459194},"target_publication_title":{"type":"STRING","value":"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2012-02-26"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1365869\",\"titles\":[\"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden\"],\"abstracts\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. Overslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. For EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller. Nye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\",\"Rapport R-135\"],\"language\":\"dan\",\"subjects\":[],\"creators\":[\"Tommerup, Henrik M.\",\"Nørgaard, Jørgen\"],\"publicationdate\":\"2012-02-26\",\"publisher\":\"BYG-DTU\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/fedora/objects/orbit:76303/datastreams/file_2455155/content\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"},{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"id\":\"oai:oai.forksningsdatabasen.dk:137540\"},\"trust\":0.8093134}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1365869"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tommerup, Henrik M.","Nørgaard, Jørgen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:137540"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"trust":{"type":"FLOAT","value":0.8093134},"target_publication_title":{"type":"STRING","value":"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2012-02-26"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:1365869\",\"titles\":[\"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden\"],\"abstracts\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. Overslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. For EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller. Nye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\",\"Rapport R-135\"],\"language\":\"dan\",\"subjects\":[],\"creators\":[\"Tommerup, Henrik M.\",\"Nørgaard, Jørgen\"],\"publicationdate\":\"2012-02-26\",\"publisher\":\"BYG-DTU\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/fedora/objects/orbit:76303/datastreams/file_2455155/content\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"},{\"url\":\"http://orbit.dtu.dk/en/publications/elbehovet-til-cirkulationspumper-i-en-og-tofamiliehuse-nu-og-i-fremtiden(8d140b4f-e057-4012-b06a-66d054163096).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/elbehovet-til-cirkulationspumper-i-en-og-tofamiliehuse-nu-og-i-fremtiden(8d140b4f-e057-4012-b06a-66d054163096).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}]},\"provenance\":{\"repositoryName\":\"Online Research Database In Technology\",\"url\":\"http://orbit.dtu.dk/en/publications/elbehovet-til-cirkulationspumper-i-en-og-tofamiliehuse-nu-og-i-fremtiden(8d140b4f-e057-4012-b06a-66d054163096).html\",\"id\":\"oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096\"},\"trust\":0.30285478}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:1365869"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tommerup, Henrik M.","Nørgaard, Jørgen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"},"trust":{"type":"FLOAT","value":0.30285478},"target_publication_title":{"type":"STRING","value":"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden"},"provenance_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_dateofacceptance":{"type":"DATE","value":"2012-02-26"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:419301\",\"titles\":[\"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden\"],\"abstracts\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. \\n\\nOverslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. \\n\\nFor EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller.\\n\\nNye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\",\"Rapport R-135\"],\"language\":\"dan\",\"subjects\":[],\"creators\":[\"Tommerup, Henrik M.\",\"Nørgaard, Jørgen\"],\"publicationdate\":\"2006-08-06\",\"publisher\":\"BYG-DTU\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"},{\"url\":\"http://orbit.dtu.dk/fedora/objects/orbit:76303/datastreams/file_2455155/content\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/fedora/objects/orbit:76303/datastreams/file_2455155/content\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/fedora/objects/orbit:76303/datastreams/file_2455155/content\",\"id\":\"oai:oai.forksningsdatabasen.dk:1365869\"},\"trust\":0.5599089}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:419301"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tommerup, Henrik M.","Nørgaard, Jørgen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:1365869"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"trust":{"type":"FLOAT","value":0.5599089},"target_publication_title":{"type":"STRING","value":"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2006-08-06"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:419301\",\"titles\":[\"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden\"],\"abstracts\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. \\n\\nOverslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. \\n\\nFor EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller.\\n\\nNye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\",\"Rapport R-135\"],\"language\":\"dan\",\"subjects\":[],\"creators\":[\"Tommerup, Henrik M.\",\"Nørgaard, Jørgen\"],\"publicationdate\":\"2006-08-06\",\"publisher\":\"BYG-DTU\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"},{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"id\":\"oai:oai.forksningsdatabasen.dk:137540\"},\"trust\":0.97354597}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:419301"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tommerup, Henrik M.","Nørgaard, Jørgen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:137540"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"trust":{"type":"FLOAT","value":0.97354597},"target_publication_title":{"type":"STRING","value":"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2006-08-06"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:419301\",\"titles\":[\"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden\"],\"abstracts\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. \\n\\nOverslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. \\n\\nFor EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller.\\n\\nNye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\",\"Rapport R-135\"],\"language\":\"dan\",\"subjects\":[],\"creators\":[\"Tommerup, Henrik M.\",\"Nørgaard, Jørgen\"],\"publicationdate\":\"2006-08-06\",\"publisher\":\"BYG-DTU\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"},{\"url\":\"http://orbit.dtu.dk/en/publications/elbehovet-til-cirkulationspumper-i-en-og-tofamiliehuse-nu-og-i-fremtiden(8d140b4f-e057-4012-b06a-66d054163096).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/elbehovet-til-cirkulationspumper-i-en-og-tofamiliehuse-nu-og-i-fremtiden(8d140b4f-e057-4012-b06a-66d054163096).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}]},\"provenance\":{\"repositoryName\":\"Online Research Database In Technology\",\"url\":\"http://orbit.dtu.dk/en/publications/elbehovet-til-cirkulationspumper-i-en-og-tofamiliehuse-nu-og-i-fremtiden(8d140b4f-e057-4012-b06a-66d054163096).html\",\"id\":\"oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096\"},\"trust\":0.56561625}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:419301"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tommerup, Henrik M.","Nørgaard, Jørgen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"},"trust":{"type":"FLOAT","value":0.56561625},"target_publication_title":{"type":"STRING","value":"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden"},"provenance_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_dateofacceptance":{"type":"DATE","value":"2006-08-06"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:137540\",\"titles\":[\"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden\"],\"abstracts\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. \\n\\nOverslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. \\n\\nFor EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller.\\n\\nNye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\",\"Rapport R-135\"],\"language\":\"dan\",\"subjects\":[],\"creators\":[\"Tommerup, Henrik M.\",\"Nørgaard, Jørgen\"],\"publicationdate\":\"2006-08-06\",\"publisher\":\"BYG-DTU\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"},{\"url\":\"http://orbit.dtu.dk/fedora/objects/orbit:76303/datastreams/file_2455155/content\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/fedora/objects/orbit:76303/datastreams/file_2455155/content\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/fedora/objects/orbit:76303/datastreams/file_2455155/content\",\"id\":\"oai:oai.forksningsdatabasen.dk:1365869\"},\"trust\":0.7651205}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:137540"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tommerup, Henrik M.","Nørgaard, Jørgen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:1365869"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"trust":{"type":"FLOAT","value":0.7651205},"target_publication_title":{"type":"STRING","value":"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2006-08-06"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:137540\",\"titles\":[\"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden\"],\"abstracts\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. \\n\\nOverslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. \\n\\nFor EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller.\\n\\nNye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\",\"Rapport R-135\"],\"language\":\"dan\",\"subjects\":[],\"creators\":[\"Tommerup, Henrik M.\",\"Nørgaard, Jørgen\"],\"publicationdate\":\"2006-08-06\",\"publisher\":\"BYG-DTU\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"},{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"id\":\"oai:oai.forksningsdatabasen.dk:419301\"},\"trust\":0.87362576}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:137540"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tommerup, Henrik M.","Nørgaard, Jørgen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:419301"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"trust":{"type":"FLOAT","value":0.87362576},"target_publication_title":{"type":"STRING","value":"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2006-08-06"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:137540\",\"titles\":[\"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden\"],\"abstracts\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. \\n\\nOverslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. \\n\\nFor EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller.\\n\\nNye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\",\"Rapport R-135\"],\"language\":\"dan\",\"subjects\":[],\"creators\":[\"Tommerup, Henrik M.\",\"Nørgaard, Jørgen\"],\"publicationdate\":\"2006-08-06\",\"publisher\":\"BYG-DTU\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"},{\"url\":\"http://orbit.dtu.dk/en/publications/elbehovet-til-cirkulationspumper-i-en-og-tofamiliehuse-nu-og-i-fremtiden(8d140b4f-e057-4012-b06a-66d054163096).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/elbehovet-til-cirkulationspumper-i-en-og-tofamiliehuse-nu-og-i-fremtiden(8d140b4f-e057-4012-b06a-66d054163096).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}]},\"provenance\":{\"repositoryName\":\"Online Research Database In Technology\",\"url\":\"http://orbit.dtu.dk/en/publications/elbehovet-til-cirkulationspumper-i-en-og-tofamiliehuse-nu-og-i-fremtiden(8d140b4f-e057-4012-b06a-66d054163096).html\",\"id\":\"oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096\"},\"trust\":0.1370824}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:137540"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tommerup, Henrik M.","Nørgaard, Jørgen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"},"trust":{"type":"FLOAT","value":0.1370824},"target_publication_title":{"type":"STRING","value":"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden"},"provenance_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_dateofacceptance":{"type":"DATE","value":"2006-08-06"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096\",\"titles\":[\"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. Overslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. For EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller. Nye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\"],\"creators\":[\"Tommerup, Henrik M.\",\"Nørgaard, Jørgen\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"DTU Byg, Danmarks Tekniske Universitet\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Online Research Database In Technology\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/elbehovet-til-cirkulationspumper-i-en-og-tofamiliehuse-nu-og-i-fremtiden(8d140b4f-e057-4012-b06a-66d054163096).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"},{\"url\":\"http://orbit.dtu.dk/fedora/objects/orbit:76303/datastreams/file_2455155/content\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/fedora/objects/orbit:76303/datastreams/file_2455155/content\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/fedora/objects/orbit:76303/datastreams/file_2455155/content\",\"id\":\"oai:oai.forksningsdatabasen.dk:1365869\"},\"trust\":0.19632095}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_publication_id":{"type":"STRING","value":"oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tommerup, Henrik M.","Nørgaard, Jørgen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:1365869"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. Overslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. For EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller. Nye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift."]},"trust":{"type":"FLOAT","value":0.19632095},"target_publication_title":{"type":"STRING","value":"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096\",\"titles\":[\"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden\"],\"abstracts\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. Overslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. For EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller. Nye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\",\"Rapport R-135\"],\"language\":\"und\",\"subjects\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. Overslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. For EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller. Nye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\"],\"creators\":[\"Tommerup, Henrik M.\",\"Nørgaard, Jørgen\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"DTU Byg, Danmarks Tekniske Universitet\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Online Research Database In Technology\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/elbehovet-til-cirkulationspumper-i-en-og-tofamiliehuse-nu-og-i-fremtiden(8d140b4f-e057-4012-b06a-66d054163096).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. Overslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. For EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller. Nye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\",\"Rapport R-135\"]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/fedora/objects/orbit:76303/datastreams/file_2455155/content\",\"id\":\"oai:oai.forksningsdatabasen.dk:1365869\"},\"trust\":0.61304945}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_publication_id":{"type":"STRING","value":"oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tommerup, Henrik M.","Nørgaard, Jørgen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:1365869"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. Overslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. For EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller. Nye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift."]},"trust":{"type":"FLOAT","value":0.61304945},"target_publication_title":{"type":"STRING","value":"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096\",\"titles\":[\"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. Overslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. For EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller. Nye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\"],\"creators\":[\"Tommerup, Henrik M.\",\"Nørgaard, Jørgen\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"DTU Byg, Danmarks Tekniske Universitet\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Online Research Database In Technology\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/elbehovet-til-cirkulationspumper-i-en-og-tofamiliehuse-nu-og-i-fremtiden(8d140b4f-e057-4012-b06a-66d054163096).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"},{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"id\":\"oai:oai.forksningsdatabasen.dk:419301\"},\"trust\":0.30833858}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_publication_id":{"type":"STRING","value":"oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tommerup, Henrik M.","Nørgaard, Jørgen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:419301"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. Overslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. For EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller. Nye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift."]},"trust":{"type":"FLOAT","value":0.30833858},"target_publication_title":{"type":"STRING","value":"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096\",\"titles\":[\"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden\"],\"abstracts\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. \\n\\nOverslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. \\n\\nFor EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller.\\n\\nNye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\",\"Rapport R-135\"],\"language\":\"und\",\"subjects\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. Overslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. For EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller. Nye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\"],\"creators\":[\"Tommerup, Henrik M.\",\"Nørgaard, Jørgen\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"DTU Byg, Danmarks Tekniske Universitet\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Online Research Database In Technology\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/elbehovet-til-cirkulationspumper-i-en-og-tofamiliehuse-nu-og-i-fremtiden(8d140b4f-e057-4012-b06a-66d054163096).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. \\n\\nOverslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. \\n\\nFor EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller.\\n\\nNye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\",\"Rapport R-135\"]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"id\":\"oai:oai.forksningsdatabasen.dk:419301\"},\"trust\":0.31945437}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_publication_id":{"type":"STRING","value":"oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tommerup, Henrik M.","Nørgaard, Jørgen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:419301"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. Overslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. For EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller. Nye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift."]},"trust":{"type":"FLOAT","value":0.31945437},"target_publication_title":{"type":"STRING","value":"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096\",\"titles\":[\"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. Overslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. For EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller. Nye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\"],\"creators\":[\"Tommerup, Henrik M.\",\"Nørgaard, Jørgen\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"DTU Byg, Danmarks Tekniske Universitet\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Online Research Database In Technology\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/elbehovet-til-cirkulationspumper-i-en-og-tofamiliehuse-nu-og-i-fremtiden(8d140b4f-e057-4012-b06a-66d054163096).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"},{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"id\":\"oai:oai.forksningsdatabasen.dk:137540\"},\"trust\":0.55960655}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_publication_id":{"type":"STRING","value":"oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tommerup, Henrik M.","Nørgaard, Jørgen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:137540"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. Overslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. For EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller. Nye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift."]},"trust":{"type":"FLOAT","value":0.55960655},"target_publication_title":{"type":"STRING","value":"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096\",\"titles\":[\"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden\"],\"abstracts\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. \\n\\nOverslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. \\n\\nFor EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller.\\n\\nNye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\",\"Rapport R-135\"],\"language\":\"und\",\"subjects\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. Overslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. For EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller. Nye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\"],\"creators\":[\"Tommerup, Henrik M.\",\"Nørgaard, Jørgen\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"DTU Byg, Danmarks Tekniske Universitet\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Online Research Database In Technology\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/elbehovet-til-cirkulationspumper-i-en-og-tofamiliehuse-nu-og-i-fremtiden(8d140b4f-e057-4012-b06a-66d054163096).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. \\n\\nOverslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. \\n\\nFor EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller.\\n\\nNye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift.\",\"Rapport R-135\"]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d190585\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"id\":\"oai:oai.forksningsdatabasen.dk:137540\"},\"trust\":0.66588527}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_publication_id":{"type":"STRING","value":"oai:pure.atira.dk:publications/8d140b4f-e057-4012-b06a-66d054163096"},"target_publication_author_list":{"type":"LIST_STRING","value":["Tommerup, Henrik M.","Nørgaard, Jørgen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:137540"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Beregninger af behovet for pumpeeffekt til cirkulation af centralvarmevand i én- og tofamiliehuse viser at dette for en stor del af de danske småhuse er under 1 W. Med en god effektivitet af pumpen svarer det til en el-effekt på under 10 W. Sammenlignet med elforbruget til de hidtil anvendte pumper, er der potentielt mulighed for betydelige besparelser. Disse beregninger er blevet bekræftet ved praktiske afprøvninger af diverse sparepumper, idet pumper med el-effekt på omkring 10 W har været tilstrækkelige til at klare opvarmningen under prøveperiodens klima. Overslagsmæssige beregninger af det fremtidige behov for el til cirkulationspumpning i Danmark viser at en total udskiftning (f.eks. over 13 år) af de nuværende cirkulationspumper i én- og tofamiliehuse med de bedste, der nyligt er kommet på markedet, vil betyde en reduktion i landets el-forbrug på ca. 1 % eller 400 GWh/år og en reduktion i Danmarks CO2-udslip på 400.000 tons pr. år, eller knap 1 % af det samlede udslip. For EU vil udskiftningen kunne resultere i et 50 TWh lavere elforbrug til dette formål, hvilket er mere end Danmarks samlede elforbrug. Målt i antal kraftværker er der for EU tale om at spare opførelsen og driften af 17 store kraftværker og et årligt udslip på 50 millioner tons CO2 om året, såfremt man vælger at spare kulfyrede kraftværker. Tænker man på en fremtid med elforsyning fra vedvarende energi, sparer indførelsen af de nye pumper i EU opførelsen af f.eks. 20.000 store vindmøller. Nye energibestemmelser er indført 1. januar 2006, hvor elforbruget til pumper indgår i den nye bruttoenergiramme for bygninger. I den forbindelse kan det anbefales at benytte nye små sparepumper, og det bør kraftigt overvejes at indføre direkte krav til elforbruget, på samme måde som der allerede er krav til elforbruget i ventilationsanlæg. Det anbefales ligeledes at der i forbindelse med ny ordning om eftersyn og forbedring af ældre kedel- og varmeanlæg sættes fokus på udskiftning af gamle pumper, der typisk vil kunne foretages for en beskeden installationsudgift."]},"trust":{"type":"FLOAT","value":0.66588527},"target_publication_title":{"type":"STRING","value":"Elbehovet til cirkulationspumper i én- og tofamiliehuse, nu og i fremtiden"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00603912v1\",\"titles\":[\"Regard comparé sur la prévention des TMS dans les pays francophones (France, Belgique, Suisse, Québec, Algérie)\"],\"abstracts\":[\"Atelier 6 : Réglementation et directives sont-elles des leviers de prévention ?\",\"Les TMS font l\\u0027objet d\\u0027importantes campagnes d\\u0027information et de sensibilisation et sont devenus un risque professionnel bien connu. Or, concernant un phénomène aussi important que les TMS, le faible nombre de textes juridiques s\\u0027y rapportant directement est frappant, et ce, dans tous les pays étudiés en l\\u0027espèce. S\\u0027il existe des définitions des TMS, comme celle de l\\u0027Agence de Bilbao qui décrit les TMS notamment comme \\\" une large gamme de maladies inflammatoires et dégénératives de l\\u0027appareil locomoteur \\\", aucun des différents systèmes juridiques francophones étudiés ne comporte de définition légale de ces troubles. Pour autant, est-il bien nécessaire de les définir juridiquement ? Cette question sous-tend celle relative à l\\u0027application de l\\u0027arsenal juridique existant aux TMS, à savoir s\\u0027il est suffisant pour les appréhender d\\u0027une manière ou d\\u0027une autre. Le volet prévention (en droit du travail) et le volet réparation (en droit de la sécurité sociale) doivent être considérés. On constatera que le droit belge et le droit français sont assez proches concernant l\\u0027obligation de prévention des TMS. Si le système français oblige l\\u0027employeur à prendre les mesures nécessaires pour assurer la sécurité et protéger la santé physique et mentale des travailleurs, la loi belge du 4 août 1996 relative au bien-être des travailleurs lors de l\\u0027exécution de leur travail impose à l\\u0027employeur de promouvoir le bien-être de ses travailleurs lors de l\\u0027exécution de leurs tâches. Le droit suisse semble en revanche un peu plus restrictif. La loi fédérale sur l\\u0027assurance-accidents du 20 mars 1981 impose à l\\u0027employeur, pour protéger la santé des travailleurs, de prendre toutes les mesures dont l\\u0027expérience a démontré la nécessité, que l\\u0027état de la technique permet d\\u0027appliquer et qui sont adaptées aux conditions d\\u0027exploitation de l\\u0027entreprise. Finalement, s\\u0027il n\\u0027existe pas de textes généraux relatifs aux TMS, si ce n\\u0027est une certaine obligation générale de prévention des risques professionnels à la Directive 89/391/CEE du Conseil, du 12 juin 1989, concernant la mise œuvre de mesures visant à promouvoir l\\u0027amélioration de la sécurité et de la santé des travailleurs au travail (JO L 183 du 29.6.1989, p. 1). Directive 89/391/CEE du Conseil, du 12 juin 1989, concernant la mise œuvre de mesures visant à promouvoir l\\u0027amélioration de la sécurité et de la santé des travailleurs au travail (JO L 183 du 29.6.1989, p. 1).charge de l\\u0027employeur, en revanche, un certain nombre de textes réglementaires spécifiques prenant en compte certains facteurs de TMS existent (ports de charges, équipement de travail approprié, aménagement des postes de travail, etc.). En France, c\\u0027est du côté du droit de la Sécurité sociale qu\\u0027il faut chercher pour trouver un texte spécifique aux TMS. En effet, sont inscrits au sein des tableaux des maladies professionnelles reconnues et indemnisées au titre de différentes affections (périarticulaires provoquées par certains gestes et postures de travail par exemple). En revanche, en Suisse, l\\u0027un des enjeux est de déterminer l\\u0027origine professionnelle ouvrant droit à indemnisation concernant une notion multifactorielle. De l\\u0027autre côté de l\\u0027Atlantique, le Québec est davantage caractérisé par une culture juridique anglo-saxonne. Néanmoins, on observe qu\\u0027il existe depuis longtemps des règlements qui touchent à l\\u0027ergonomie. Ils apparaissent depuis 2001 au sein d\\u0027une rubrique spéciale \\\" Mesures ergonomiques particulières \\\" qui regroupe des dispositions relatives à la manutention, au travail dans les piles, au niveau de travail, à la position, à la fourniture de chaises ou de bancs et à l\\u0027obligation de permettre une période de repas. Cette rubrique s\\u0027articule avec le devoir général de prévention à la charge de l\\u0027employeur, mais aussi au droit de l\\u0027indemnisation des accidents du travail et des maladies professionnelles. Enfin, l\\u0027Algérie, à travers la loi 26 janvier 1988 relative à l\\u0027hygiène, la sécurité et la médecine du travail, offre un régime juridique relatif à la santé-sécurité susceptible d\\u0027accueillir les TMS. Ainsi, par exemple : \\\" Les installations, les machines, mécanismes, appareils, outils et engins, matériels et tous moyens de travail doivent être appropriés aux travaux à effectuer (...) \\\", la question portera davantage sur les difficultés d\\u0027application dans ce domaine, notamment au regard de l\\u0027importance du secteur informel.\"],\"language\":\"fra/fre\",\"subjects\":[\"comparaison\",\"TMS\",\"réglementation du travail\",\"[SHS.SCIPO] Humanities and Social Sciences/Political science\",\"[SHS.SOCIO] Humanities and Social Sciences/Sociology\"],\"creators\":[\"Lerouge, Loïc\"],\"publicationdate\":\"2011-05-26\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Centre de Droit Comparé du Travail et de la Sécurité Sociale (COMPTRASEC) ; Université Montesquieu - Bordeaux IV - CNRS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00603912\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00603912\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00603912\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00603912\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00603912\"},\"trust\":0.601547}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00603912v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lerouge, Loïc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00603912"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["comparaison","TMS","réglementation du travail","[SHS.SCIPO] Humanities and Social Sciences/Political science","[SHS.SOCIO] Humanities and Social Sciences/Sociology"]},"trust":{"type":"FLOAT","value":0.601547},"target_publication_title":{"type":"STRING","value":"Regard comparé sur la prévention des TMS dans les pays francophones (France, Belgique, Suisse, Québec, Algérie)"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-05-26"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00603912\",\"titles\":[\"Regard comparé sur la prévention des TMS dans les pays francophones (France, Belgique, Suisse, Québec, Algérie)\"],\"abstracts\":[\"Les TMS font l\\u0027objet d\\u0027importantes campagnes d\\u0027information et de sensibilisation et sont devenus un risque professionnel bien connu. Or, concernant un phénomène aussi important que les TMS, le faible nombre de textes juridiques s\\u0027y rapportant directement est frappant, et ce, dans tous les pays étudiés en l\\u0027espèce. S\\u0027il existe des définitions des TMS, comme celle de l\\u0027Agence de Bilbao qui décrit les TMS notamment comme \\\" une large gamme de maladies inflammatoires et dégénératives de l\\u0027appareil locomoteur \\\", aucun des différents systèmes juridiques francophones étudiés ne comporte de définition légale de ces troubles. Pour autant, est-il bien nécessaire de les définir juridiquement ? Cette question sous-tend celle relative à l\\u0027application de l\\u0027arsenal juridique existant aux TMS, à savoir s\\u0027il est suffisant pour les appréhender d\\u0027une manière ou d\\u0027une autre. Le volet prévention (en droit du travail) et le volet réparation (en droit de la sécurité sociale) doivent être considérés. On constatera que le droit belge et le droit français sont assez proches concernant l\\u0027obligation de prévention des TMS. Si le système français oblige l\\u0027employeur à prendre les mesures nécessaires pour assurer la sécurité et protéger la santé physique et mentale des travailleurs, la loi belge du 4 août 1996 relative au bien-être des travailleurs lors de l\\u0027exécution de leur travail impose à l\\u0027employeur de promouvoir le bien-être de ses travailleurs lors de l\\u0027exécution de leurs tâches. Le droit suisse semble en revanche un peu plus restrictif. La loi fédérale sur l\\u0027assurance-accidents du 20 mars 1981 impose à l\\u0027employeur, pour protéger la santé des travailleurs, de prendre toutes les mesures dont l\\u0027expérience a démontré la nécessité, que l\\u0027état de la technique permet d\\u0027appliquer et qui sont adaptées aux conditions d\\u0027exploitation de l\\u0027entreprise. Finalement, s\\u0027il n\\u0027existe pas de textes généraux relatifs aux TMS, si ce n\\u0027est une certaine obligation générale de prévention des risques professionnels à la Directive 89/391/CEE du Conseil, du 12 juin 1989, concernant la mise œuvre de mesures visant à promouvoir l\\u0027amélioration de la sécurité et de la santé des travailleurs au travail (JO L 183 du 29.6.1989, p. 1). Directive 89/391/CEE du Conseil, du 12 juin 1989, concernant la mise œuvre de mesures visant à promouvoir l\\u0027amélioration de la sécurité et de la santé des travailleurs au travail (JO L 183 du 29.6.1989, p. 1).charge de l\\u0027employeur, en revanche, un certain nombre de textes réglementaires spécifiques prenant en compte certains facteurs de TMS existent (ports de charges, équipement de travail approprié, aménagement des postes de travail, etc.). En France, c\\u0027est du côté du droit de la Sécurité sociale qu\\u0027il faut chercher pour trouver un texte spécifique aux TMS. En effet, sont inscrits au sein des tableaux des maladies professionnelles reconnues et indemnisées au titre de différentes affections (périarticulaires provoquées par certains gestes et postures de travail par exemple). En revanche, en Suisse, l\\u0027un des enjeux est de déterminer l\\u0027origine professionnelle ouvrant droit à indemnisation concernant une notion multifactorielle. De l\\u0027autre côté de l\\u0027Atlantique, le Québec est davantage caractérisé par une culture juridique anglo-saxonne. Néanmoins, on observe qu\\u0027il existe depuis longtemps des règlements qui touchent à l\\u0027ergonomie. Ils apparaissent depuis 2001 au sein d\\u0027une rubrique spéciale \\\" Mesures ergonomiques particulières \\\" qui regroupe des dispositions relatives à la manutention, au travail dans les piles, au niveau de travail, à la position, à la fourniture de chaises ou de bancs et à l\\u0027obligation de permettre une période de repas. Cette rubrique s\\u0027articule avec le devoir général de prévention à la charge de l\\u0027employeur, mais aussi au droit de l\\u0027indemnisation des accidents du travail et des maladies professionnelles. Enfin, l\\u0027Algérie, à travers la loi 26 janvier 1988 relative à l\\u0027hygiène, la sécurité et la médecine du travail, offre un régime juridique relatif à la santé-sécurité susceptible d\\u0027accueillir les TMS. Ainsi, par exemple : \\\" Les installations, les machines, mécanismes, appareils, outils et engins, matériels et tous moyens de travail doivent être appropriés aux travaux à effectuer (...) \\\", la question portera davantage sur les difficultés d\\u0027application dans ce domaine, notamment au regard de l\\u0027importance du secteur informel.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:SCIPO] Humanities and Social Sciences/Political science\",\"[SHS:SCIPO] Sciences de l\\u0027Homme et Société/Science politique\",\"[SHS:SOCIO] Humanities and Social Sciences/Sociology\",\"[SHS:SOCIO] Sciences de l\\u0027Homme et Société/Sociologie\",\"réglementation du travail\",\"TMS\",\"comparaison\"],\"creators\":[\"Lerouge, Loïc\"],\"publicationdate\":\"2011-05-26\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00603912\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00603912\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00603912\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00603912\",\"id\":\"oai:HAL:halshs-00603912v1\"},\"trust\":0.57567614}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00603912"},"target_publication_author_list":{"type":"LIST_STRING","value":["Lerouge, Loïc"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00603912v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:SCIPO] Humanities and Social Sciences/Political science","[SHS:SCIPO] Sciences de l\u0027Homme et Société/Science politique","[SHS:SOCIO] Humanities and Social Sciences/Sociology","[SHS:SOCIO] Sciences de l\u0027Homme et Société/Sociologie","réglementation du travail","TMS","comparaison"]},"trust":{"type":"FLOAT","value":0.57567614},"target_publication_title":{"type":"STRING","value":"Regard comparé sur la prévention des TMS dans les pays francophones (France, Belgique, Suisse, Québec, Algérie)"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-05-26"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2845328\",\"titles\":[\"Concurrent and Simultaneous Polydrug Use: Latent Class Analysis of an Australian Nationally Representative Sample of Young Adults\"],\"abstracts\":[\"Background: Alcohol use and illicit drug use peak during young adulthood (around 18–29 years of age), but comparatively little is known about polydrug use in nationally representative samples of young adults. Drawing on a nationally representative cross-sectional survey (Australian National Drug Strategy Household Survey), this study examines polydrug use patterns and associated psychosocial risk factors among young adults (n \\u003d 3,333; age 19–29). Method: The use of a broad range of licit and illicit drugs were examined, including alcohol, tobacco, cannabis, cocaine, hallucinogens, ecstasy, ketamine, GHB, inhalants, steroids, barbiturates, meth/amphetamines, heroin, methadone/buprenorphine, other opiates, painkillers, and tranquilizers/sleeping pills. Latent class analysis was employed to identify patterns of polydrug use. Results: Polydrug use in this sample was best described using a 5-class solution. The majority of young adults predominantly used alcohol only (52.3%), alcohol and tobacco (34.18%). The other classes were cannabis, ecstasy, and licit drug use (9.4%), cannabis, amphetamine derivative, and licit drug use (2.8%), and sedative and alcohol use (1.3%). Young adult males with low education and/or high income were most at risk of polydrug use. Conclusion: Almost half of young adults reported polydrug use, highlighting the importance of post-high school screening for key risk factors and polydrug use profiles, and the delivery of early intervention strategies targeting illicit drugs.\"],\"language\":\"eng\",\"subjects\":[\"Public Health\",\"Original Research\",\"young adults\",\"polydrug use\",\"latent class analysis\",\"cluster\",\"risk and protective factors\",\"simultaneous\"],\"creators\":[\"Quek, Lake-Hui\",\"Chan, Gary C. K.\",\"White, Angela\",\"Connor, Jason P.\",\"Baker, Peter J.\",\"Saunders, John B.\",\"Kelly, Adrian B.\"],\"publicationdate\":\"2013-11-01\",\"publisher\":\"Frontiers Media S.A.\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Frontiers in Public Health\",\"issn\":\"\",\"eissn\":\"2296-2565\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.3389/fpubh.2013.00061\",\"type\":\"doi\"},{\"value\":\"PMC3860005\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3860005\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.3389/fpubh.2013.00061\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Public Health\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.3389/fpubh.2013.00061\",\"license\":\"OPEN\",\"hostedby\":\"Frontiers in Public Health\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Frontiers\",\"url\":\"http://dx.doi.org/10.3389/fpubh.2013.00061\",\"id\":\"10.3389/fpubh.2013.00061\"},\"trust\":0.5384465}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2845328"},"target_publication_author_list":{"type":"LIST_STRING","value":["Quek, Lake-Hui","Chan, Gary C. K.","White, Angela","Connor, Jason P.","Baker, Peter J.","Saunders, John B.","Kelly, Adrian B."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["10.3389/fpubh.2013.00061"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::3db634fc5446f389d0b826ea400a5da6"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Public Health","Original Research","young adults","polydrug use","latent class analysis","cluster","risk and protective factors","simultaneous"]},"trust":{"type":"FLOAT","value":0.5384465},"target_publication_title":{"type":"STRING","value":"Concurrent and Simultaneous Polydrug Use: Latent Class Analysis of an Australian Nationally Representative Sample of Young Adults"},"provenance_datasource_name":{"type":"STRING","value":"Frontiers"},"target_dateofacceptance":{"type":"DATE","value":"2013-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.repository.utl.pt:10400.5/7373\",\"titles\":[\"Relatório final de estágio pedagógico realizado na Escola Secundária Fernando Namora no ano letivo de 2013-2014\"],\"abstracts\":[\"Mestrado em Ensino da Educação Física nos Ensinos Básico e Secundário\",\"O presente relatório visa a elaboração de um relato reflexivo de toda a minha atividade e percurso enquanto professor estagiário no ano letivo 2013/2014, na Escola Secundária Fernando Namora, onde lecionei uma turma do 9º ano de escolaridade.\\nPretendo por isso dar a conhecer e analisar todo o meu trabalho nas funções de\\norganização e de gestão do ensino e da aprendizagem, de investigação e inovação\\npedagógica, de participação na escola e de relações com a comunidade.\\nPara que todo o meu trabalho ao longo deste ano letivo seja percetível, este relatório inicia-se com uma caracterização do contexto de atuação. Posteriormente, é realizada uma dissertação do meu desempenho enquanto professor, tendo como linha de orientação todas as competências desenvolvidas tanto de cariz mais prático como de cariz mais teórico.\\nDeste modo, referirei todas as atividades desenvolvidas, principais dificuldades\\nencontradas e experiências vividas, onde serão alvo de uma forte descrição no sentido\\nde realizar uma completa reflexão sobre o desenrolar do processo de estágio. Por fim,\\npretendo não só projetar o meu futuro enquanto professor, como destacar as principais competências adquiridas ao longo do ano letivo.\"],\"language\":\"por\",\"subjects\":[\"Educação física\",\"Escola\",\"Estágio pedagógico\",\"Formação\",\"Professor\"],\"creators\":[\"Vidal, André Neto Gomes Da Fonseca\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Santinha, Fernanda Maria Castanheira\",\"Santos, Hamilton Marcus Alcoforado dos\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UTL Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10400.5/7373\",\"license\":\"OPEN\",\"hostedby\":\"UTL Repository\",\"instancetype\":\"Report\"},{\"url\":\"http://hdl.handle.net/10400.5/7351\",\"license\":\"OPEN\",\"hostedby\":\"UTL Repository\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10400.5/7351\",\"license\":\"OPEN\",\"hostedby\":\"UTL Repository\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"UTL Repository\",\"url\":\"http://hdl.handle.net/10400.5/7351\",\"id\":\"oai:www.repository.utl.pt:10400.5/7351\"},\"trust\":0.0984295}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UTL Repository"},"target_publication_id":{"type":"STRING","value":"oai:www.repository.utl.pt:10400.5/7373"},"target_publication_author_list":{"type":"LIST_STRING","value":["Vidal, André Neto Gomes Da Fonseca"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.repository.utl.pt:10400.5/7351"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::0c8ce55163055c4da50a81e0a273468c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Educação física","Escola","Estágio pedagógico","Formação","Professor"]},"trust":{"type":"FLOAT","value":0.0984295},"target_publication_title":{"type":"STRING","value":"Relatório final de estágio pedagógico realizado na Escola Secundária Fernando Namora no ano letivo de 2013-2014"},"provenance_datasource_name":{"type":"STRING","value":"UTL Repository"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0c8ce55163055c4da50a81e0a273468c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.repository.utl.pt:10400.5/7351\",\"titles\":[\"Relatório final de estágio pedagógico realizado na Escola Secundária Fernando Namora no ano letivo de 2013-2014.\"],\"abstracts\":[\"Mestrado em Ensino da Educação Física nos Ensinos Básico e Secundário\",\"O presente relatório tem como objetivo refletir criticamente sobre o processo de ensino-aprendizagem ocorrido durante o Estágio Pedagógico em Educação Física. Este estágio desenvolveu-se na Escola Secundária Fernando Namora, escola integrante do Agrupamento de Escolas Amadora 3, localizado na Brandoa, no ano letivo de 2013/2014.\\nO estágio insere-se no 2º ano do Mestrado em Ensino da Educação Física nos Ensinos Básico e Secundário da Faculdade de Motricidade Humana e assumiu-se como sendo a primeira experiência na carreira de docência. Este processo de formação foi ainda orientado através do Guia de Estágio Pedagógico 2013/2014, no qual são descritos os objetivos específicos e gerais de cada uma das quatro áreas de intervenção. Assim, ao longo deste relatório será realizada uma reflexão sobre as principais dificuldades em cada uma destas áreas, nomeadamente relativamente à Organização e Gestão do Ensino e da Aprendizagem, da Inovação e Investigação Pedagógica, da Participação na Escola e da Relação com a Comunidade, e que levaram a uma melhoria da minha formação individual.\\nEste documento possibilita ainda através da análise realizada perceber quias os pontos mais fortes e mais fracos de toda a minha intervenção, assim como os aspetos que ainda faltam alcançar.\"],\"language\":\"por\",\"subjects\":[\"Desenvolvimento pessoal\",\"Dificuldades\",\"Ensino-aprendizagem\",\"Estágio pedagógico\",\"Estratégias\",\"Formação\",\"Intervenção\",\"Professor\",\"Reflexão\"],\"creators\":[\"Abdulremane, Rossana Olívia Ferreira\"],\"publicationdate\":\"2014-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[\"Santinha, Fernanda Maria Castanheira\",\"Santos, Hamilton Marcus Alcoforado dos\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"UTL Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10400.5/7351\",\"license\":\"OPEN\",\"hostedby\":\"UTL Repository\",\"instancetype\":\"Report\"},{\"url\":\"http://hdl.handle.net/10400.5/7373\",\"license\":\"OPEN\",\"hostedby\":\"UTL Repository\",\"instancetype\":\"Report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10400.5/7373\",\"license\":\"OPEN\",\"hostedby\":\"UTL Repository\",\"instancetype\":\"Report\"}]},\"provenance\":{\"repositoryName\":\"UTL Repository\",\"url\":\"http://hdl.handle.net/10400.5/7373\",\"id\":\"oai:www.repository.utl.pt:10400.5/7373\"},\"trust\":0.22416198}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"UTL Repository"},"target_publication_id":{"type":"STRING","value":"oai:www.repository.utl.pt:10400.5/7351"},"target_publication_author_list":{"type":"LIST_STRING","value":["Abdulremane, Rossana Olívia Ferreira"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.repository.utl.pt:10400.5/7373"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::0c8ce55163055c4da50a81e0a273468c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Desenvolvimento pessoal","Dificuldades","Ensino-aprendizagem","Estágio pedagógico","Estratégias","Formação","Intervenção","Professor","Reflexão"]},"trust":{"type":"FLOAT","value":0.22416198},"target_publication_title":{"type":"STRING","value":"Relatório final de estágio pedagógico realizado na Escola Secundária Fernando Namora no ano letivo de 2013-2014."},"provenance_datasource_name":{"type":"STRING","value":"UTL Repository"},"target_dateofacceptance":{"type":"DATE","value":"2014-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::0c8ce55163055c4da50a81e0a273468c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:bre:polbrf:310\",\"titles\":[\"A solution for Europe\\u0027s banking problem\"],\"abstracts\":[\"Nicolas Véron and Adam Posen believe Europe should build new long term European joint-action to face the likely high rising number of insolvent banks on the continent. The authors propose on the one hand, a centralised triage and restructuring process of bad European banks lead by a new temporary European Institution, a European Bank Support Authority (EBSA), and on the other hand, long-term EU Institutions dedicated to the completion of an integrated market.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Adam Posen\",\"Nicolas Véron\"],\"publicationdate\":\"2009-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.bruegel.org/download/parent/310-a-solution-for-europes-banking-problem/file/755-a-solution-for-europes-banking-problem-english/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.piie.com/publications/pb/pb09-13.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.piie.com/publications/pb/pb09-13.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.piie.com/publications/pb/pb09-13.pdf\",\"id\":\"oai:RePEc:iie:pbrief:pb09-13\"},\"trust\":0.43088156}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:bre:polbrf:310"},"target_publication_author_list":{"type":"LIST_STRING","value":["Adam Posen","Nicolas Véron"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:iie:pbrief:pb09-13"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.43088156},"target_publication_title":{"type":"STRING","value":"A solution for Europe\u0027s banking problem"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:iie:pbrief:pb09-13\",\"titles\":[\"A Solution for Europe\\u0027s Banking Problem\"],\"abstracts\":[\"The European Union\\u0027s aggressive response to the global financial crisis has prevented financial meltdown, but the continent\\u0027s banking industry remains very fragile. Experts estimate coming losses in excess of $500 billion, with very little written down so far. These losses plus the problems in Eastern Europe portend widespread cross-border bank insolvencies. Traditional banking (in corporate finance and household savings) remains predominant in the European economies, so healing the banking system is crucial for sustained recovery in Europe. Lingering banking fragility would result in constant disruption or misallocation of bank credit and hinder returns to savers, thus depressing investment and consumption. Ongoing fragility will also harm European trend productivity growth by skipping some investment and R\\u0026D cycles, misallocating capital to lower-return projects, and wasting human capital by consigning some workers to long-term unemployment. It will take time and political will to create an EU banking supervisory architecture, but Europe cannot afford to wait. Posen and Véron recommend that Europe engage in system-wide \\\"triage\\\" of major banks on the continent by capital position, leading to public restructuring of the weakest ones. They propose that relevant countries jointly create a temporary supranational agency or Treuhand to implement the triage process, catalyze recapitalizations, and manage any distressed assets that would fall into public ownership. Such a trustee would avoid both harmful races to the bottom within Europe by national supervisors and fiscal transfers between European states for bailouts.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Posen, Adam S.\",\"Nicolas Veron\"],\"publicationdate\":\"2009-06-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.piie.com/publications/pb/pb09-13.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.bruegel.org/download/parent/310-a-solution-for-europes-banking-problem/file/755-a-solution-for-europes-banking-problem-english/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.bruegel.org/download/parent/310-a-solution-for-europes-banking-problem/file/755-a-solution-for-europes-banking-problem-english/\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.bruegel.org/download/parent/310-a-solution-for-europes-banking-problem/file/755-a-solution-for-europes-banking-problem-english/\",\"id\":\"oai:RePEc:bre:polbrf:310\"},\"trust\":0.29773784}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:iie:pbrief:pb09-13"},"target_publication_author_list":{"type":"LIST_STRING","value":["Posen, Adam S.","Nicolas Veron"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:bre:polbrf:310"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.29773784},"target_publication_title":{"type":"STRING","value":"A Solution for Europe\u0027s Banking Problem"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-06-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:tudelft.nl:uuid:51950fe0-836c-4f81-90f2-83739b96552e\",\"titles\":[\"De-coding the Vernacular - Dynamic Representation Approaches to Case-based Compositional Study:\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"Design representation\",\"Computer-based sketching\",\"Virtual and physical modelling\",\"Compositional variation\",\"Contemporary aesthetics\"],\"creators\":[\"Breen, J.\",\"Stellingwerff, M.\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"TU Delft Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://resolver.tudelft.nl/uuid:51950fe0-836c-4f81-90f2-83739b96552e\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Unknown\"},{\"url\":\"http://resolver.tudelft.nl/uuid:51950fe0-836c-4f81-90f2-83739b96552e\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://resolver.tudelft.nl/uuid:51950fe0-836c-4f81-90f2-83739b96552e\",\"license\":\"OPEN\",\"hostedby\":\"TU Delft Repository\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://resolver.tudelft.nl/uuid:51950fe0-836c-4f81-90f2-83739b96552e\",\"id\":\"tud:oai:tudelft.nl:uuid:51950fe0-836c-4f81-90f2-83739b96552e\"},\"trust\":0.57128763}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"TU Delft Repository"},"target_publication_id":{"type":"STRING","value":"oai:tudelft.nl:uuid:51950fe0-836c-4f81-90f2-83739b96552e"},"target_publication_author_list":{"type":"LIST_STRING","value":["Breen, J.","Stellingwerff, M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["tud:oai:tudelft.nl:uuid:51950fe0-836c-4f81-90f2-83739b96552e"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Design representation","Computer-based sketching","Virtual and physical modelling","Compositional variation","Contemporary aesthetics"]},"trust":{"type":"FLOAT","value":0.57128763},"target_publication_title":{"type":"STRING","value":"De-coding the Vernacular - Dynamic Representation Approaches to Case-based Compositional Study:"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::c9892a989183de32e976c6f04e700201"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:wpa:wuwpdc:0411021\",\"titles\":[\"Some Fundamental Inadequacies of the Washington Consensus: Misunderstanding the Poor by the Brightest\"],\"abstracts\":[\"The Washington Consensus suffers from fundamental inadequacies, and that a more comprehensive framework of the economic process is needed to guide the formulation of country-specific development strategies. The following five propositions summarise the set of interrelated arguments made in this paper: 1. The Washington Consensus was based on a wrong reading of the East Asian growth experience. This explains why some observers have called the trade regimes of Korea and Taiwan in the 1965- 1980 period “free trade regimes” even though they featured extensive import tariffs and export subsidies. 2. There have been two phases to the Washington Consensus doctrine. The mantra of the first phase (Washington Consensus Mark 1) is “get your prices right”, and the falsification of this first mantra led to the emergence of the second phase of the Washington Consensus doctrine. The new mantra from the Washington Consensus Mark 2 is “get the institutions right.” The danger is that an elastic definition of the term “institutions” will render the current mantra intellectually vacuous. 3. While central planning went overboard in suppressing the private market economy, the Washington Consensus runs the danger of denying the state its rightful role in providing an important range of public goods. The Washington Consensus also runs the danger of denying the limitations of self-help in the case of sub-Saharan Africa by overlooking the possibility of poverty traps. 4. The Washington Consensus does not understand that the ultimate engine of growth in a predominantly private market economy is technological innovations, and that the state can play a role in facilitating technological innovations. The Washington Consensus is too hooked upon trade-led growth to acknowledge that science-led growth is becoming even more important. 5. The Washington Consensus does not recognize the constraints that geography and ecology could set on the growth potential of a country. For example, the trade-led growth strategy of East Asia cannot work with the same efficiency for a landlocked country. Foreign direct investment is also less likely to go to places that are malaria- infested.\"],\"language\":\"und\",\"subjects\":[\"Washington Consensus, poverty trap, institutions, geography, ecology\"],\"creators\":[\"Wing Woo\"],\"publicationdate\":\"2004-11-18\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econwpa.repec.org/eps/dev/papers/0411/0411021.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://econwpa.repec.org/eps/dev/papers/0411/0411020.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econwpa.repec.org/eps/dev/papers/0411/0411020.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econwpa.repec.org/eps/dev/papers/0411/0411020.pdf\",\"id\":\"oai:RePEc:wpa:wuwpdc:0411020\"},\"trust\":0.8716593}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:wpa:wuwpdc:0411021"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wing Woo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wpa:wuwpdc:0411020"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Washington Consensus, poverty trap, institutions, geography, ecology"]},"trust":{"type":"FLOAT","value":0.8716593},"target_publication_title":{"type":"STRING","value":"Some Fundamental Inadequacies of the Washington Consensus: Misunderstanding the Poor by the Brightest"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-11-18"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:wpa:wuwpdc:0411020\",\"titles\":[\"Some Fundamental Inadequacies of the Washington Consensus: Misunderstanding the Poor by the Brightest\"],\"abstracts\":[\"The Washington Consensus suffers from fundamental inadequacies, and that a more comprehensive framework of the economic process is needed to guide the formulation of country-specific development strategies. The following five propositions summarise the set of interrelated arguments made in this paper: 1. The Washington Consensus was based on a wrong reading of the East Asian growth experience. This explains why some observers have called the trade regimes of Korea and Taiwan in the 1965- 1980 period “free trade regimes” even though they featured extensive import tariffs and export subsidies. 2. There have been two phases to the Washington Consensus doctrine. The mantra of the first phase (Washington Consensus Mark 1) is “get your prices right”, and the falsification of this first mantra led to the emergence of the second phase of the Washington Consensus doctrine. The new mantra from the Washington Consensus Mark 2 is “get the institutions right.” The danger is that an elastic definition of the term “institutions” will render the current mantra intellectually vacuous. 3. While central planning went overboard in suppressing the private market economy, the Washington Consensus runs the danger of denying the state its rightful role in providing an important range of public goods. The Washington Consensus also runs the danger of denying the limitations of self-help in the case of sub-Saharan Africa by overlooking the possibility of poverty traps. 4. The Washington Consensus does not understand that the ultimate engine of growth in a predominantly private market economy is technological innovations, and that the state can play a role in facilitating technological innovations. The Washington Consensus is too hooked upon trade-led growth to acknowledge that science-led growth is becoming even more important. 5. The Washington Consensus does not recognize the constraints that geography and ecology could set on the growth potential of a country. For example, the trade-led growth strategy of East Asia cannot work with the same efficiency for a landlocked country. Foreign direct investment is also less likely to go to places that are malaria- infested.\"],\"language\":\"und\",\"subjects\":[\"Washington Consensus, poverty trap, institutions, geography, ecology\"],\"creators\":[\"Wing Woo\"],\"publicationdate\":\"2004-11-18\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econwpa.repec.org/eps/dev/papers/0411/0411020.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://econwpa.repec.org/eps/dev/papers/0411/0411021.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econwpa.repec.org/eps/dev/papers/0411/0411021.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econwpa.repec.org/eps/dev/papers/0411/0411021.pdf\",\"id\":\"oai:RePEc:wpa:wuwpdc:0411021\"},\"trust\":0.20834213}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:wpa:wuwpdc:0411020"},"target_publication_author_list":{"type":"LIST_STRING","value":["Wing Woo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wpa:wuwpdc:0411021"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Washington Consensus, poverty trap, institutions, geography, ecology"]},"trust":{"type":"FLOAT","value":0.20834213},"target_publication_title":{"type":"STRING","value":"Some Fundamental Inadequacies of the Washington Consensus: Misunderstanding the Poor by the Brightest"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2004-11-18"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00890344\",\"titles\":[\"ARBEITSGRUPPE \\\" BIENENSCHUTZ \\\" : SYMPOSIUM IN DER LANDESANSTALT FÜR BIENENKUNDE IN STUTTGART-HOHENHEIM AM 6. OKTOBER 1972\"],\"abstracts\":[],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:BA:ZI] Life Sciences/Animal biology/Invertebrate Zoology\",\"[SDV:BA:ZI] Sciences du Vivant/Biologie animale/Zoologie des invertébrés\",\"[SDV:BID] Life Sciences/Biodiversity\",\"[SDV:BID] Sciences du Vivant/Biodiversité\",\"[SDV:EE] Life Sciences/Ecology, environment\",\"[SDV:EE] Sciences du Vivant/Ecologie, Environnement\",\"[SDV:SA:SPA] Life Sciences/Agricultural sciences/Animal production studies\",\"[SDV:SA:SPA] Sciences du Vivant/Sciences agricoles/Science des productions animales\"],\"creators\":[\"Kommission Für Bienenbotanik Internationale Union Biologischen Wissenschaften, Internationale\"],\"publicationdate\":\"1973-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00890344\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00890344\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00890344\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00890344\",\"id\":\"oai:HAL:hal-00890344v1\"},\"trust\":0.43487895}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00890344"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kommission Für Bienenbotanik Internationale Union Biologischen Wissenschaften, Internationale"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00890344v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BA:ZI] Life Sciences/Animal biology/Invertebrate Zoology","[SDV:BA:ZI] Sciences du Vivant/Biologie animale/Zoologie des invertébrés","[SDV:BID] Life Sciences/Biodiversity","[SDV:BID] Sciences du Vivant/Biodiversité","[SDV:EE] Life Sciences/Ecology, environment","[SDV:EE] Sciences du Vivant/Ecologie, Environnement","[SDV:SA:SPA] Life Sciences/Agricultural sciences/Animal production studies","[SDV:SA:SPA] Sciences du Vivant/Sciences agricoles/Science des productions animales"]},"trust":{"type":"FLOAT","value":0.43487895},"target_publication_title":{"type":"STRING","value":"ARBEITSGRUPPE \" BIENENSCHUTZ \" : SYMPOSIUM IN DER LANDESANSTALT FÜR BIENENKUNDE IN STUTTGART-HOHENHEIM AM 6. OKTOBER 1972"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1973-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00890344\",\"titles\":[\"ARBEITSGRUPPE \\\" BIENENSCHUTZ \\\" : SYMPOSIUM IN DER LANDESANSTALT FÜR BIENENKUNDE IN STUTTGART-HOHENHEIM AM 6. OKTOBER 1972\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV:BA:ZI] Life Sciences/Animal biology/Invertebrate Zoology\",\"[SDV:BA:ZI] Sciences du Vivant/Biologie animale/Zoologie des invertébrés\",\"[SDV:BID] Life Sciences/Biodiversity\",\"[SDV:BID] Sciences du Vivant/Biodiversité\",\"[SDV:EE] Life Sciences/Ecology, environment\",\"[SDV:EE] Sciences du Vivant/Ecologie, Environnement\",\"[SDV:SA:SPA] Life Sciences/Agricultural sciences/Animal production studies\",\"[SDV:SA:SPA] Sciences du Vivant/Sciences agricoles/Science des productions animales\"],\"creators\":[\"Kommission Für Bienenbotanik Internationale Union Biologischen Wissenschaften, Internationale\"],\"publicationdate\":\"1973-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00890344\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"International audience\"]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00890344\",\"id\":\"oai:HAL:hal-00890344v1\"},\"trust\":0.30858034}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00890344"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kommission Für Bienenbotanik Internationale Union Biologischen Wissenschaften, Internationale"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00890344v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV:BA:ZI] Life Sciences/Animal biology/Invertebrate Zoology","[SDV:BA:ZI] Sciences du Vivant/Biologie animale/Zoologie des invertébrés","[SDV:BID] Life Sciences/Biodiversity","[SDV:BID] Sciences du Vivant/Biodiversité","[SDV:EE] Life Sciences/Ecology, environment","[SDV:EE] Sciences du Vivant/Ecologie, Environnement","[SDV:SA:SPA] Life Sciences/Agricultural sciences/Animal production studies","[SDV:SA:SPA] Sciences du Vivant/Sciences agricoles/Science des productions animales"]},"trust":{"type":"FLOAT","value":0.30858034},"target_publication_title":{"type":"STRING","value":"ARBEITSGRUPPE \" BIENENSCHUTZ \" : SYMPOSIUM IN DER LANDESANSTALT FÜR BIENENKUNDE IN STUTTGART-HOHENHEIM AM 6. OKTOBER 1972"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1973-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00890344v1\",\"titles\":[\"ARBEITSGRUPPE \\\" BIENENSCHUTZ \\\" : SYMPOSIUM IN DER LANDESANSTALT FÜR BIENENKUNDE IN STUTTGART-HOHENHEIM AM 6. OKTOBER 1972\"],\"abstracts\":[\"International audience\"],\"language\":\"fra/fre\",\"subjects\":[\"[SDV.BA.ZI] Life Sciences/Animal biology/Invertebrate Zoology\",\"[SDV.BID] Life Sciences/Biodiversity\",\"[SDV.EE] Life Sciences/Ecology, environment\",\"[SDV.SA.SPA] Life Sciences/Agricultural sciences/Animal production studies\"],\"creators\":[\"Kommission Für Bienenbotanik Internationale Union Biologischen Wissenschaften, Internationale\"],\"publicationdate\":\"1973-01-01\",\"publisher\":\"Springer Verlag (Germany)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00890344\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00890344\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00890344\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00890344\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00890344\"},\"trust\":0.3056926}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00890344v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Kommission Für Bienenbotanik Internationale Union Biologischen Wissenschaften, Internationale"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00890344"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SDV.BA.ZI] Life Sciences/Animal biology/Invertebrate Zoology","[SDV.BID] Life Sciences/Biodiversity","[SDV.EE] Life Sciences/Ecology, environment","[SDV.SA.SPA] Life Sciences/Agricultural sciences/Animal production studies"]},"trust":{"type":"FLOAT","value":0.3056926},"target_publication_title":{"type":"STRING","value":"ARBEITSGRUPPE \" BIENENSCHUTZ \" : SYMPOSIUM IN DER LANDESANSTALT FÜR BIENENKUNDE IN STUTTGART-HOHENHEIM AM 6. OKTOBER 1972"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1973-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00708241v1\",\"titles\":[\"Analyzing and comparing Professional Service Firms over services, time and space. Proposition of a foundation framework\"],\"abstracts\":[\"International audience\",\"Research on professional service firms (PSFs) has been quickly developing over the last twenty years, especially emphasizing both PSFs\\u0027 distinctiveness and their current challenges. Recent efforts by PSFs scholars have focused on the issue of understanding differences between PSfs regarding ongoing tensions (eg. tension between Partnership and Corporation) or to organizational differentiation over geographical boundaries and professional activities. Although these contributions shed light on different factors of heterogeneity between PSFs, there is still a lack of an integrated and actionable framework which would help analyzing PSFs changes, heterogeneity and distinctiveness over services, time and space. We propose a foundation framework which interconnects two dimensions, namely \\\" governance \\\" (composed of two sub-dimensions \\\" objects \\\" and \\\" means \\\") and \\\" operations \\\" (composed of \\\" resources \\\" and \\\" coordination \\\"). This framework provides with dimensions to analyze changes in and differentiation between PSFs. It is then completed by the interactions with different dimensions of the environment which may explain changes and differentiation inside and between PSFs, namely regulation, clients, competitors and the socio-technical environment. Such a framework offers several contributions by representing comprehensively the organizational dimensions of a PSF and their coherence, by relating issues which are often considered separately and by arguing that organizational patterns are not simply deterministic but also depend on professionals\\u0027 initiatives.\"],\"language\":\"eng\",\"subjects\":[\"Professional service firms\",\"comparison\",\"heterogeneity\",\"JEL : [\",\"[SHS.GESTION] Humanities and Social Sciences/Business administration\"],\"creators\":[\"Gand, Sébastien\"],\"publicationdate\":\"2010-07-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Centre de Gestion Scientifique (CGS) ; MINES ParisTech - École nationale supérieure des mines de Paris\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal-mines-paristech.archives-ouvertes.fr/hal-00708241\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/docs/00/70/82/41/PDF/Gand_psf_foundationframework_egos2010fp.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/docs/00/70/82/41/PDF/Gand_psf_foundationframework_egos2010fp.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://hal-ensmp.archives-ouvertes.fr/docs/00/70/82/41/PDF/Gand_psf_foundationframework_egos2010fp.pdf\",\"id\":\"oai:RePEc:hal:journl:hal-00708241\"},\"trust\":0.6518758}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00708241v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gand, Sébastien"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:journl:hal-00708241"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Professional service firms","comparison","heterogeneity","JEL : [","[SHS.GESTION] Humanities and Social Sciences/Business administration"]},"trust":{"type":"FLOAT","value":0.6518758},"target_publication_title":{"type":"STRING","value":"Analyzing and comparing Professional Service Firms over services, time and space. Proposition of a foundation framework"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2010-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00708241v1\",\"titles\":[\"Analyzing and comparing Professional Service Firms over services, time and space. Proposition of a foundation framework\"],\"abstracts\":[\"International audience\",\"Research on professional service firms (PSFs) has been quickly developing over the last twenty years, especially emphasizing both PSFs\\u0027 distinctiveness and their current challenges. Recent efforts by PSFs scholars have focused on the issue of understanding differences between PSfs regarding ongoing tensions (eg. tension between Partnership and Corporation) or to organizational differentiation over geographical boundaries and professional activities. Although these contributions shed light on different factors of heterogeneity between PSFs, there is still a lack of an integrated and actionable framework which would help analyzing PSFs changes, heterogeneity and distinctiveness over services, time and space. We propose a foundation framework which interconnects two dimensions, namely \\\" governance \\\" (composed of two sub-dimensions \\\" objects \\\" and \\\" means \\\") and \\\" operations \\\" (composed of \\\" resources \\\" and \\\" coordination \\\"). This framework provides with dimensions to analyze changes in and differentiation between PSFs. It is then completed by the interactions with different dimensions of the environment which may explain changes and differentiation inside and between PSFs, namely regulation, clients, competitors and the socio-technical environment. Such a framework offers several contributions by representing comprehensively the organizational dimensions of a PSF and their coherence, by relating issues which are often considered separately and by arguing that organizational patterns are not simply deterministic but also depend on professionals\\u0027 initiatives.\"],\"language\":\"eng\",\"subjects\":[\"Professional service firms\",\"comparison\",\"heterogeneity\",\"JEL : [\",\"[SHS.GESTION] Humanities and Social Sciences/Business administration\"],\"creators\":[\"Gand, Sébastien\"],\"publicationdate\":\"2010-07-01\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Centre de Gestion Scientifique (CGS) ; MINES ParisTech - École nationale supérieure des mines de Paris\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal-mines-paristech.archives-ouvertes.fr/hal-00708241\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00708241\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00708241\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00708241\",\"id\":\"oai:hal-ensmp.archives-ouvertes.fr:hal-00708241\"},\"trust\":0.15214068}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00708241v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gand, Sébastien"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal-ensmp.archives-ouvertes.fr:hal-00708241"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Professional service firms","comparison","heterogeneity","JEL : [","[SHS.GESTION] Humanities and Social Sciences/Business administration"]},"trust":{"type":"FLOAT","value":0.15214068},"target_publication_title":{"type":"STRING","value":"Analyzing and comparing Professional Service Firms over services, time and space. Proposition of a foundation framework"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:hal-00708241\",\"titles\":[\"Analyzing and comparing Professional Service Firms over services, time and space. Proposition of a foundation framework\"],\"abstracts\":[\"Research on professional service firms (PSFs) has been quickly developing over the last twenty years, especially emphasizing both PSFs\\u0027 distinctiveness and their current challenges. Recent efforts by PSFs scholars have focused on the issue of understanding differences between PSfs regarding ongoing tensions (eg. tension between Partnership and Corporation) or to organizational differentiation over geographical boundaries and professional activities. Although these contributions shed light on different factors of heterogeneity between PSFs, there is still a lack of an integrated and actionable framework which would help analyzing PSFs changes, heterogeneity and distinctiveness over services, time and space. We propose a foundation framework which interconnects two dimensions, namely \\\" governance \\\" (composed of two sub-dimensions \\\" objects \\\" and \\\" means \\\") and \\\" operations \\\" (composed of \\\" resources \\\" and \\\" coordination \\\"). This framework provides with dimensions to analyze changes in and differentiation between PSFs. It is then completed by the interactions with different dimensions of the environment which may explain changes and differentiation inside and between PSFs, namely regulation, clients, competitors and the socio-technical environment. Such a framework offers several contributions by representing comprehensively the organizational dimensions of a PSF and their coherence, by relating issues which are often considered separately and by arguing that organizational patterns are not simply deterministic but also depend on professionals\\u0027 initiatives.\"],\"language\":\"und\",\"subjects\":[\"Professional service firms, comparison, heterogeneity\"],\"creators\":[\"Sébastien Gand\"],\"publicationdate\":\"2010-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/docs/00/70/82/41/PDF/Gand_psf_foundationframework_egos2010fp.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"https://hal-mines-paristech.archives-ouvertes.fr/hal-00708241\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal-mines-paristech.archives-ouvertes.fr/hal-00708241\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal-mines-paristech.archives-ouvertes.fr/hal-00708241\",\"id\":\"oai:HAL:hal-00708241v1\"},\"trust\":0.35452765}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:hal-00708241"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sébastien Gand"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00708241v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Professional service firms, comparison, heterogeneity"]},"trust":{"type":"FLOAT","value":0.35452765},"target_publication_title":{"type":"STRING","value":"Analyzing and comparing Professional Service Firms over services, time and space. Proposition of a foundation framework"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:hal:journl:hal-00708241\",\"titles\":[\"Analyzing and comparing Professional Service Firms over services, time and space. Proposition of a foundation framework\"],\"abstracts\":[\"Research on professional service firms (PSFs) has been quickly developing over the last twenty years, especially emphasizing both PSFs\\u0027 distinctiveness and their current challenges. Recent efforts by PSFs scholars have focused on the issue of understanding differences between PSfs regarding ongoing tensions (eg. tension between Partnership and Corporation) or to organizational differentiation over geographical boundaries and professional activities. Although these contributions shed light on different factors of heterogeneity between PSFs, there is still a lack of an integrated and actionable framework which would help analyzing PSFs changes, heterogeneity and distinctiveness over services, time and space. We propose a foundation framework which interconnects two dimensions, namely \\\" governance \\\" (composed of two sub-dimensions \\\" objects \\\" and \\\" means \\\") and \\\" operations \\\" (composed of \\\" resources \\\" and \\\" coordination \\\"). This framework provides with dimensions to analyze changes in and differentiation between PSFs. It is then completed by the interactions with different dimensions of the environment which may explain changes and differentiation inside and between PSFs, namely regulation, clients, competitors and the socio-technical environment. Such a framework offers several contributions by representing comprehensively the organizational dimensions of a PSF and their coherence, by relating issues which are often considered separately and by arguing that organizational patterns are not simply deterministic but also depend on professionals\\u0027 initiatives.\"],\"language\":\"und\",\"subjects\":[\"Professional service firms, comparison, heterogeneity\"],\"creators\":[\"Sébastien Gand\"],\"publicationdate\":\"2010-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/docs/00/70/82/41/PDF/Gand_psf_foundationframework_egos2010fp.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00708241\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00708241\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00708241\",\"id\":\"oai:hal-ensmp.archives-ouvertes.fr:hal-00708241\"},\"trust\":0.6962875}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:hal:journl:hal-00708241"},"target_publication_author_list":{"type":"LIST_STRING","value":["Sébastien Gand"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal-ensmp.archives-ouvertes.fr:hal-00708241"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Professional service firms, comparison, heterogeneity"]},"trust":{"type":"FLOAT","value":0.6962875},"target_publication_title":{"type":"STRING","value":"Analyzing and comparing Professional Service Firms over services, time and space. Proposition of a foundation framework"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal-ensmp.archives-ouvertes.fr:hal-00708241\",\"titles\":[\"Analyzing and comparing Professional Service Firms over services, time and space. Proposition of a foundation framework\"],\"abstracts\":[\"Research on professional service firms (PSFs) has been quickly developing over the last twenty years, especially emphasizing both PSFs\\u0027 distinctiveness and their current challenges. Recent efforts by PSFs scholars have focused on the issue of understanding differences between PSfs regarding ongoing tensions (eg. tension between Partnership and Corporation) or to organizational differentiation over geographical boundaries and professional activities. Although these contributions shed light on different factors of heterogeneity between PSFs, there is still a lack of an integrated and actionable framework which would help analyzing PSFs changes, heterogeneity and distinctiveness over services, time and space. We propose a foundation framework which interconnects two dimensions, namely \\\" governance \\\" (composed of two sub-dimensions \\\" objects \\\" and \\\" means \\\") and \\\" operations \\\" (composed of \\\" resources \\\" and \\\" coordination \\\"). This framework provides with dimensions to analyze changes in and differentiation between PSFs. It is then completed by the interactions with different dimensions of the environment which may explain changes and differentiation inside and between PSFs, namely regulation, clients, competitors and the socio-technical environment. Such a framework offers several contributions by representing comprehensively the organizational dimensions of a PSF and their coherence, by relating issues which are often considered separately and by arguing that organizational patterns are not simply deterministic but also depend on professionals\\u0027 initiatives.\"],\"language\":\"eng\",\"subjects\":[\"[SHS:GESTION] Humanities and Social Sciences/Business administration\",\"[SHS:GESTION] Sciences de l\\u0027Homme et Société/Gestion et management\",\"Professional service firms\",\"comparison\",\"heterogeneity\"],\"creators\":[\"Gand, Sébastien\"],\"publicationdate\":\"2010-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00708241\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"https://hal-mines-paristech.archives-ouvertes.fr/hal-00708241\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal-mines-paristech.archives-ouvertes.fr/hal-00708241\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal-mines-paristech.archives-ouvertes.fr/hal-00708241\",\"id\":\"oai:HAL:hal-00708241v1\"},\"trust\":0.79409105}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal-ensmp.archives-ouvertes.fr:hal-00708241"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gand, Sébastien"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00708241v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:GESTION] Humanities and Social Sciences/Business administration","[SHS:GESTION] Sciences de l\u0027Homme et Société/Gestion et management","Professional service firms","comparison","heterogeneity"]},"trust":{"type":"FLOAT","value":0.79409105},"target_publication_title":{"type":"STRING","value":"Analyzing and comparing Professional Service Firms over services, time and space. Proposition of a foundation framework"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal-ensmp.archives-ouvertes.fr:hal-00708241\",\"titles\":[\"Analyzing and comparing Professional Service Firms over services, time and space. Proposition of a foundation framework\"],\"abstracts\":[\"Research on professional service firms (PSFs) has been quickly developing over the last twenty years, especially emphasizing both PSFs\\u0027 distinctiveness and their current challenges. Recent efforts by PSFs scholars have focused on the issue of understanding differences between PSfs regarding ongoing tensions (eg. tension between Partnership and Corporation) or to organizational differentiation over geographical boundaries and professional activities. Although these contributions shed light on different factors of heterogeneity between PSFs, there is still a lack of an integrated and actionable framework which would help analyzing PSFs changes, heterogeneity and distinctiveness over services, time and space. We propose a foundation framework which interconnects two dimensions, namely \\\" governance \\\" (composed of two sub-dimensions \\\" objects \\\" and \\\" means \\\") and \\\" operations \\\" (composed of \\\" resources \\\" and \\\" coordination \\\"). This framework provides with dimensions to analyze changes in and differentiation between PSFs. It is then completed by the interactions with different dimensions of the environment which may explain changes and differentiation inside and between PSFs, namely regulation, clients, competitors and the socio-technical environment. Such a framework offers several contributions by representing comprehensively the organizational dimensions of a PSF and their coherence, by relating issues which are often considered separately and by arguing that organizational patterns are not simply deterministic but also depend on professionals\\u0027 initiatives.\"],\"language\":\"eng\",\"subjects\":[\"[SHS:GESTION] Humanities and Social Sciences/Business administration\",\"[SHS:GESTION] Sciences de l\\u0027Homme et Société/Gestion et management\",\"Professional service firms\",\"comparison\",\"heterogeneity\"],\"creators\":[\"Gand, Sébastien\"],\"publicationdate\":\"2010-07-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/hal-00708241\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/docs/00/70/82/41/PDF/Gand_psf_foundationframework_egos2010fp.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-ensmp.archives-ouvertes.fr/docs/00/70/82/41/PDF/Gand_psf_foundationframework_egos2010fp.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://hal-ensmp.archives-ouvertes.fr/docs/00/70/82/41/PDF/Gand_psf_foundationframework_egos2010fp.pdf\",\"id\":\"oai:RePEc:hal:journl:hal-00708241\"},\"trust\":0.8330117}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal-ensmp.archives-ouvertes.fr:hal-00708241"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gand, Sébastien"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:hal:journl:hal-00708241"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:GESTION] Humanities and Social Sciences/Business administration","[SHS:GESTION] Sciences de l\u0027Homme et Société/Gestion et management","Professional service firms","comparison","heterogeneity"]},"trust":{"type":"FLOAT","value":0.8330117},"target_publication_title":{"type":"STRING","value":"Analyzing and comparing Professional Service Firms over services, time and space. Proposition of a foundation framework"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2010-07-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:gesis.izsoz.de:22042\",\"titles\":[\"Democracy and denomination: democratic values among Muslim minorities and the majority population in Denmark\"],\"abstracts\":[\"Based on a survey of national minorities (immigrants as well as immigrant descendants) and the national majority, this article analyses the distribution and explanation of democratic values in Denmark. With respect to democratic rights, the analysis shows that Muslim immigrants and immigrant descendants score slightly lower on democratic principles and family democracy; however, they have more democratic values than the majority of the populations in Western Europe. Democratic values do not differ between immigrants and descendants of the same national group, and differences in values do not depend on immigrants’ length of stay in the host society. Among national minorities of mixed religious composition, the differences between the Muslim parts of these nationalities are larger than the differences among national groups. There is no sign of value clash between the Muslim minorities and the majority population with respect to democratic values. Differences in democratic values are explained by nationality, not religion.\"],\"language\":\"und\",\"subjects\":[\"Social sciences, sociology, anthropology\",\"Political science\",\"Sozialwissenschaften, Soziologie\",\"Politikwissenschaft\",\"Immigrants; survey data; national identity; Denmark; democracy\",\"Migration, Migrationssoziologie\",\"politische Willensbildung, politische Soziologie, politische Kultur\",\"Migration, Sociology of Migration\",\"Political Process, Elections, Political Sociology, Political Culture\",\"Dänemark\",\"Einwanderung\",\"Muslim\",\"ethnische Gruppe\",\"Minderheit\",\"nationale Identität\",\"Demokratie\",\"Migrant\",\"Wertorientierung\",\"Religionszugehörigkeit\",\"Islam\",\"Denmark\",\"immigration\",\"Muslim\",\"ethnic group\",\"minority\",\"national identity\",\"democracy\",\"migrant\",\"value-orientation\",\"religious affiliation\",\"Islam\",\"empirical\",\"empirisch\"],\"creators\":[\"Gundelach, Peter\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"United Kingdom\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Social Science Open Access Repository\"],\"pids\":[{\"value\":\"10.1080/01419870903019544\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.ssoar.info/ssoar/handle/document/22042\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Article\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00567813\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00567813\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00567813\",\"id\":\"oai:HAL:hal-00567813v1\"},\"trust\":0.39733523}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Social Science Open Access Repository"},"target_publication_id":{"type":"STRING","value":"oai:gesis.izsoz.de:22042"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gundelach, Peter"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00567813v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Social sciences, sociology, anthropology","Political science","Sozialwissenschaften, Soziologie","Politikwissenschaft","Immigrants; survey data; national identity; Denmark; democracy","Migration, Migrationssoziologie","politische Willensbildung, politische Soziologie, politische Kultur","Migration, Sociology of Migration","Political Process, Elections, Political Sociology, Political Culture","Dänemark","Einwanderung","Muslim","ethnische Gruppe","Minderheit","nationale Identität","Demokratie","Migrant","Wertorientierung","Religionszugehörigkeit","Islam","Denmark","immigration","Muslim","ethnic group","minority","national identity","democracy","migrant","value-orientation","religious affiliation","Islam","empirical","empirisch"]},"trust":{"type":"FLOAT","value":0.39733523},"target_publication_title":{"type":"STRING","value":"Democracy and denomination: democratic values among Muslim minorities and the majority population in Denmark"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7810ccd41bf26faaa2c4e1f20db70a71"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:gesis.izsoz.de:22042\",\"titles\":[\"Democracy and denomination: democratic values among Muslim minorities and the majority population in Denmark\"],\"abstracts\":[\"Based on a survey of national minorities (immigrants as well as immigrant descendants) and the national majority, this article analyses the distribution and explanation of democratic values in Denmark. With respect to democratic rights, the analysis shows that Muslim immigrants and immigrant descendants score slightly lower on democratic principles and family democracy; however, they have more democratic values than the majority of the populations in Western Europe. Democratic values do not differ between immigrants and descendants of the same national group, and differences in values do not depend on immigrants’ length of stay in the host society. Among national minorities of mixed religious composition, the differences between the Muslim parts of these nationalities are larger than the differences among national groups. There is no sign of value clash between the Muslim minorities and the majority population with respect to democratic values. Differences in democratic values are explained by nationality, not religion.\"],\"language\":\"und\",\"subjects\":[\"Social sciences, sociology, anthropology\",\"Political science\",\"Sozialwissenschaften, Soziologie\",\"Politikwissenschaft\",\"Immigrants; survey data; national identity; Denmark; democracy\",\"Migration, Migrationssoziologie\",\"politische Willensbildung, politische Soziologie, politische Kultur\",\"Migration, Sociology of Migration\",\"Political Process, Elections, Political Sociology, Political Culture\",\"Dänemark\",\"Einwanderung\",\"Muslim\",\"ethnische Gruppe\",\"Minderheit\",\"nationale Identität\",\"Demokratie\",\"Migrant\",\"Wertorientierung\",\"Religionszugehörigkeit\",\"Islam\",\"Denmark\",\"immigration\",\"Muslim\",\"ethnic group\",\"minority\",\"national identity\",\"democracy\",\"migrant\",\"value-orientation\",\"religious affiliation\",\"Islam\",\"empirical\",\"empirisch\"],\"creators\":[\"Gundelach, Peter\"],\"publicationdate\":\"2010-01-01\",\"publisher\":\"United Kingdom\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Social Science Open Access Repository\"],\"pids\":[{\"value\":\"10.1080/01419870903019544\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://www.ssoar.info/ssoar/handle/document/22042\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://hdl.handle.net/2262/50733\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2262/50733\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"}]},\"provenance\":{\"repositoryName\":\"Trinity\\u0027s Access to Research Archive\",\"url\":\"http://hdl.handle.net/2262/50733\",\"id\":\"oai:www.tara.tcd.ie:2262/50733\"},\"trust\":0.06405145}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Social Science Open Access Repository"},"target_publication_id":{"type":"STRING","value":"oai:gesis.izsoz.de:22042"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gundelach, Peter"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.tara.tcd.ie:2262/50733"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Social sciences, sociology, anthropology","Political science","Sozialwissenschaften, Soziologie","Politikwissenschaft","Immigrants; survey data; national identity; Denmark; democracy","Migration, Migrationssoziologie","politische Willensbildung, politische Soziologie, politische Kultur","Migration, Sociology of Migration","Political Process, Elections, Political Sociology, Political Culture","Dänemark","Einwanderung","Muslim","ethnische Gruppe","Minderheit","nationale Identität","Demokratie","Migrant","Wertorientierung","Religionszugehörigkeit","Islam","Denmark","immigration","Muslim","ethnic group","minority","national identity","democracy","migrant","value-orientation","religious affiliation","Islam","empirical","empirisch"]},"trust":{"type":"FLOAT","value":0.06405145},"target_publication_title":{"type":"STRING","value":"Democracy and denomination: democratic values among Muslim minorities and the majority population in Denmark"},"provenance_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2010-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7810ccd41bf26faaa2c4e1f20db70a71"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00567813v1\",\"titles\":[\"Democracy and Denomination: Democratic values among Muslim minorities and the majority population in Denmark\"],\"abstracts\":[\"International audience\",\"Based on a survey of national minorities (immigrants as well as immigrant descendants) and the national majority, this article analyses the distribution and explanation of democratic values in Denmark. With respect to democratic rights, the analysis shows that Muslim immigrants and immigrant descendants score slightly lower on democratic principles and family democracy; however, they have more democratic values than the majority of the populations in Western Europe. Democratic values do not differ between immigrants and descendants of the same national group, and differences in values do not depend on immigrants\\u0027 length of stay in the host society. Among national minorities of mixed religious composition, the differences between the Muslim parts of these nationalities are larger than the differences among national groups. There is no sign of value clash between the Muslim minorities and the majority population with respect to democratic values. Differences in democratic values are explained by nationality, not religion.\"],\"language\":\"eng\",\"subjects\":[\"Social Sciences \\u0026 Humanities\"],\"creators\":[\"Gundelach, Peter\"],\"publicationdate\":\"2010-02-22\",\"publisher\":\"Taylor \\u0026 Francis (Routledge): SSH Titles\",\"embargoenddate\":\"\",\"contributor\":[\"Department of Sociology ; University of Copenhagen\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1080/01419870903019544\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00567813\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://www.ssoar.info/ssoar/handle/document/22042\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ssoar.info/ssoar/handle/document/22042\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Social Science Open Access Repository\",\"url\":\"http://www.ssoar.info/ssoar/handle/document/22042\",\"id\":\"oai:gesis.izsoz.de:22042\"},\"trust\":0.85388887}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00567813v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gundelach, Peter"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:gesis.izsoz.de:22042"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7810ccd41bf26faaa2c4e1f20db70a71"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Social Sciences \u0026 Humanities"]},"trust":{"type":"FLOAT","value":0.85388887},"target_publication_title":{"type":"STRING","value":"Democracy and Denomination: Democratic values among Muslim minorities and the majority population in Denmark"},"provenance_datasource_name":{"type":"STRING","value":"Social Science Open Access Repository"},"target_dateofacceptance":{"type":"DATE","value":"2010-02-22"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00567813v1\",\"titles\":[\"Democracy and Denomination: Democratic values among Muslim minorities and the majority population in Denmark\"],\"abstracts\":[\"International audience\",\"Based on a survey of national minorities (immigrants as well as immigrant descendants) and the national majority, this article analyses the distribution and explanation of democratic values in Denmark. With respect to democratic rights, the analysis shows that Muslim immigrants and immigrant descendants score slightly lower on democratic principles and family democracy; however, they have more democratic values than the majority of the populations in Western Europe. Democratic values do not differ between immigrants and descendants of the same national group, and differences in values do not depend on immigrants\\u0027 length of stay in the host society. Among national minorities of mixed religious composition, the differences between the Muslim parts of these nationalities are larger than the differences among national groups. There is no sign of value clash between the Muslim minorities and the majority population with respect to democratic values. Differences in democratic values are explained by nationality, not religion.\"],\"language\":\"eng\",\"subjects\":[\"Social Sciences \\u0026 Humanities\"],\"creators\":[\"Gundelach, Peter\"],\"publicationdate\":\"2010-02-22\",\"publisher\":\"Taylor \\u0026 Francis (Routledge): SSH Titles\",\"embargoenddate\":\"\",\"contributor\":[\"Department of Sociology ; University of Copenhagen\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[{\"value\":\"10.1080/01419870903019544\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00567813\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hdl.handle.net/2262/50733\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2262/50733\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"}]},\"provenance\":{\"repositoryName\":\"Trinity\\u0027s Access to Research Archive\",\"url\":\"http://hdl.handle.net/2262/50733\",\"id\":\"oai:www.tara.tcd.ie:2262/50733\"},\"trust\":0.6160966}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00567813v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Gundelach, Peter"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:www.tara.tcd.ie:2262/50733"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Social Sciences \u0026 Humanities"]},"trust":{"type":"FLOAT","value":0.6160966},"target_publication_title":{"type":"STRING","value":"Democracy and Denomination: Democratic values among Muslim minorities and the majority population in Denmark"},"provenance_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_dateofacceptance":{"type":"DATE","value":"2010-02-22"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.tara.tcd.ie:2262/50733\",\"titles\":[\"Democracy and Denomination: Democratic values among Muslim minorities and the majority population in Denmark\"],\"abstracts\":[\"Abstract\\n Based on a survey of national minorities (immigrants as well as immigrant descendants) and the national majority, this article analyses the distribution and explanation of democratic values in Denmark. With respect to democratic rights, the analysis shows that Muslim immigrants and immigrant descendants score slightly lower on democratic principles and family democracy; however, they have more democratic values than the majority of the populations in Western Europe. Democratic values do not differ between immigrants and descendants of the same national group, and differences in values do not depend on immigrants’ length of stay in the host society. Among national minorities of mixed religious composition, the differences between the Muslim parts of these nationalities are larger than the differences among national groups. There is no sign of value clash between the Muslim minorities and the majority population with respect to democratic values. Differences in democratic values are explained by nationality, not religion.\"],\"language\":\"eng\",\"subjects\":[\"Social Sciences \\u0026 Humanities\"],\"creators\":[],\"publicationdate\":\"2010-02-22\",\"publisher\":\"Taylor \\u0026 Francis\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Trinity\\u0027s Access to Research Archive\"],\"pids\":[{\"value\":\"10.1080/01419870903019544\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/2262/50733\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"},{\"url\":\"http://www.ssoar.info/ssoar/handle/document/22042\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.ssoar.info/ssoar/handle/document/22042\",\"license\":\"OPEN\",\"hostedby\":\"Social Science Open Access Repository\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"Social Science Open Access Repository\",\"url\":\"http://www.ssoar.info/ssoar/handle/document/22042\",\"id\":\"oai:gesis.izsoz.de:22042\"},\"trust\":0.35111314}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:www.tara.tcd.ie:2262/50733"},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:gesis.izsoz.de:22042"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7810ccd41bf26faaa2c4e1f20db70a71"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Social Sciences \u0026 Humanities"]},"trust":{"type":"FLOAT","value":0.35111314},"target_publication_title":{"type":"STRING","value":"Democracy and Denomination: Democratic values among Muslim minorities and the majority population in Denmark"},"provenance_datasource_name":{"type":"STRING","value":"Social Science Open Access Repository"},"target_dateofacceptance":{"type":"DATE","value":"2010-02-22"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:www.tara.tcd.ie:2262/50733\",\"titles\":[\"Democracy and Denomination: Democratic values among Muslim minorities and the majority population in Denmark\"],\"abstracts\":[\"Abstract\\n Based on a survey of national minorities (immigrants as well as immigrant descendants) and the national majority, this article analyses the distribution and explanation of democratic values in Denmark. With respect to democratic rights, the analysis shows that Muslim immigrants and immigrant descendants score slightly lower on democratic principles and family democracy; however, they have more democratic values than the majority of the populations in Western Europe. Democratic values do not differ between immigrants and descendants of the same national group, and differences in values do not depend on immigrants’ length of stay in the host society. Among national minorities of mixed religious composition, the differences between the Muslim parts of these nationalities are larger than the differences among national groups. There is no sign of value clash between the Muslim minorities and the majority population with respect to democratic values. Differences in democratic values are explained by nationality, not religion.\"],\"language\":\"eng\",\"subjects\":[\"Social Sciences \\u0026 Humanities\"],\"creators\":[],\"publicationdate\":\"2010-02-22\",\"publisher\":\"Taylor \\u0026 Francis\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Trinity\\u0027s Access to Research Archive\"],\"pids\":[{\"value\":\"10.1080/01419870903019544\",\"type\":\"doi\"}],\"instances\":[{\"url\":\"http://hdl.handle.net/2262/50733\",\"license\":\"OPEN\",\"hostedby\":\"Trinity\\u0027s Access to Research Archive\",\"instancetype\":\"\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00567813\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00567813\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00567813\",\"id\":\"oai:HAL:hal-00567813v1\"},\"trust\":0.667176}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Trinity\u0027s Access to Research Archive"},"target_publication_id":{"type":"STRING","value":"oai:www.tara.tcd.ie:2262/50733"},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00567813v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Social Sciences \u0026 Humanities"]},"trust":{"type":"FLOAT","value":0.667176},"target_publication_title":{"type":"STRING","value":"Democracy and Denomination: Democratic values among Muslim minorities and the majority population in Denmark"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2010-02-22"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::210f760a89db30aa72ca258a3483cc7f"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3606437\",\"titles\":[\"Coherent ultrafast spin-dynamics probed in three dimensional topological insulators\"],\"abstracts\":[\"Topological insulators are candidates to open up a novel route in spin based electronics. Different to traditional ferromagnetic materials, where the carrier spin-polarization and magnetization are based on the exchange interaction, the spin properties in topological insulators are based on the coupling of spin- and orbit interaction connected to its momentum. Specific ways to control the spin-polarization with light have been demonstrated: the energy momentum landscape of the Dirac cone provides spin-momentum locking of the charge current and its spin. We investigate a spin-related signal present only during the laser excitation studying real and imaginary part of the complex Kerr angle by disentangling spin and lattice contributions. This coherent signal is only present at the time of the pump-pulses’ light field and can be described in terms of a Raman coherence time. The Raman transition involves states at the bottom edge of the conduction band. We demonstrate a coherent femtosecond control of spin-polarization for electronic states at around the Dirac cone.\"],\"language\":\"eng\",\"subjects\":[\"Article\"],\"creators\":[\"Boschini, F.\",\"Mansurova, M.\",\"Mussler, G.\",\"Kampmeier, J.\",\"Grützmacher, D.\",\"Braun, L.\",\"Katmis, F.\",\"Moodera, J. S.\",\"Dallera, C.\",\"Carpene, E.\"],\"publicationdate\":\"2015-10-01\",\"publisher\":\"Nature Publishing Group\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Scientific Reports\",\"issn\":\"\",\"eissn\":\"2045-2322\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1038/srep15304\",\"type\":\"doi\"},{\"value\":\"PMC4625143\",\"type\":\"pmc\"},{\"value\":\"26510509\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4625143\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/1506.02692\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/1506.02692\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/1506.02692\",\"id\":\"oai:arXiv.org:1506.02692\"},\"trust\":0.6439452}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3606437"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boschini, F.","Mansurova, M.","Mussler, G.","Kampmeier, J.","Grützmacher, D.","Braun, L.","Katmis, F.","Moodera, J. S.","Dallera, C.","Carpene, E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:1506.02692"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Article"]},"trust":{"type":"FLOAT","value":0.6439452},"target_publication_title":{"type":"STRING","value":"Coherent ultrafast spin-dynamics probed in three dimensional topological insulators"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"2015-10-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1506.02692\",\"titles\":[\"Coherent ultrafast spin-dynamics probed in three dimensional topological insulators\"],\"abstracts\":[\" Topological insulators are candidates to open up a novel route in spin based\\nelectronics. Different to traditional ferromagnetic materials, where the\\ncarrier spin-polarization and magnetization are based on the exchange\\ninteraction, the spin properties in topological insulators are based on the\\ncoupling of spin- and orbit interaction connected to its momentum. Specific\\nways to control the spin-polarization with light have been demonstrated: the\\nenergy momentum landscape of the Dirac cone provides spin-momentum locking of\\nthe charge current and its spin. The directionality of spin and momentum, as\\nwell as control with light has been demonstrated. Here we demonstrate a\\ncoherent femtosecond control of spin-polarization for states in the valence\\nband at around the Dirac cone.\\n\",\"Comment: 14 pages, 4 figures\"],\"language\":\"eng\",\"subjects\":[\"Condensed Matter - Mesoscale and Nanoscale Physics\",\"Condensed Matter - Materials Science\"],\"creators\":[\"Boschini, F.\",\"Mansurova, M.\",\"Mussler, G.\",\"Kampmeier, J.\",\"Grützmacher, D.\",\"Braun, L.\",\"Katmis, F.\",\"Moodera, J. S.\",\"Dallera, C.\",\"Carpene, E.\"],\"publicationdate\":\"2015-06-08\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1038/srep15304\",\"type\":\"doi\"},{\"value\":\"PMC4625143\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1506.02692\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC4625143\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4625143\",\"id\":\"oai:europepmc.org:3606437\"},\"trust\":0.9271667}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1506.02692"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boschini, F.","Mansurova, M.","Mussler, G.","Kampmeier, J.","Grützmacher, D.","Braun, L.","Katmis, F.","Moodera, J. S.","Dallera, C.","Carpene, E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3606437"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Condensed Matter - Mesoscale and Nanoscale Physics","Condensed Matter - Materials Science"]},"trust":{"type":"FLOAT","value":0.9271667},"target_publication_title":{"type":"STRING","value":"Coherent ultrafast spin-dynamics probed in three dimensional topological insulators"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2015-06-08"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:1506.02692\",\"titles\":[\"Coherent ultrafast spin-dynamics probed in three dimensional topological insulators\"],\"abstracts\":[\" Topological insulators are candidates to open up a novel route in spin based\\nelectronics. Different to traditional ferromagnetic materials, where the\\ncarrier spin-polarization and magnetization are based on the exchange\\ninteraction, the spin properties in topological insulators are based on the\\ncoupling of spin- and orbit interaction connected to its momentum. Specific\\nways to control the spin-polarization with light have been demonstrated: the\\nenergy momentum landscape of the Dirac cone provides spin-momentum locking of\\nthe charge current and its spin. The directionality of spin and momentum, as\\nwell as control with light has been demonstrated. Here we demonstrate a\\ncoherent femtosecond control of spin-polarization for states in the valence\\nband at around the Dirac cone.\\n\",\"Comment: 14 pages, 4 figures\"],\"language\":\"eng\",\"subjects\":[\"Condensed Matter - Mesoscale and Nanoscale Physics\",\"Condensed Matter - Materials Science\"],\"creators\":[\"Boschini, F.\",\"Mansurova, M.\",\"Mussler, G.\",\"Kampmeier, J.\",\"Grützmacher, D.\",\"Braun, L.\",\"Katmis, F.\",\"Moodera, J. S.\",\"Dallera, C.\",\"Carpene, E.\"],\"publicationdate\":\"2015-06-08\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[{\"value\":\"10.1038/srep15304\",\"type\":\"doi\"},{\"value\":\"26510509\",\"type\":\"pmid\"}],\"instances\":[{\"url\":\"http://arxiv.org/abs/1506.02692\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"26510509\",\"type\":\"pmid\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC4625143\",\"id\":\"oai:europepmc.org:3606437\"},\"trust\":0.9271667}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:1506.02692"},"target_publication_author_list":{"type":"LIST_STRING","value":["Boschini, F.","Mansurova, M.","Mussler, G.","Kampmeier, J.","Grützmacher, D.","Braun, L.","Katmis, F.","Moodera, J. S.","Dallera, C.","Carpene, E."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:3606437"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Condensed Matter - Mesoscale and Nanoscale Physics","Condensed Matter - Materials Science"]},"trust":{"type":"FLOAT","value":0.9271667},"target_publication_title":{"type":"STRING","value":"Coherent ultrafast spin-dynamics probed in three dimensional topological insulators"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2015-06-08"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:3334761\",\"titles\":[\"Association between Portal Vein Thrombosis and Survival in Non-Liver-Transplant Patients with Liver Cirrhosis: A Systematic Review of the Literature\"],\"abstracts\":[\"A systematic review of the literature was performed to analyze the association between portal vein thrombosis (PVT) and survival in non-liver-transplant patients with liver cirrhosis. PubMed, EMBASE, and Cochrane Library databases were searched for all relevant papers which evaluated the prognostic value of PVT in predicting the survival of liver cirrhosis. Meta-analyses were not conducted because the ways of data expression and lengths of follow-up were heterogeneous among studies. Overall, 13 papers were included. The 5-day, 6-week, and 1-year mortality were investigated in 1, 3, and 1 studies, respectively; and all of them were not significantly different between cirrhotic patient with and without PVT. By comparison, the 3-year mortality was reported in 1 study; and it was significantly increased by the presence of PVT. The overall mortality was analyzed in 5 studies; and the association with overall mortality and PVT was significant in 4 studies, but not in another one. However, as for the cirrhotic patients undergoing surgical or interventional shunts, the overall mortality was not significantly associated with the presence of PVT in 4 studies. In conclusion, the presence of PVT might be associated with the long-term mortality in non-liver-transplant patients with liver cirrhosis, but not with the short-term mortality.\"],\"language\":\"eng\",\"subjects\":[\"Review Article\"],\"creators\":[\"Qi, Xingshun\",\"Dai, Junna\",\"Yang, Man\",\"Ren, Weirong\",\"Jia, Jia\",\"Guo, Xiaozhong\"],\"publicationdate\":\"2015-02-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Gastroenterology Research and Practice\",\"issn\":\"1687-6121\",\"eissn\":\"1687-630X\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2015/480842\",\"type\":\"doi\"},{\"value\":\"PMC4355112\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC4355112\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2015/480842\",\"license\":\"OPEN\",\"hostedby\":\"Gastroenterology Research and Practice\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2015/480842\",\"license\":\"OPEN\",\"hostedby\":\"Gastroenterology Research and Practice\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2015/480842\",\"id\":\"oai:doaj.org/article:39bcaf9df00f4361a2ae0617ec6cb668\"},\"trust\":0.7371762}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:3334761"},"target_publication_author_list":{"type":"LIST_STRING","value":["Qi, Xingshun","Dai, Junna","Yang, Man","Ren, Weirong","Jia, Jia","Guo, Xiaozhong"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:39bcaf9df00f4361a2ae0617ec6cb668"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Review Article"]},"trust":{"type":"FLOAT","value":0.7371762},"target_publication_title":{"type":"STRING","value":"Association between Portal Vein Thrombosis and Survival in Non-Liver-Transplant Patients with Liver Cirrhosis: A Systematic Review of the Literature"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2015-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:oai.forksningsdatabasen.dk:39959\",\"titles\":[\"Optical packet switched design with relaxed maximum hardware parameters and high service-class granularity for flexible switch node dimensioning\"],\"abstracts\":[\"This work proposes a quality of service differentiation algorithm, improving the service class granularity and isolation of our recently presented waveband plane based design. The design aims at overcoming potential hardware limitations and increasing the switch node dimensioning flexibility in core networks. Exploiting the wavelength dimension for contention resolution, using partially shared wavelength converter pools, avoids optical buffers and reduces wavelength converter count. These benefits are illustrated by numerical simulations, and are highlighted in a dimensioning study with three service classes.\",\"Copyright: 2004 IEEE. Personal use of this material is permitted. However, permission to reprint/republish this material for advertising or promotional purposes or for creating new collective works for resale or redistribution to servers or lists, or to reuse any copyrighted component of this work in other works must be obtained from the IEEE\"],\"language\":\"eng\",\"subjects\":[],\"creators\":[\"Nord, Martin\"],\"publicationdate\":\"2006-06-22\",\"publisher\":\"IEEE conference proceedings\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research at ASB\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d154402\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Conference object\"},{\"url\":\"http://orbit.dtu.dk/en/publications/optical-packet-switched-design-with-relaxed-maximum-hardware-parameters-and-high-serviceclass-granularity-for-flexible-switch-node-dimensioning(0abbdcf2-97f4-45f0-9a0f-658daa439bee).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/optical-packet-switched-design-with-relaxed-maximum-hardware-parameters-and-high-serviceclass-granularity-for-flexible-switch-node-dimensioning(0abbdcf2-97f4-45f0-9a0f-658daa439bee).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}]},\"provenance\":{\"repositoryName\":\"Online Research Database In Technology\",\"url\":\"http://orbit.dtu.dk/en/publications/optical-packet-switched-design-with-relaxed-maximum-hardware-parameters-and-high-serviceclass-granularity-for-flexible-switch-node-dimensioning(0abbdcf2-97f4-45f0-9a0f-658daa439bee).html\",\"id\":\"oai:pure.atira.dk:publications/0abbdcf2-97f4-45f0-9a0f-658daa439bee\"},\"trust\":0.45576304}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_publication_id":{"type":"STRING","value":"oai:oai.forksningsdatabasen.dk:39959"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nord, Martin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:pure.atira.dk:publications/0abbdcf2-97f4-45f0-9a0f-658daa439bee"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"},"trust":{"type":"FLOAT","value":0.45576304},"target_publication_title":{"type":"STRING","value":"Optical packet switched design with relaxed maximum hardware parameters and high service-class granularity for flexible switch node dimensioning"},"provenance_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_dateofacceptance":{"type":"DATE","value":"2006-06-22"},"target_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:pure.atira.dk:publications/0abbdcf2-97f4-45f0-9a0f-658daa439bee\",\"titles\":[\"Optical packet switched design with relaxed maximum hardware parameters and high service-class granularity for flexible switch node dimensioning\"],\"abstracts\":[],\"language\":\"eng\",\"subjects\":[\"This work proposes a quality of service differentiation algorithm, improving the service class granularity and isolation of our recently presented waveband plane based design. The design aims at overcoming potential hardware limitations and increasing the switch node dimensioning flexibility in core networks. Exploiting the wavelength dimension for contention resolution, using partially shared wavelength converter pools, avoids optical buffers and reduces wavelength converter count. These benefits are illustrated by numerical simulations, and are highlighted in a dimensioning study with three service classes.\"],\"creators\":[\"Nord, Martin\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"IEEE\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Online Research Database In Technology\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/optical-packet-switched-design-with-relaxed-maximum-hardware-parameters-and-high-serviceclass-granularity-for-flexible-switch-node-dimensioning(0abbdcf2-97f4-45f0-9a0f-658daa439bee).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"},{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d154402\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d154402\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"license\":\"OPEN\",\"hostedby\":\"Research at ASB\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d154402\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"id\":\"oai:oai.forksningsdatabasen.dk:39959\"},\"trust\":0.02002722}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_publication_id":{"type":"STRING","value":"oai:pure.atira.dk:publications/0abbdcf2-97f4-45f0-9a0f-658daa439bee"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nord, Martin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:39959"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"target_publication_subject_list":{"type":"LIST_STRING","value":["This work proposes a quality of service differentiation algorithm, improving the service class granularity and isolation of our recently presented waveband plane based design. The design aims at overcoming potential hardware limitations and increasing the switch node dimensioning flexibility in core networks. Exploiting the wavelength dimension for contention resolution, using partially shared wavelength converter pools, avoids optical buffers and reduces wavelength converter count. These benefits are illustrated by numerical simulations, and are highlighted in a dimensioning study with three service classes."]},"trust":{"type":"FLOAT","value":0.02002722},"target_publication_title":{"type":"STRING","value":"Optical packet switched design with relaxed maximum hardware parameters and high service-class granularity for flexible switch node dimensioning"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:pure.atira.dk:publications/0abbdcf2-97f4-45f0-9a0f-658daa439bee\",\"titles\":[\"Optical packet switched design with relaxed maximum hardware parameters and high service-class granularity for flexible switch node dimensioning\"],\"abstracts\":[\"This work proposes a quality of service differentiation algorithm, improving the service class granularity and isolation of our recently presented waveband plane based design. The design aims at overcoming potential hardware limitations and increasing the switch node dimensioning flexibility in core networks. Exploiting the wavelength dimension for contention resolution, using partially shared wavelength converter pools, avoids optical buffers and reduces wavelength converter count. These benefits are illustrated by numerical simulations, and are highlighted in a dimensioning study with three service classes.\",\"Copyright: 2004 IEEE. Personal use of this material is permitted. However, permission to reprint/republish this material for advertising or promotional purposes or for creating new collective works for resale or redistribution to servers or lists, or to reuse any copyrighted component of this work in other works must be obtained from the IEEE\"],\"language\":\"eng\",\"subjects\":[\"This work proposes a quality of service differentiation algorithm, improving the service class granularity and isolation of our recently presented waveband plane based design. The design aims at overcoming potential hardware limitations and increasing the switch node dimensioning flexibility in core networks. Exploiting the wavelength dimension for contention resolution, using partially shared wavelength converter pools, avoids optical buffers and reduces wavelength converter count. These benefits are illustrated by numerical simulations, and are highlighted in a dimensioning study with three service classes.\"],\"creators\":[\"Nord, Martin\"],\"publicationdate\":\"2004-01-01\",\"publisher\":\"IEEE\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Online Research Database In Technology\"],\"pids\":[],\"instances\":[{\"url\":\"http://orbit.dtu.dk/en/publications/optical-packet-switched-design-with-relaxed-maximum-hardware-parameters-and-high-serviceclass-granularity-for-flexible-switch-node-dimensioning(0abbdcf2-97f4-45f0-9a0f-658daa439bee).html\",\"license\":\"OPEN\",\"hostedby\":\"Online Research Database In Technology\",\"instancetype\":\"\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"This work proposes a quality of service differentiation algorithm, improving the service class granularity and isolation of our recently presented waveband plane based design. The design aims at overcoming potential hardware limitations and increasing the switch node dimensioning flexibility in core networks. Exploiting the wavelength dimension for contention resolution, using partially shared wavelength converter pools, avoids optical buffers and reduces wavelength converter count. These benefits are illustrated by numerical simulations, and are highlighted in a dimensioning study with three service classes.\",\"Copyright: 2004 IEEE. Personal use of this material is permitted. However, permission to reprint/republish this material for advertising or promotional purposes or for creating new collective works for resale or redistribution to servers or lists, or to reuse any copyrighted component of this work in other works must be obtained from the IEEE\"]},\"provenance\":{\"repositoryName\":\"Research at ASB\",\"url\":\"http://orbit.dtu.dk/getResource?recordId\\u003d154402\\u0026objectId\\u003d1\\u0026versionId\\u003d1\",\"id\":\"oai:oai.forksningsdatabasen.dk:39959\"},\"trust\":0.061205268}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Online Research Database In Technology"},"target_publication_id":{"type":"STRING","value":"oai:pure.atira.dk:publications/0abbdcf2-97f4-45f0-9a0f-658daa439bee"},"target_publication_author_list":{"type":"LIST_STRING","value":["Nord, Martin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:oai.forksningsdatabasen.dk:39959"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::ac5dd97d698ff2903fb4cb4372866c41"},"target_publication_subject_list":{"type":"LIST_STRING","value":["This work proposes a quality of service differentiation algorithm, improving the service class granularity and isolation of our recently presented waveband plane based design. The design aims at overcoming potential hardware limitations and increasing the switch node dimensioning flexibility in core networks. Exploiting the wavelength dimension for contention resolution, using partially shared wavelength converter pools, avoids optical buffers and reduces wavelength converter count. These benefits are illustrated by numerical simulations, and are highlighted in a dimensioning study with three service classes."]},"trust":{"type":"FLOAT","value":0.061205268},"target_publication_title":{"type":"STRING","value":"Optical packet switched design with relaxed maximum hardware parameters and high service-class granularity for flexible switch node dimensioning"},"provenance_datasource_name":{"type":"STRING","value":"Research at ASB"},"target_dateofacceptance":{"type":"DATE","value":"2004-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::147702db07145348245dc5a2f2fe5683"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:dul:wpaper:06-11rs\",\"titles\":[\"Capital humain et processus de création d\\u0027entreprise: le cas des primo-créateurs wallons\"],\"abstracts\":[\"Ce working paper tente d’identifier, dans le cadre d’une démarche exploratoire et en articulation avec un cadre théorique original, les liens entre la trajectoire socio-professionnelle et le capital humain, défini sur la base des qualifications et de l’expérience professionnelle, d’un ensemble d’individus qui ont (ré)orienté cette trajectoire dans le sens d’un passage à l’entrepreneuriat. Cet ensemble est constitué de primo-créateurs, c’est-à-dire de personnes sans aucune expérience de création d’entreprise antérieure. La thèse défendue par les auteurs est celle d’une articulation forte, au niveau individuel, entre capital humain, tel qu’il peut être appréhendé par le niveau de qualification et l’expérience professionnelle, et dynamique entrepreneuriale. Dans cette optique, trois pistes sont envisagées :- celle des particularités du profil des primo-créateurs, principalement au niveau de ce capital, l’hypothèse étant que ces individus se différencient des non créateurs sur le plan des qualifications ;- celle d’une relation entre sphères d’expérience professionnelle et sphère entrepreneuriale, l’hypothèse étant que le contenu du projet entrepreneurial n’est pas étranger à l’expérience antérieure du créateur ;- celle d’une influence du niveau de qualification et de l’expérience du créateur sur la temporalité du processus de création. Pour ce faire, les données issues de deux larges enquêtes socio-économiques sont analysées en recourant aux outils de la statistique et de l’économétrie.\"],\"language\":\"und\",\"subjects\":[\"primo-créateurs d’entreprise; capital humain; expérience professionnelle; caractéristiques personnelles; durée du processus de création\"],\"creators\":[\"Michele Cincera\",\"Lydia Greunz\",\"Jean-Luc Guyot\",\"Olivier Lohest\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://dipot.ulb.ac.be/dspace/bitstream/2013/9491/1/lg-0019.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/2013/ULB-DIPOT:oai:dipot.ulb.ac.be:2013/9491\",\"license\":\"OPEN\",\"hostedby\":\"DI-fusion\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/2013/ULB-DIPOT:oai:dipot.ulb.ac.be:2013/9491\",\"license\":\"OPEN\",\"hostedby\":\"DI-fusion\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"DI-fusion\",\"url\":\"http://hdl.handle.net/2013/ULB-DIPOT:oai:dipot.ulb.ac.be:2013/9491\",\"id\":\"oai:dipot.ulb.ac.be:2013/9491\"},\"trust\":0.5815523}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:dul:wpaper:06-11rs"},"target_publication_author_list":{"type":"LIST_STRING","value":["Michele Cincera","Lydia Greunz","Jean-Luc Guyot","Olivier Lohest"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:dipot.ulb.ac.be:2013/9491"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::c5866e93cab1776890fe343c9e7063fb"},"target_publication_subject_list":{"type":"LIST_STRING","value":["primo-créateurs d’entreprise; capital humain; expérience professionnelle; caractéristiques personnelles; durée du processus de création"]},"trust":{"type":"FLOAT","value":0.5815523},"target_publication_title":{"type":"STRING","value":"Capital humain et processus de création d\u0027entreprise: le cas des primo-créateurs wallons"},"provenance_datasource_name":{"type":"STRING","value":"DI-fusion"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:dipot.ulb.ac.be:2013/9491\",\"titles\":[\"Capital humain et processus de création d\\u0027entreprise: le cas des primo-créateurs wallons\"],\"abstracts\":[\"Ce working paper tente d’identifier, dans le cadre d’une démarche exploratoire et en articulation avec un cadre théorique original, les liens entre la trajectoire socio-professionnelle et le capital humain, défini sur la base des qualifications et de l’expérience professionnelle, d’un ensemble d’individus qui ont (ré)orienté cette trajectoire dans le sens d’un passage à l’entrepreneuriat. Cet ensemble est constitué de primo-créateurs, c’est-à-dire de personnes sans aucune expérience de création d’entreprise antérieure. La thèse défendue par les auteurs est celle d’une articulation forte, au niveau individuel, entre capital humain, tel qu’il peut être appréhendé par le niveau de qualification et l’expérience professionnelle, et dynamique entrepreneuriale. Dans cette optique, trois pistes sont envisagées :- celle des particularités du profil des primo-créateurs, principalement au niveau de ce capital, l’hypothèse étant que ces individus se différencient des non créateurs sur le plan des qualifications ;- celle d’une relation entre sphères d’expérience professionnelle et sphère entrepreneuriale, l’hypothèse étant que le contenu du projet entrepreneurial n’est pas étranger à l’expérience antérieure du créateur ;- celle d’une influence du niveau de qualification et de l’expérience du créateur sur la temporalité du processus de création. Pour ce faire, les données issues de deux larges enquêtes socio-économiques sont analysées en recourant aux outils de la statistique et de l’économétrie.\",\"info:eu-repo/semantics/published\"],\"language\":\"fra/fre\",\"subjects\":[\"Economie\",\"Labor Demand\",\"J23\",\"Human Capital; Skills; Occupational Choice; Labor Productivity\",\"J24\",\"New Firms; Startups\",\"M13\",\"primo-créateurs d’entreprise\",\"capital humain\",\"expérience professionnelle\",\"caractéristiques personnelles\",\"durée du processus de création\"],\"creators\":[\"Cincera, Michele\",\"Greunz, Lydia\",\"Guyot, Jean-Luc\",\"Lohest, Olivier\"],\"publicationdate\":\"2006-01-01\",\"publisher\":\"Université libre de Bruxelles, DULBEA\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"DI-fusion\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/2013/ULB-DIPOT:oai:dipot.ulb.ac.be:2013/9491\",\"license\":\"OPEN\",\"hostedby\":\"DI-fusion\",\"instancetype\":\"Research\"},{\"url\":\"https://dipot.ulb.ac.be/dspace/bitstream/2013/9491/1/lg-0019.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://dipot.ulb.ac.be/dspace/bitstream/2013/9491/1/lg-0019.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://dipot.ulb.ac.be/dspace/bitstream/2013/9491/1/lg-0019.pdf\",\"id\":\"oai:RePEc:dul:wpaper:06-11rs\"},\"trust\":0.95606935}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"DI-fusion"},"target_publication_id":{"type":"STRING","value":"oai:dipot.ulb.ac.be:2013/9491"},"target_publication_author_list":{"type":"LIST_STRING","value":["Cincera, Michele","Greunz, Lydia","Guyot, Jean-Luc","Lohest, Olivier"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:dul:wpaper:06-11rs"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Economie","Labor Demand","J23","Human Capital; Skills; Occupational Choice; Labor Productivity","J24","New Firms; Startups","M13","primo-créateurs d’entreprise","capital humain","expérience professionnelle","caractéristiques personnelles","durée du processus de création"]},"trust":{"type":"FLOAT","value":0.95606935},"target_publication_title":{"type":"STRING","value":"Capital humain et processus de création d\u0027entreprise: le cas des primo-créateurs wallons"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2006-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::c5866e93cab1776890fe343c9e7063fb"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:telearn.archives-ouvertes.fr:hal-00197212\",\"titles\":[\"Changing the Education Culture through Technology\"],\"abstracts\":[\"Technology has a potentially rich, but largely unrealised, role in teaching and learning. This role is defined variously by what the teacher has available, has had time to learn, or can find an appropriate use for, and by what students have access to, are familiar with, and are willing to use. In all of these ways, technology usually plays an adjunct role to others, more traditional modalities for teaching and learning, including lecture, laboratory, library, textbook, tutorial, and practicum. Researchers perceive problems arising from the significant cultural and organisational differences affecting the management and leadership environment of the modern higher education institutions integrating technology in relation to traditional higher education institutions. This present study describes and analyzes the culture effects in higher education organisations that are challenging the future pre-eminence of the use of technological tools in teaching in higher education. This study tries to explain that, in order to understand opportunities for change in higher education institutions, one must understand that the external environment is by far the most powerful source of internal change. The findings support the view that transformational leadership, collaboration and the classroom culture are three major characteristics of change in higher education institutions, where integrating technology is considered as a way to help the university to be a more effective learning organisation.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:EIAH] Computer Science/Technology for Human Learning\",\"[INFO:EIAH] Informatique/Environnements Informatiques pour l\\u0027Apprentissage Humain\",\"learning technologies\"],\"creators\":[\"Rizek, Nouhad\",\"Choueiri, Elias M.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://telearn.archives-ouvertes.fr/hal-00197212\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://telearn.archives-ouvertes.fr/hal-00197212\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://telearn.archives-ouvertes.fr/hal-00197212\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://telearn.archives-ouvertes.fr/hal-00197212\",\"id\":\"oai:HAL:hal-00197212v1\"},\"trust\":0.08302957}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:telearn.archives-ouvertes.fr:hal-00197212"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rizek, Nouhad","Choueiri, Elias M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00197212v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:EIAH] Computer Science/Technology for Human Learning","[INFO:EIAH] Informatique/Environnements Informatiques pour l\u0027Apprentissage Humain","learning technologies"]},"trust":{"type":"FLOAT","value":0.08302957},"target_publication_title":{"type":"STRING","value":"Changing the Education Culture through Technology"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00197212v1\",\"titles\":[\"Changing the Education Culture through Technology\"],\"abstracts\":[\"Technology has a potentially rich, but largely unrealised, role in teaching and learning. This role is defined variously by what the teacher has available, has had time to learn, or can find an appropriate use for, and by what students have access to, are familiar with, and are willing to use. In all of these ways, technology usually plays an adjunct role to others, more traditional modalities for teaching and learning, including lecture, laboratory, library, textbook, tutorial, and practicum. Researchers perceive problems arising from the significant cultural and organisational differences affecting the management and leadership environment of the modern higher education institutions integrating technology in relation to traditional higher education institutions. This present study describes and analyzes the culture effects in higher education organisations that are challenging the future pre-eminence of the use of technological tools in teaching in higher education. This study tries to explain that, in order to understand opportunities for change in higher education institutions, one must understand that the external environment is by far the most powerful source of internal change. The findings support the view that transformational leadership, collaboration and the classroom culture are three major characteristics of change in higher education institutions, where integrating technology is considered as a way to help the university to be a more effective learning organisation.\"],\"language\":\"eng\",\"subjects\":[\"learning technologies\",\"[INFO.EIAH] Computer Science/Technology for Human Learning\"],\"creators\":[\"Rizek, Nouhad\",\"Choueiri, Elias M.\"],\"publicationdate\":\"2007-01-01\",\"publisher\":\"Kassel University Press\",\"embargoenddate\":\"\",\"contributor\":[\"Computer Science Department ; Notre Dame University\",\"Lebanese University, Faculty of Science ; Lebanese University\",\"Michael E. Auer\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://telearn.archives-ouvertes.fr/hal-00197212\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://telearn.archives-ouvertes.fr/hal-00197212\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://telearn.archives-ouvertes.fr/hal-00197212\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://telearn.archives-ouvertes.fr/hal-00197212\",\"id\":\"oai:telearn.archives-ouvertes.fr:hal-00197212\"},\"trust\":0.74901444}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00197212v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Rizek, Nouhad","Choueiri, Elias M."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:telearn.archives-ouvertes.fr:hal-00197212"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["learning technologies","[INFO.EIAH] Computer Science/Technology for Human Learning"]},"trust":{"type":"FLOAT","value":0.74901444},"target_publication_title":{"type":"STRING","value":"Changing the Education Culture through Technology"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2007-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:ub.rug.nl:dbi/48c4d76f51172\",\"titles\":[\"Electrostatic Hyperfine Interactions in Amorphous Intermetallic Alloys\"],\"abstracts\":[\"Ten gevolge van de wisselwerking van een kern met zijn omgeving verschuiven energieniveaus van de kern. Deze zeer kleine verschuivingen kunnen met behulp van het Mössbauer effect gemeten worden. In principe kunnen we 3 hyperfijn interacties meten: de isomerie verschuiving, de quadrupool splitsing en het magnetisch hyperfine veld. De isomerie verschuiving is het gevolg van de wisselwerking tussen de kernlading en de electronendichtheid ter plaatse van de kern. Wanneer de ladingsverdeling rond de kern symmerisch is, ontstaat een electrische veldgradient en het quadrupool moment van de kern. Het magnetische hyperfijnveld, tenslotte, wisselwerkt met het magnetische moment van de kern. Als gevolg van deze interactie vertonen de kernniveaus de zogenaamde Zeeman-splitsing. ...\\n\\nZie: Samenvatting\"],\"language\":\"eng\",\"subjects\":[\"Quadrupoolmomenten\",\"Hyperfijninteracties, Isomerieverschuiving , Legeringen, Amo; Proefschriften (vorm); elektronenstructuur van atomen en moleculen: theorie\"],\"creators\":[\"Scholte, Paulus Maria Lambertus Otto\"],\"publicationdate\":\"1987-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"University of Groningen Digital Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://irs.ub.rug.nl/ppn/036975494\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Doctoral thesis\"},{\"url\":\"https://www.rug.nl/research/portal/en/publications/electrostatic-hyperfine-interactions-in-amorphous-intermetallic-alloys(4ed4b92d-3040-48a2-bf27-95aca2291f77).html\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Doctoral thesis\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://www.rug.nl/research/portal/en/publications/electrostatic-hyperfine-interactions-in-amorphous-intermetallic-alloys(4ed4b92d-3040-48a2-bf27-95aca2291f77).html\",\"license\":\"OPEN\",\"hostedby\":\"University of Groningen Digital Archive\",\"instancetype\":\"Doctoral thesis\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"https://www.rug.nl/research/portal/en/publications/electrostatic-hyperfine-interactions-in-amorphous-intermetallic-alloys(4ed4b92d-3040-48a2-bf27-95aca2291f77).html\",\"id\":\"rug:oai:pure.rug.nl:publications/4ed4b92d-3040-48a2-bf27-95aca2291f77\"},\"trust\":0.332178}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"University of Groningen Digital Archive"},"target_publication_id":{"type":"STRING","value":"oai:ub.rug.nl:dbi/48c4d76f51172"},"target_publication_author_list":{"type":"LIST_STRING","value":["Scholte, Paulus Maria Lambertus Otto"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["rug:oai:pure.rug.nl:publications/4ed4b92d-3040-48a2-bf27-95aca2291f77"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Quadrupoolmomenten","Hyperfijninteracties, Isomerieverschuiving , Legeringen, Amo; Proefschriften (vorm); elektronenstructuur van atomen en moleculen: theorie"]},"trust":{"type":"FLOAT","value":0.332178},"target_publication_title":{"type":"STRING","value":"Electrostatic Hyperfine Interactions in Amorphous Intermetallic Alloys"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1987-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::a2557a7b2e94197ff767970b67041697"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00634022\",\"titles\":[\"Symbolic computation of minimal cuts for AltaRica models\"],\"abstracts\":[\"AltaRica tools developped at LaBRI have always been dedicated to model- checking thus focusing analysis onto functional aspects of systems. In this re- port we are interested by a problem encountered in safety assessment or diag- nosis domains: the computation of all failure scenarios. This problem consists to determine preponderant sequences of failures of elementary components that lead the system into a critical state. While model-checkers usually look for a counter-example of a good property of the system, here we want to compute all the most significant paths to a bad state. The solution presented in this paper is mainly a mix of existing works taken from the literature; however, in order to be able to treat large models, we have also implemented a preprocessing algorithm that permits to simplify the input model w.r.t. to specified unwanted states.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_DS] Computer Science/Data Structures and Algorithms\",\"[INFO:INFO_DS] Informatique/Algorithme et structure de données\",\"[INFO:INFO_SC] Computer Science/Symbolic Computation\",\"[INFO:INFO_SC] Informatique/Calcul formel\",\"[INFO:INFO_IA] Computer Science/Computer Aided Engineering\",\"[INFO:INFO_IA] Informatique/Ingénierie assistée par ordinateur\",\"[INFO:INFO_MO] Computer Science/Modeling and Simulation\",\"[INFO:INFO_MO] Informatique/Modélisation et simulation\",\"Model-based Risk Assessment\",\"Failure cenarios\",\"Minimal cuts\",\"Decision Diagrams\",\"RLDD\"],\"creators\":[\"Griffault, Alain\",\"Point, Gérald\",\"Kuntz, Fabien\",\"Vincent, Aymeric\"],\"publicationdate\":\"2011-09-30\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00634022\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00634022\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00634022\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00634022\",\"id\":\"oai:HAL:hal-00634022v1\"},\"trust\":0.8772432}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00634022"},"target_publication_author_list":{"type":"LIST_STRING","value":["Griffault, Alain","Point, Gérald","Kuntz, Fabien","Vincent, Aymeric"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00634022v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_DS] Computer Science/Data Structures and Algorithms","[INFO:INFO_DS] Informatique/Algorithme et structure de données","[INFO:INFO_SC] Computer Science/Symbolic Computation","[INFO:INFO_SC] Informatique/Calcul formel","[INFO:INFO_IA] Computer Science/Computer Aided Engineering","[INFO:INFO_IA] Informatique/Ingénierie assistée par ordinateur","[INFO:INFO_MO] Computer Science/Modeling and Simulation","[INFO:INFO_MO] Informatique/Modélisation et simulation","Model-based Risk Assessment","Failure cenarios","Minimal cuts","Decision Diagrams","RLDD"]},"trust":{"type":"FLOAT","value":0.8772432},"target_publication_title":{"type":"STRING","value":"Symbolic computation of minimal cuts for AltaRica models"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-09-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00634022v1\",\"titles\":[\"Symbolic computation of minimal cuts for AltaRica models\"],\"abstracts\":[\"65 pages\",\"AltaRica tools developped at LaBRI have always been dedicated to model- checking thus focusing analysis onto functional aspects of systems. In this re- port we are interested by a problem encountered in safety assessment or diag- nosis domains: the computation of all failure scenarios. This problem consists to determine preponderant sequences of failures of elementary components that lead the system into a critical state. While model-checkers usually look for a counter-example of a good property of the system, here we want to compute all the most significant paths to a bad state. The solution presented in this paper is mainly a mix of existing works taken from the literature; however, in order to be able to treat large models, we have also implemented a preprocessing algorithm that permits to simplify the input model w.r.t. to specified unwanted states.\"],\"language\":\"eng\",\"subjects\":[\"Model-based Risk Assessment\",\"Failure cenarios\",\"Minimal cuts\",\"Decision Diagrams\",\"RLDD\",\"[INFO.INFO-DS] Computer Science/Data Structures and Algorithms\",\"[INFO.INFO-SC] Computer Science/Symbolic Computation\",\"[INFO.INFO-IA] Computer Science/Computer Aided Engineering\",\"[INFO.INFO-MO] Computer Science/Modeling and Simulation\"],\"creators\":[\"Griffault, Alain\",\"Point, Gérald\",\"Kuntz, Fabien\",\"Vincent, Aymeric\"],\"publicationdate\":\"2011-09-30\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire Bordelais de Recherche en Informatique (LaBRI) ; Université Sciences et Technologies - Bordeaux I - Université Victor Segalen - Bordeaux II - École Nationale Supérieure d\\u0027Électronique, Informatique et Radiocommunications de Bordeaux (ENSEIRB) - CNRS\",\"This work has been realized under the grant of Thales Avionics (Toulouse).\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00634022\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00634022\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00634022\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"External research report\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00634022\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00634022\"},\"trust\":0.7733627}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00634022v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Griffault, Alain","Point, Gérald","Kuntz, Fabien","Vincent, Aymeric"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00634022"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Model-based Risk Assessment","Failure cenarios","Minimal cuts","Decision Diagrams","RLDD","[INFO.INFO-DS] Computer Science/Data Structures and Algorithms","[INFO.INFO-SC] Computer Science/Symbolic Computation","[INFO.INFO-IA] Computer Science/Computer Aided Engineering","[INFO.INFO-MO] Computer Science/Modeling and Simulation"]},"trust":{"type":"FLOAT","value":0.7733627},"target_publication_title":{"type":"STRING","value":"Symbolic computation of minimal cuts for AltaRica models"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-09-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uni-tuebingen.de-tobias-lib:3248\",\"titles\":[\"Sorting it out: Technical barriers to trade and industry productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\\n\"],\"language\":\"eng\",\"subjects\":[\"Welthandel\",\"Außenhandel\",\"Kosten\",\"Heterogeneous firms\",\"international trade\",\"single European market\",\"technical barriers to trade\",\"regulatory costs\",\"Economics\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Jung, Benjamin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"04 Wirtschaftswissenschaftliche Fakultät. Bereich 04 Wirtschaftswissenschaftliche Fakultät (ohne Institutszuordnung)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Hochschulschriftenserver der Universität Tübingen\"],\"pids\":[],\"instances\":[{\"url\":\"http://tobias-lib.uni-tuebingen.de/volltexte/2008/3248/\",\"license\":\"OPEN\",\"hostedby\":\"Hochschulschriftenserver der Universität Tübingen\",\"instancetype\":\"Research\"},{\"url\":\"http://www.fiw.ac.at/fileadmin/Documents/Publikationen/Working_Paper/N_014-felbermayr.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.fiw.ac.at/fileadmin/Documents/Publikationen/Working_Paper/N_014-felbermayr.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.fiw.ac.at/fileadmin/Documents/Publikationen/Working_Paper/N_014-felbermayr.pdf\",\"id\":\"oai:RePEc:wsr:wpaper:y:2008:i:014\"},\"trust\":0.66965914}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Hochschulschriftenserver der Universität Tübingen"},"target_publication_id":{"type":"STRING","value":"oai:uni-tuebingen.de-tobias-lib:3248"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Jung, Benjamin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wsr:wpaper:y:2008:i:014"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Welthandel","Außenhandel","Kosten","Heterogeneous firms","international trade","single European market","technical barriers to trade","regulatory costs","Economics"]},"trust":{"type":"FLOAT","value":0.66965914},"target_publication_title":{"type":"STRING","value":"Sorting it out: Technical barriers to trade and industry productivity"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::500e75a036dc2d7d2fec5da1b71d36cc"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uni-tuebingen.de-tobias-lib:3248\",\"titles\":[\"Sorting it out: Technical barriers to trade and industry productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\\n\"],\"language\":\"eng\",\"subjects\":[\"Welthandel\",\"Außenhandel\",\"Kosten\",\"Heterogeneous firms\",\"international trade\",\"single European market\",\"technical barriers to trade\",\"regulatory costs\",\"Economics\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Jung, Benjamin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"04 Wirtschaftswissenschaftliche Fakultät. Bereich 04 Wirtschaftswissenschaftliche Fakultät (ohne Institutszuordnung)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Hochschulschriftenserver der Universität Tübingen\"],\"pids\":[],\"instances\":[{\"url\":\"http://tobias-lib.uni-tuebingen.de/volltexte/2008/3248/\",\"license\":\"OPEN\",\"hostedby\":\"Hochschulschriftenserver der Universität Tübingen\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/40320\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/40320\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/40320\",\"id\":\"oai:econstor.eu:10419/40320\"},\"trust\":0.59287184}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Hochschulschriftenserver der Universität Tübingen"},"target_publication_id":{"type":"STRING","value":"oai:uni-tuebingen.de-tobias-lib:3248"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Jung, Benjamin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/40320"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Welthandel","Außenhandel","Kosten","Heterogeneous firms","international trade","single European market","technical barriers to trade","regulatory costs","Economics"]},"trust":{"type":"FLOAT","value":0.59287184},"target_publication_title":{"type":"STRING","value":"Sorting it out: Technical barriers to trade and industry productivity"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::500e75a036dc2d7d2fec5da1b71d36cc"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uni-tuebingen.de-tobias-lib:3248\",\"titles\":[\"Sorting it out: Technical barriers to trade and industry productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\\n\"],\"language\":\"eng\",\"subjects\":[\"Welthandel\",\"Außenhandel\",\"Kosten\",\"Heterogeneous firms\",\"international trade\",\"single European market\",\"technical barriers to trade\",\"regulatory costs\",\"Economics\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Jung, Benjamin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"04 Wirtschaftswissenschaftliche Fakultät. Bereich 04 Wirtschaftswissenschaftliche Fakultät (ohne Institutszuordnung)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Hochschulschriftenserver der Universität Tübingen\"],\"pids\":[],\"instances\":[{\"url\":\"http://tobias-lib.uni-tuebingen.de/volltexte/2008/3248/\",\"license\":\"OPEN\",\"hostedby\":\"Hochschulschriftenserver der Universität Tübingen\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/121015\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/121015\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/121015\",\"id\":\"oai:econstor.eu:10419/121015\"},\"trust\":0.92375255}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Hochschulschriftenserver der Universität Tübingen"},"target_publication_id":{"type":"STRING","value":"oai:uni-tuebingen.de-tobias-lib:3248"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Jung, Benjamin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/121015"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Welthandel","Außenhandel","Kosten","Heterogeneous firms","international trade","single European market","technical barriers to trade","regulatory costs","Economics"]},"trust":{"type":"FLOAT","value":0.92375255},"target_publication_title":{"type":"STRING","value":"Sorting it out: Technical barriers to trade and industry productivity"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::500e75a036dc2d7d2fec5da1b71d36cc"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:uni-tuebingen.de-tobias-lib:3248\",\"titles\":[\"Sorting it out: Technical barriers to trade and industry productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\\n\"],\"language\":\"eng\",\"subjects\":[\"Welthandel\",\"Außenhandel\",\"Kosten\",\"Heterogeneous firms\",\"international trade\",\"single European market\",\"technical barriers to trade\",\"regulatory costs\",\"Economics\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Jung, Benjamin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"04 Wirtschaftswissenschaftliche Fakultät. Bereich 04 Wirtschaftswissenschaftliche Fakultät (ohne Institutszuordnung)\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Hochschulschriftenserver der Universität Tübingen\"],\"pids\":[],\"instances\":[{\"url\":\"http://tobias-lib.uni-tuebingen.de/volltexte/2008/3248/\",\"license\":\"OPEN\",\"hostedby\":\"Hochschulschriftenserver der Universität Tübingen\",\"instancetype\":\"Research\"},{\"url\":\"http://econstor.eu/bitstream/10419/40320/1/558768490.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/40320/1/558768490.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econstor.eu/bitstream/10419/40320/1/558768490.pdf\",\"id\":\"oai:RePEc:zbw:tuedps:315\"},\"trust\":0.41731697}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Hochschulschriftenserver der Universität Tübingen"},"target_publication_id":{"type":"STRING","value":"oai:uni-tuebingen.de-tobias-lib:3248"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Jung, Benjamin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:zbw:tuedps:315"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Welthandel","Außenhandel","Kosten","Heterogeneous firms","international trade","single European market","technical barriers to trade","regulatory costs","Economics"]},"trust":{"type":"FLOAT","value":0.41731697},"target_publication_title":{"type":"STRING","value":"Sorting it out: Technical barriers to trade and industry productivity"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::500e75a036dc2d7d2fec5da1b71d36cc"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:wsr:wpaper:y:2008:i:014\",\"titles\":[\"Sorting It Out: Technical Barriers to Trade and Industry Productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\"],\"language\":\"und\",\"subjects\":[\"Heterogenous Firms, Single European Market, International Trade, Technical Barriers to Trade, Regulatory Costs\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Benjamin Jung\"],\"publicationdate\":\"2008-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.fiw.ac.at/fileadmin/Documents/Publikationen/Working_Paper/N_014-felbermayr.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://tobias-lib.uni-tuebingen.de/volltexte/2008/3248/\",\"license\":\"OPEN\",\"hostedby\":\"Hochschulschriftenserver der Universität Tübingen\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://tobias-lib.uni-tuebingen.de/volltexte/2008/3248/\",\"license\":\"OPEN\",\"hostedby\":\"Hochschulschriftenserver der Universität Tübingen\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Hochschulschriftenserver der Universität Tübingen\",\"url\":\"http://tobias-lib.uni-tuebingen.de/volltexte/2008/3248/\",\"id\":\"oai:uni-tuebingen.de-tobias-lib:3248\"},\"trust\":0.61851853}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:wsr:wpaper:y:2008:i:014"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Benjamin Jung"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:uni-tuebingen.de-tobias-lib:3248"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::500e75a036dc2d7d2fec5da1b71d36cc"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Heterogenous Firms, Single European Market, International Trade, Technical Barriers to Trade, Regulatory Costs"]},"trust":{"type":"FLOAT","value":0.61851853},"target_publication_title":{"type":"STRING","value":"Sorting It Out: Technical Barriers to Trade and Industry Productivity"},"provenance_datasource_name":{"type":"STRING","value":"Hochschulschriftenserver der Universität Tübingen"},"target_dateofacceptance":{"type":"DATE","value":"2008-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:wsr:wpaper:y:2008:i:014\",\"titles\":[\"Sorting It Out: Technical Barriers to Trade and Industry Productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\"],\"language\":\"und\",\"subjects\":[\"Heterogenous Firms, Single European Market, International Trade, Technical Barriers to Trade, Regulatory Costs\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Benjamin Jung\"],\"publicationdate\":\"2008-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.fiw.ac.at/fileadmin/Documents/Publikationen/Working_Paper/N_014-felbermayr.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/40320\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/40320\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/40320\",\"id\":\"oai:econstor.eu:10419/40320\"},\"trust\":0.2092582}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:wsr:wpaper:y:2008:i:014"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Benjamin Jung"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/40320"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Heterogenous Firms, Single European Market, International Trade, Technical Barriers to Trade, Regulatory Costs"]},"trust":{"type":"FLOAT","value":0.2092582},"target_publication_title":{"type":"STRING","value":"Sorting It Out: Technical Barriers to Trade and Industry Productivity"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2008-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:wsr:wpaper:y:2008:i:014\",\"titles\":[\"Sorting It Out: Technical Barriers to Trade and Industry Productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\"],\"language\":\"und\",\"subjects\":[\"Heterogenous Firms, Single European Market, International Trade, Technical Barriers to Trade, Regulatory Costs\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Benjamin Jung\"],\"publicationdate\":\"2008-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.fiw.ac.at/fileadmin/Documents/Publikationen/Working_Paper/N_014-felbermayr.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/121015\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/121015\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/121015\",\"id\":\"oai:econstor.eu:10419/121015\"},\"trust\":0.23287857}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:wsr:wpaper:y:2008:i:014"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Benjamin Jung"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/121015"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Heterogenous Firms, Single European Market, International Trade, Technical Barriers to Trade, Regulatory Costs"]},"trust":{"type":"FLOAT","value":0.23287857},"target_publication_title":{"type":"STRING","value":"Sorting It Out: Technical Barriers to Trade and Industry Productivity"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2008-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:wsr:wpaper:y:2008:i:014\",\"titles\":[\"Sorting It Out: Technical Barriers to Trade and Industry Productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\"],\"language\":\"und\",\"subjects\":[\"Heterogenous Firms, Single European Market, International Trade, Technical Barriers to Trade, Regulatory Costs\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Benjamin Jung\"],\"publicationdate\":\"2008-02-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www.fiw.ac.at/fileadmin/Documents/Publikationen/Working_Paper/N_014-felbermayr.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://econstor.eu/bitstream/10419/40320/1/558768490.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/40320/1/558768490.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econstor.eu/bitstream/10419/40320/1/558768490.pdf\",\"id\":\"oai:RePEc:zbw:tuedps:315\"},\"trust\":0.06455207}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:wsr:wpaper:y:2008:i:014"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Benjamin Jung"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:zbw:tuedps:315"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Heterogenous Firms, Single European Market, International Trade, Technical Barriers to Trade, Regulatory Costs"]},"trust":{"type":"FLOAT","value":0.06455207},"target_publication_title":{"type":"STRING","value":"Sorting It Out: Technical Barriers to Trade and Industry Productivity"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-02-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/40320\",\"titles\":[\"Sorting it out: Technical barriers to trade and industry productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\"],\"language\":\"eng\",\"subjects\":[\"F12\",\"F13\",\"F15\",\"ddc:330\",\"heterogeneous firms\",\"international trade\",\"single European market\",\"technical barriers to trade\",\"regulatory costs\",\"Nichttarifäre Handelshemmnisse\",\"Industriegüteraußenhandel\",\"Verarbeitendes Gewerbe\",\"Außenhandelsliberalisierung\",\"Produktivität\",\"Theorie\",\"EU-Staaten\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Jung, Benjamin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"Univ., Wirtschaftswiss. Fak. Tübingen\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/40320\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://tobias-lib.uni-tuebingen.de/volltexte/2008/3248/\",\"license\":\"OPEN\",\"hostedby\":\"Hochschulschriftenserver der Universität Tübingen\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://tobias-lib.uni-tuebingen.de/volltexte/2008/3248/\",\"license\":\"OPEN\",\"hostedby\":\"Hochschulschriftenserver der Universität Tübingen\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Hochschulschriftenserver der Universität Tübingen\",\"url\":\"http://tobias-lib.uni-tuebingen.de/volltexte/2008/3248/\",\"id\":\"oai:uni-tuebingen.de-tobias-lib:3248\"},\"trust\":0.044514835}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/40320"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Jung, Benjamin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:uni-tuebingen.de-tobias-lib:3248"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::500e75a036dc2d7d2fec5da1b71d36cc"},"target_publication_subject_list":{"type":"LIST_STRING","value":["F12","F13","F15","ddc:330","heterogeneous firms","international trade","single European market","technical barriers to trade","regulatory costs","Nichttarifäre Handelshemmnisse","Industriegüteraußenhandel","Verarbeitendes Gewerbe","Außenhandelsliberalisierung","Produktivität","Theorie","EU-Staaten"]},"trust":{"type":"FLOAT","value":0.044514835},"target_publication_title":{"type":"STRING","value":"Sorting it out: Technical barriers to trade and industry productivity"},"provenance_datasource_name":{"type":"STRING","value":"Hochschulschriftenserver der Universität Tübingen"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/40320\",\"titles\":[\"Sorting it out: Technical barriers to trade and industry productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\"],\"language\":\"eng\",\"subjects\":[\"F12\",\"F13\",\"F15\",\"ddc:330\",\"heterogeneous firms\",\"international trade\",\"single European market\",\"technical barriers to trade\",\"regulatory costs\",\"Nichttarifäre Handelshemmnisse\",\"Industriegüteraußenhandel\",\"Verarbeitendes Gewerbe\",\"Außenhandelsliberalisierung\",\"Produktivität\",\"Theorie\",\"EU-Staaten\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Jung, Benjamin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"Univ., Wirtschaftswiss. Fak. Tübingen\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/40320\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.fiw.ac.at/fileadmin/Documents/Publikationen/Working_Paper/N_014-felbermayr.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.fiw.ac.at/fileadmin/Documents/Publikationen/Working_Paper/N_014-felbermayr.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.fiw.ac.at/fileadmin/Documents/Publikationen/Working_Paper/N_014-felbermayr.pdf\",\"id\":\"oai:RePEc:wsr:wpaper:y:2008:i:014\"},\"trust\":0.058303535}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/40320"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Jung, Benjamin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wsr:wpaper:y:2008:i:014"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["F12","F13","F15","ddc:330","heterogeneous firms","international trade","single European market","technical barriers to trade","regulatory costs","Nichttarifäre Handelshemmnisse","Industriegüteraußenhandel","Verarbeitendes Gewerbe","Außenhandelsliberalisierung","Produktivität","Theorie","EU-Staaten"]},"trust":{"type":"FLOAT","value":0.058303535},"target_publication_title":{"type":"STRING","value":"Sorting it out: Technical barriers to trade and industry productivity"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/40320\",\"titles\":[\"Sorting it out: Technical barriers to trade and industry productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\"],\"language\":\"eng\",\"subjects\":[\"F12\",\"F13\",\"F15\",\"ddc:330\",\"heterogeneous firms\",\"international trade\",\"single European market\",\"technical barriers to trade\",\"regulatory costs\",\"Nichttarifäre Handelshemmnisse\",\"Industriegüteraußenhandel\",\"Verarbeitendes Gewerbe\",\"Außenhandelsliberalisierung\",\"Produktivität\",\"Theorie\",\"EU-Staaten\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Jung, Benjamin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"Univ., Wirtschaftswiss. Fak. Tübingen\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/40320\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/121015\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/121015\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/121015\",\"id\":\"oai:econstor.eu:10419/121015\"},\"trust\":0.054533124}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/40320"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Jung, Benjamin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/121015"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["F12","F13","F15","ddc:330","heterogeneous firms","international trade","single European market","technical barriers to trade","regulatory costs","Nichttarifäre Handelshemmnisse","Industriegüteraußenhandel","Verarbeitendes Gewerbe","Außenhandelsliberalisierung","Produktivität","Theorie","EU-Staaten"]},"trust":{"type":"FLOAT","value":0.054533124},"target_publication_title":{"type":"STRING","value":"Sorting it out: Technical barriers to trade and industry productivity"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/40320\",\"titles\":[\"Sorting it out: Technical barriers to trade and industry productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\"],\"language\":\"eng\",\"subjects\":[\"F12\",\"F13\",\"F15\",\"ddc:330\",\"heterogeneous firms\",\"international trade\",\"single European market\",\"technical barriers to trade\",\"regulatory costs\",\"Nichttarifäre Handelshemmnisse\",\"Industriegüteraußenhandel\",\"Verarbeitendes Gewerbe\",\"Außenhandelsliberalisierung\",\"Produktivität\",\"Theorie\",\"EU-Staaten\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Jung, Benjamin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"Univ., Wirtschaftswiss. Fak. Tübingen\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/40320\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://econstor.eu/bitstream/10419/40320/1/558768490.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/40320/1/558768490.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econstor.eu/bitstream/10419/40320/1/558768490.pdf\",\"id\":\"oai:RePEc:zbw:tuedps:315\"},\"trust\":0.63493574}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/40320"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Jung, Benjamin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:zbw:tuedps:315"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["F12","F13","F15","ddc:330","heterogeneous firms","international trade","single European market","technical barriers to trade","regulatory costs","Nichttarifäre Handelshemmnisse","Industriegüteraußenhandel","Verarbeitendes Gewerbe","Außenhandelsliberalisierung","Produktivität","Theorie","EU-Staaten"]},"trust":{"type":"FLOAT","value":0.63493574},"target_publication_title":{"type":"STRING","value":"Sorting it out: Technical barriers to trade and industry productivity"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/121015\",\"titles\":[\"Sorting It Out: Technical Barriers to Trade and Industry Productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\"],\"language\":\"eng\",\"subjects\":[\"F12\",\"F13\",\"F15\",\"ddc:330\",\"Heterogenous Firms\",\"Single European Market\",\"International Trade\",\"Technical Barriers to Trade\",\"Regulatory Costs\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Jung, Benjamin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"FIW - Research Centre International Economics Vienna\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/121015\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://tobias-lib.uni-tuebingen.de/volltexte/2008/3248/\",\"license\":\"OPEN\",\"hostedby\":\"Hochschulschriftenserver der Universität Tübingen\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://tobias-lib.uni-tuebingen.de/volltexte/2008/3248/\",\"license\":\"OPEN\",\"hostedby\":\"Hochschulschriftenserver der Universität Tübingen\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Hochschulschriftenserver der Universität Tübingen\",\"url\":\"http://tobias-lib.uni-tuebingen.de/volltexte/2008/3248/\",\"id\":\"oai:uni-tuebingen.de-tobias-lib:3248\"},\"trust\":0.8601288}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/121015"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Jung, Benjamin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:uni-tuebingen.de-tobias-lib:3248"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::500e75a036dc2d7d2fec5da1b71d36cc"},"target_publication_subject_list":{"type":"LIST_STRING","value":["F12","F13","F15","ddc:330","Heterogenous Firms","Single European Market","International Trade","Technical Barriers to Trade","Regulatory Costs"]},"trust":{"type":"FLOAT","value":0.8601288},"target_publication_title":{"type":"STRING","value":"Sorting It Out: Technical Barriers to Trade and Industry Productivity"},"provenance_datasource_name":{"type":"STRING","value":"Hochschulschriftenserver der Universität Tübingen"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/121015\",\"titles\":[\"Sorting It Out: Technical Barriers to Trade and Industry Productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\"],\"language\":\"eng\",\"subjects\":[\"F12\",\"F13\",\"F15\",\"ddc:330\",\"Heterogenous Firms\",\"Single European Market\",\"International Trade\",\"Technical Barriers to Trade\",\"Regulatory Costs\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Jung, Benjamin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"FIW - Research Centre International Economics Vienna\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/121015\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://www.fiw.ac.at/fileadmin/Documents/Publikationen/Working_Paper/N_014-felbermayr.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.fiw.ac.at/fileadmin/Documents/Publikationen/Working_Paper/N_014-felbermayr.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.fiw.ac.at/fileadmin/Documents/Publikationen/Working_Paper/N_014-felbermayr.pdf\",\"id\":\"oai:RePEc:wsr:wpaper:y:2008:i:014\"},\"trust\":0.29277456}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/121015"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Jung, Benjamin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wsr:wpaper:y:2008:i:014"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["F12","F13","F15","ddc:330","Heterogenous Firms","Single European Market","International Trade","Technical Barriers to Trade","Regulatory Costs"]},"trust":{"type":"FLOAT","value":0.29277456},"target_publication_title":{"type":"STRING","value":"Sorting It Out: Technical Barriers to Trade and Industry Productivity"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/121015\",\"titles\":[\"Sorting It Out: Technical Barriers to Trade and Industry Productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\"],\"language\":\"eng\",\"subjects\":[\"F12\",\"F13\",\"F15\",\"ddc:330\",\"Heterogenous Firms\",\"Single European Market\",\"International Trade\",\"Technical Barriers to Trade\",\"Regulatory Costs\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Jung, Benjamin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"FIW - Research Centre International Economics Vienna\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/121015\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://hdl.handle.net/10419/40320\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/40320\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/40320\",\"id\":\"oai:econstor.eu:10419/40320\"},\"trust\":0.88043696}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/121015"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Jung, Benjamin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/40320"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["F12","F13","F15","ddc:330","Heterogenous Firms","Single European Market","International Trade","Technical Barriers to Trade","Regulatory Costs"]},"trust":{"type":"FLOAT","value":0.88043696},"target_publication_title":{"type":"STRING","value":"Sorting It Out: Technical Barriers to Trade and Industry Productivity"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/121015\",\"titles\":[\"Sorting It Out: Technical Barriers to Trade and Industry Productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\"],\"language\":\"eng\",\"subjects\":[\"F12\",\"F13\",\"F15\",\"ddc:330\",\"Heterogenous Firms\",\"Single European Market\",\"International Trade\",\"Technical Barriers to Trade\",\"Regulatory Costs\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Jung, Benjamin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"FIW - Research Centre International Economics Vienna\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/121015\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://econstor.eu/bitstream/10419/40320/1/558768490.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/40320/1/558768490.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econstor.eu/bitstream/10419/40320/1/558768490.pdf\",\"id\":\"oai:RePEc:zbw:tuedps:315\"},\"trust\":0.47467756}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/121015"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Jung, Benjamin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:zbw:tuedps:315"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["F12","F13","F15","ddc:330","Heterogenous Firms","Single European Market","International Trade","Technical Barriers to Trade","Regulatory Costs"]},"trust":{"type":"FLOAT","value":0.47467756},"target_publication_title":{"type":"STRING","value":"Sorting It Out: Technical Barriers to Trade and Industry Productivity"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:zbw:tuedps:315\",\"titles\":[\"Sorting it out: Technical barriers to trade and industry productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\"],\"language\":\"und\",\"subjects\":[\"heterogeneous firms,international trade,single European market,technical barriers to trade,regulatory costs\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Jung, Benjamin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/40320/1/558768490.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://tobias-lib.uni-tuebingen.de/volltexte/2008/3248/\",\"license\":\"OPEN\",\"hostedby\":\"Hochschulschriftenserver der Universität Tübingen\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://tobias-lib.uni-tuebingen.de/volltexte/2008/3248/\",\"license\":\"OPEN\",\"hostedby\":\"Hochschulschriftenserver der Universität Tübingen\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"Hochschulschriftenserver der Universität Tübingen\",\"url\":\"http://tobias-lib.uni-tuebingen.de/volltexte/2008/3248/\",\"id\":\"oai:uni-tuebingen.de-tobias-lib:3248\"},\"trust\":0.8300077}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:zbw:tuedps:315"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Jung, Benjamin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:uni-tuebingen.de-tobias-lib:3248"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::500e75a036dc2d7d2fec5da1b71d36cc"},"target_publication_subject_list":{"type":"LIST_STRING","value":["heterogeneous firms,international trade,single European market,technical barriers to trade,regulatory costs"]},"trust":{"type":"FLOAT","value":0.8300077},"target_publication_title":{"type":"STRING","value":"Sorting it out: Technical barriers to trade and industry productivity"},"provenance_datasource_name":{"type":"STRING","value":"Hochschulschriftenserver der Universität Tübingen"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:zbw:tuedps:315\",\"titles\":[\"Sorting it out: Technical barriers to trade and industry productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\"],\"language\":\"und\",\"subjects\":[\"heterogeneous firms,international trade,single European market,technical barriers to trade,regulatory costs\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Jung, Benjamin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/40320/1/558768490.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www.fiw.ac.at/fileadmin/Documents/Publikationen/Working_Paper/N_014-felbermayr.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www.fiw.ac.at/fileadmin/Documents/Publikationen/Working_Paper/N_014-felbermayr.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www.fiw.ac.at/fileadmin/Documents/Publikationen/Working_Paper/N_014-felbermayr.pdf\",\"id\":\"oai:RePEc:wsr:wpaper:y:2008:i:014\"},\"trust\":0.64361894}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:zbw:tuedps:315"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Jung, Benjamin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wsr:wpaper:y:2008:i:014"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["heterogeneous firms,international trade,single European market,technical barriers to trade,regulatory costs"]},"trust":{"type":"FLOAT","value":0.64361894},"target_publication_title":{"type":"STRING","value":"Sorting it out: Technical barriers to trade and industry productivity"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:zbw:tuedps:315\",\"titles\":[\"Sorting it out: Technical barriers to trade and industry productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\"],\"language\":\"und\",\"subjects\":[\"heterogeneous firms,international trade,single European market,technical barriers to trade,regulatory costs\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Jung, Benjamin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/40320/1/558768490.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/40320\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/40320\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/40320\",\"id\":\"oai:econstor.eu:10419/40320\"},\"trust\":0.22985262}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:zbw:tuedps:315"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Jung, Benjamin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/40320"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["heterogeneous firms,international trade,single European market,technical barriers to trade,regulatory costs"]},"trust":{"type":"FLOAT","value":0.22985262},"target_publication_title":{"type":"STRING","value":"Sorting it out: Technical barriers to trade and industry productivity"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:zbw:tuedps:315\",\"titles\":[\"Sorting it out: Technical barriers to trade and industry productivity\"],\"abstracts\":[\"Trade economists traditionally study the effect of lower variable trade costs. While increasingly important politically, technical barriers to trade (TBTs) have received less attention. Viewing TBTs as fixed regulatory costs related to the entry into export markets, we use a model with heterogeneous firms, trade in differentiated goods, and variable external economies of scale to sort out the rich interactions between TBT reform, input diversity, firm-level productivity, and aggregate productivity. We calibrate the model for 14 industries in order to clarify the theoretical ambiguities. Overall, our results tend to suggest beneficial effects of TBT reform but also reveal interesting sectoral variation.\"],\"language\":\"und\",\"subjects\":[\"heterogeneous firms,international trade,single European market,technical barriers to trade,regulatory costs\"],\"creators\":[\"Felbermayr, Gabriel J.\",\"Jung, Benjamin\"],\"publicationdate\":\"2008-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/40320/1/558768490.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/121015\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/121015\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/121015\",\"id\":\"oai:econstor.eu:10419/121015\"},\"trust\":0.49577665}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:zbw:tuedps:315"},"target_publication_author_list":{"type":"LIST_STRING","value":["Felbermayr, Gabriel J.","Jung, Benjamin"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/121015"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["heterogeneous firms,international trade,single European market,technical barriers to trade,regulatory costs"]},"trust":{"type":"FLOAT","value":0.49577665},"target_publication_title":{"type":"STRING","value":"Sorting it out: Technical barriers to trade and industry productivity"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2008-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:doc.utwente.nl:66772\",\"titles\":[\"Value Added Web: Integrating WWW with a TINA Service Management platform\"],\"abstracts\":[\"One of the most spectacular developments of this decade is the enormous growth of the Internet. One of the most popular services of the Internet is the World Wide Web (WWW). It may be expected that the Web will be used to provide more sophisticated services, e.g., video on demand. Customers will be prepared to pay for such services, because of the exclusive content and the quality of the (broadband) transport network needed to transfer the information. Consequently, we need a way to manage these services, without violating the ease of use provided by current WWW. In this paper we present a solution based on TINA\\u0027s business model. We introduce the value added Web (VAW), which is an integration of the WWW with TINA service management. This combination adds the benefits of the TINA business model to the WWW. A VAW session appears as a normal WWW session, except that it allows charging for specific content and the setup of connections with an agreed quality of service. The VAW business model assumes that users only have a direct relation with a retailer and that the retailer is responsible for charging. This paper describes the rationale behind VAW and the design and implementation of a prototype of VAW.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Halteren, Aart\",\"Nieuwenhuis, Lambert J. M.\",\"Schenk, Mike R.\",\"Wegdam, Maarten\"],\"publicationdate\":\"1999-01-01\",\"publisher\":\"IEEE Communications Society\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Universiteit Twente Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://purl.utwente.nl/publications/66772\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Article\"},{\"url\":\"http://purl.utwente.nl/publications/66772\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://purl.utwente.nl/publications/66772\",\"license\":\"OPEN\",\"hostedby\":\"Universiteit Twente Repository\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"http://purl.utwente.nl/publications/66772\",\"id\":\"ut:oai:doc.utwente.nl:66772\"},\"trust\":0.04776907}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Universiteit Twente Repository"},"target_publication_id":{"type":"STRING","value":"oai:doc.utwente.nl:66772"},"target_publication_author_list":{"type":"LIST_STRING","value":["Halteren, Aart","Nieuwenhuis, Lambert J. M.","Schenk, Mike R.","Wegdam, Maarten"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["ut:oai:doc.utwente.nl:66772"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.04776907},"target_publication_title":{"type":"STRING","value":"Value Added Web: Integrating WWW with a TINA Service Management platform"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1999-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8dd48d6a2e2cad213179a3992c0be53c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:mpra.ub.uni-muenchen.de:15538\",\"titles\":[\"Electric Cars and Oil Prices\"],\"abstracts\":[\"This paper studies the joint dynamics of oil prices and interest in electric cars, measured as the volume of Google searches for related phrases. Not surprisingly, I find that oil price shocks predict increases in Google searches for electric cars. Much more surprisingly, I also find that an increase in Google searches predicts declines in oil prices. The high level of public interest in electric cars between April and August of 2008 can explain approximately half of the decline in oil prices during the second half of 2008. These findings are significant because they show that oil markets respond to developments related to alternative technologies. I investigate several hypotheses explaining these results.\"],\"language\":\"eng\",\"subjects\":[\"G1 - General Financial Markets\",\"Q5 - Environmental Economics\",\"Q4 - Energy\"],\"creators\":[\"Azar, Jose\"],\"publicationdate\":\"2009-08-06\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Munich RePEc Personal Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/15538/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"},{\"url\":\"https://mpra.ub.uni-muenchen.de/15538/1/MPRA_paper_15538.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/15538/1/MPRA_paper_15538.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"https://mpra.ub.uni-muenchen.de/15538/1/MPRA_paper_15538.pdf\",\"id\":\"oai:RePEc:pra:mprapa:15538\"},\"trust\":0.8870628}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_publication_id":{"type":"STRING","value":"oai:mpra.ub.uni-muenchen.de:15538"},"target_publication_author_list":{"type":"LIST_STRING","value":["Azar, Jose"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:pra:mprapa:15538"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["G1 - General Financial Markets","Q5 - Environmental Economics","Q4 - Energy"]},"trust":{"type":"FLOAT","value":0.8870628},"target_publication_title":{"type":"STRING","value":"Electric Cars and Oil Prices"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-08-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:pra:mprapa:15538\",\"titles\":[\"Electric Cars and Oil Prices\"],\"abstracts\":[\"This paper studies the joint dynamics of oil prices and interest in electric cars, measured as the volume of Google searches for related phrases. Not surprisingly, I find that oil price shocks predict increases in Google searches for electric cars. Much more surprisingly, I also find that an increase in Google searches predicts declines in oil prices. The high level of public interest in electric cars between April and August of 2008 can explain approximately half of the decline in oil prices during the second half of 2008. These findings are significant because they show that oil markets respond to developments related to alternative technologies. I investigate several hypotheses explaining these results.\"],\"language\":\"und\",\"subjects\":[\"Oil prices; crude oil; electric cars; electric vehicles; Google Trends; Google Insights;\"],\"creators\":[\"Azar, Jose\"],\"publicationdate\":\"2009-08-06\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"https://mpra.ub.uni-muenchen.de/15538/1/MPRA_paper_15538.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://mpra.ub.uni-muenchen.de/15538/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://mpra.ub.uni-muenchen.de/15538/\",\"license\":\"OPEN\",\"hostedby\":\"Munich RePEc Personal Archive\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"Munich RePEc Personal Archive\",\"url\":\"http://mpra.ub.uni-muenchen.de/15538/\",\"id\":\"oai:mpra.ub.uni-muenchen.de:15538\"},\"trust\":0.30178148}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:pra:mprapa:15538"},"target_publication_author_list":{"type":"LIST_STRING","value":["Azar, Jose"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:mpra.ub.uni-muenchen.de:15538"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7501e5d4da87ac39d782741cd794002d"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Oil prices; crude oil; electric cars; electric vehicles; Google Trends; Google Insights;"]},"trust":{"type":"FLOAT","value":0.30178148},"target_publication_title":{"type":"STRING","value":"Electric Cars and Oil Prices"},"provenance_datasource_name":{"type":"STRING","value":"Munich RePEc Personal Archive"},"target_dateofacceptance":{"type":"DATE","value":"2009-08-06"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:zbw:zeiwps:b092002\",\"titles\":[\"Monetary policy in the Euro area: Lessons from the first years\"],\"abstracts\":[\"This paper investigates in a consistent semi-structural empirical framework three current issues of monetary policy in the euro area. First, regarding policy transmission we offer a three-stage procedure to combine the efficient estimation of economic structure prior to EMU with current ECB monetary policy. Second, we test whether the regime change leads – before or after – EMU to structural instability. Third, we investigate the stance of monetary policy in Europe. We compare a “counterfactual” ECB reaction function based on average interest rates prior to EMU with actual ECB policy. Furthermore, we compare actual ECB policy with interest rate projections using Bundesbank reaction functions and euroland data.\"],\"language\":\"und\",\"subjects\":[\"European Monetary Union,Monetary policy,Semi-structural modelling,Reaction function,Taylor rule,Transmission mechanism\"],\"creators\":[\"Clausen, Volker\",\"Hayo, Bernd\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/39450/1/350397783.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://repec.org/res2003/Hayo.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repec.org/res2003/Hayo.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://repec.org/res2003/Hayo.pdf\",\"id\":\"oai:RePEc:ecj:ac2003:103\"},\"trust\":0.8851123}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:zbw:zeiwps:b092002"},"target_publication_author_list":{"type":"LIST_STRING","value":["Clausen, Volker","Hayo, Bernd"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ecj:ac2003:103"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["European Monetary Union,Monetary policy,Semi-structural modelling,Reaction function,Taylor rule,Transmission mechanism"]},"trust":{"type":"FLOAT","value":0.8851123},"target_publication_title":{"type":"STRING","value":"Monetary policy in the Euro area: Lessons from the first years"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:zbw:zeiwps:b092002\",\"titles\":[\"Monetary policy in the Euro area: Lessons from the first years\"],\"abstracts\":[\"This paper investigates in a consistent semi-structural empirical framework three current issues of monetary policy in the euro area. First, regarding policy transmission we offer a three-stage procedure to combine the efficient estimation of economic structure prior to EMU with current ECB monetary policy. Second, we test whether the regime change leads – before or after – EMU to structural instability. Third, we investigate the stance of monetary policy in Europe. We compare a “counterfactual” ECB reaction function based on average interest rates prior to EMU with actual ECB policy. Furthermore, we compare actual ECB policy with interest rate projections using Bundesbank reaction functions and euroland data.\"],\"language\":\"und\",\"subjects\":[\"European Monetary Union,Monetary policy,Semi-structural modelling,Reaction function,Taylor rule,Transmission mechanism\"],\"creators\":[\"Clausen, Volker\",\"Hayo, Bernd\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/39450/1/350397783.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://econwpa.repec.org/eps/mac/papers/0205/0205006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econwpa.repec.org/eps/mac/papers/0205/0205006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econwpa.repec.org/eps/mac/papers/0205/0205006.pdf\",\"id\":\"oai:RePEc:wpa:wuwpma:0205006\"},\"trust\":0.68051517}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:zbw:zeiwps:b092002"},"target_publication_author_list":{"type":"LIST_STRING","value":["Clausen, Volker","Hayo, Bernd"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wpa:wuwpma:0205006"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["European Monetary Union,Monetary policy,Semi-structural modelling,Reaction function,Taylor rule,Transmission mechanism"]},"trust":{"type":"FLOAT","value":0.68051517},"target_publication_title":{"type":"STRING","value":"Monetary policy in the Euro area: Lessons from the first years"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:zbw:zeiwps:b092002\",\"titles\":[\"Monetary policy in the Euro area: Lessons from the first years\"],\"abstracts\":[\"This paper investigates in a consistent semi-structural empirical framework three current issues of monetary policy in the euro area. First, regarding policy transmission we offer a three-stage procedure to combine the efficient estimation of economic structure prior to EMU with current ECB monetary policy. Second, we test whether the regime change leads – before or after – EMU to structural instability. Third, we investigate the stance of monetary policy in Europe. We compare a “counterfactual” ECB reaction function based on average interest rates prior to EMU with actual ECB policy. Furthermore, we compare actual ECB policy with interest rate projections using Bundesbank reaction functions and euroland data.\"],\"language\":\"und\",\"subjects\":[\"European Monetary Union,Monetary policy,Semi-structural modelling,Reaction function,Taylor rule,Transmission mechanism\"],\"creators\":[\"Clausen, Volker\",\"Hayo, Bernd\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/39450/1/350397783.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/39450\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/39450\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/39450\",\"id\":\"oai:econstor.eu:10419/39450\"},\"trust\":0.6351134}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:zbw:zeiwps:b092002"},"target_publication_author_list":{"type":"LIST_STRING","value":["Clausen, Volker","Hayo, Bernd"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/39450"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["European Monetary Union,Monetary policy,Semi-structural modelling,Reaction function,Taylor rule,Transmission mechanism"]},"trust":{"type":"FLOAT","value":0.6351134},"target_publication_title":{"type":"STRING","value":"Monetary policy in the Euro area: Lessons from the first years"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ecj:ac2003:103\",\"titles\":[\"Monetary Policy in the Euro Area - Lessons from the First Years\"],\"abstracts\":[\"This paper investigates in a consistent semi-structural empirical framework three current issues of monetary policy in the euro area. First, regarding policy transmission we offer a three-stage procedure to combine the efficient estimation of economic structure prior to EMU with current ECB monetary policy. Second, we test whether the regime change leads Ð before or after Ð EMU to structural instability. Third, we investigate the stance of monetary policy in Europe. We compare a \\\"counterfactual\\\" ECB reaction function based on average interest rates prior to EMU with actual ECB policy. Furthermore, we compare actual ECB policy with interest rate projections using Bundesbank reaction functions and euroland data.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hayo, Bernd\",\"Volker Clausen\"],\"publicationdate\":\"2003-06-04\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://repec.org/res2003/Hayo.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://econstor.eu/bitstream/10419/39450/1/350397783.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/39450/1/350397783.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econstor.eu/bitstream/10419/39450/1/350397783.pdf\",\"id\":\"oai:RePEc:zbw:zeiwps:b092002\"},\"trust\":0.38070387}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ecj:ac2003:103"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hayo, Bernd","Volker Clausen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:zbw:zeiwps:b092002"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.38070387},"target_publication_title":{"type":"STRING","value":"Monetary Policy in the Euro Area - Lessons from the First Years"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2003-06-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ecj:ac2003:103\",\"titles\":[\"Monetary Policy in the Euro Area - Lessons from the First Years\"],\"abstracts\":[\"This paper investigates in a consistent semi-structural empirical framework three current issues of monetary policy in the euro area. First, regarding policy transmission we offer a three-stage procedure to combine the efficient estimation of economic structure prior to EMU with current ECB monetary policy. Second, we test whether the regime change leads Ð before or after Ð EMU to structural instability. Third, we investigate the stance of monetary policy in Europe. We compare a \\\"counterfactual\\\" ECB reaction function based on average interest rates prior to EMU with actual ECB policy. Furthermore, we compare actual ECB policy with interest rate projections using Bundesbank reaction functions and euroland data.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hayo, Bernd\",\"Volker Clausen\"],\"publicationdate\":\"2003-06-04\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://repec.org/res2003/Hayo.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://econwpa.repec.org/eps/mac/papers/0205/0205006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econwpa.repec.org/eps/mac/papers/0205/0205006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econwpa.repec.org/eps/mac/papers/0205/0205006.pdf\",\"id\":\"oai:RePEc:wpa:wuwpma:0205006\"},\"trust\":0.676524}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ecj:ac2003:103"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hayo, Bernd","Volker Clausen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wpa:wuwpma:0205006"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"trust":{"type":"FLOAT","value":0.676524},"target_publication_title":{"type":"STRING","value":"Monetary Policy in the Euro Area - Lessons from the First Years"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2003-06-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:ecj:ac2003:103\",\"titles\":[\"Monetary Policy in the Euro Area - Lessons from the First Years\"],\"abstracts\":[\"This paper investigates in a consistent semi-structural empirical framework three current issues of monetary policy in the euro area. First, regarding policy transmission we offer a three-stage procedure to combine the efficient estimation of economic structure prior to EMU with current ECB monetary policy. Second, we test whether the regime change leads Ð before or after Ð EMU to structural instability. Third, we investigate the stance of monetary policy in Europe. We compare a \\\"counterfactual\\\" ECB reaction function based on average interest rates prior to EMU with actual ECB policy. Furthermore, we compare actual ECB policy with interest rate projections using Bundesbank reaction functions and euroland data.\"],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Hayo, Bernd\",\"Volker Clausen\"],\"publicationdate\":\"2003-06-04\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://repec.org/res2003/Hayo.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/39450\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/39450\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/39450\",\"id\":\"oai:econstor.eu:10419/39450\"},\"trust\":0.4869935}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:ecj:ac2003:103"},"target_publication_author_list":{"type":"LIST_STRING","value":["Hayo, Bernd","Volker Clausen"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/39450"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"trust":{"type":"FLOAT","value":0.4869935},"target_publication_title":{"type":"STRING","value":"Monetary Policy in the Euro Area - Lessons from the First Years"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2003-06-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:wpa:wuwpma:0205006\",\"titles\":[\"Monetary Policy in the Euro Area - Lessons from the First Years\"],\"abstracts\":[\"This paper investigates in a consistent semi-structural empirical framework three current issues of monetary policy in the euro area. First, regarding policy transmission we offer a three-stage procedure to combine the efficient estimation of economic structure prior to EMU with current ECB monetary policy. Second, we test whether the regime change leads - before or after - EMU to structural instability. Third, we investigate the stance of monetary policy in Europe. We compare a \\\"counterfactual\\\" ECB reaction function based on average interest rates prior to EMU with actual ECB policy. Furthermore, we compare actual ECB policy with interest rate projections using Bundesbank reaction functions and euroland data.\"],\"language\":\"und\",\"subjects\":[\"European Monetary Union, Monetary policy, Semi-structural modelling, Reaction function, Taylor rule, Transmission mechanism\"],\"creators\":[\"Volker Clausen\",\"Bernd Hayo\"],\"publicationdate\":\"2002-05-24\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econwpa.repec.org/eps/mac/papers/0205/0205006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://econstor.eu/bitstream/10419/39450/1/350397783.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/39450/1/350397783.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econstor.eu/bitstream/10419/39450/1/350397783.pdf\",\"id\":\"oai:RePEc:zbw:zeiwps:b092002\"},\"trust\":0.34332734}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:wpa:wuwpma:0205006"},"target_publication_author_list":{"type":"LIST_STRING","value":["Volker Clausen","Bernd Hayo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:zbw:zeiwps:b092002"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["European Monetary Union, Monetary policy, Semi-structural modelling, Reaction function, Taylor rule, Transmission mechanism"]},"trust":{"type":"FLOAT","value":0.34332734},"target_publication_title":{"type":"STRING","value":"Monetary Policy in the Euro Area - Lessons from the First Years"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2002-05-24"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:wpa:wuwpma:0205006\",\"titles\":[\"Monetary Policy in the Euro Area - Lessons from the First Years\"],\"abstracts\":[\"This paper investigates in a consistent semi-structural empirical framework three current issues of monetary policy in the euro area. First, regarding policy transmission we offer a three-stage procedure to combine the efficient estimation of economic structure prior to EMU with current ECB monetary policy. Second, we test whether the regime change leads - before or after - EMU to structural instability. Third, we investigate the stance of monetary policy in Europe. We compare a \\\"counterfactual\\\" ECB reaction function based on average interest rates prior to EMU with actual ECB policy. Furthermore, we compare actual ECB policy with interest rate projections using Bundesbank reaction functions and euroland data.\"],\"language\":\"und\",\"subjects\":[\"European Monetary Union, Monetary policy, Semi-structural modelling, Reaction function, Taylor rule, Transmission mechanism\"],\"creators\":[\"Volker Clausen\",\"Bernd Hayo\"],\"publicationdate\":\"2002-05-24\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econwpa.repec.org/eps/mac/papers/0205/0205006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://repec.org/res2003/Hayo.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repec.org/res2003/Hayo.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://repec.org/res2003/Hayo.pdf\",\"id\":\"oai:RePEc:ecj:ac2003:103\"},\"trust\":0.61956394}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:wpa:wuwpma:0205006"},"target_publication_author_list":{"type":"LIST_STRING","value":["Volker Clausen","Bernd Hayo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ecj:ac2003:103"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["European Monetary Union, Monetary policy, Semi-structural modelling, Reaction function, Taylor rule, Transmission mechanism"]},"trust":{"type":"FLOAT","value":0.61956394},"target_publication_title":{"type":"STRING","value":"Monetary Policy in the Euro Area - Lessons from the First Years"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2002-05-24"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:wpa:wuwpma:0205006\",\"titles\":[\"Monetary Policy in the Euro Area - Lessons from the First Years\"],\"abstracts\":[\"This paper investigates in a consistent semi-structural empirical framework three current issues of monetary policy in the euro area. First, regarding policy transmission we offer a three-stage procedure to combine the efficient estimation of economic structure prior to EMU with current ECB monetary policy. Second, we test whether the regime change leads - before or after - EMU to structural instability. Third, we investigate the stance of monetary policy in Europe. We compare a \\\"counterfactual\\\" ECB reaction function based on average interest rates prior to EMU with actual ECB policy. Furthermore, we compare actual ECB policy with interest rate projections using Bundesbank reaction functions and euroland data.\"],\"language\":\"und\",\"subjects\":[\"European Monetary Union, Monetary policy, Semi-structural modelling, Reaction function, Taylor rule, Transmission mechanism\"],\"creators\":[\"Volker Clausen\",\"Bernd Hayo\"],\"publicationdate\":\"2002-05-24\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://econwpa.repec.org/eps/mac/papers/0205/0205006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://hdl.handle.net/10419/39450\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hdl.handle.net/10419/39450\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"EconStor\",\"url\":\"http://hdl.handle.net/10419/39450\",\"id\":\"oai:econstor.eu:10419/39450\"},\"trust\":0.70855206}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:wpa:wuwpma:0205006"},"target_publication_author_list":{"type":"LIST_STRING","value":["Volker Clausen","Bernd Hayo"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:econstor.eu:10419/39450"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"},"target_publication_subject_list":{"type":"LIST_STRING","value":["European Monetary Union, Monetary policy, Semi-structural modelling, Reaction function, Taylor rule, Transmission mechanism"]},"trust":{"type":"FLOAT","value":0.70855206},"target_publication_title":{"type":"STRING","value":"Monetary Policy in the Euro Area - Lessons from the First Years"},"provenance_datasource_name":{"type":"STRING","value":"EconStor"},"target_dateofacceptance":{"type":"DATE","value":"2002-05-24"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/39450\",\"titles\":[\"Monetary policy in the Euro area: Lessons from the first years\"],\"abstracts\":[\"This paper investigates in a consistent semi-structural empirical framework three current issues of monetary policy in the euro area. First, regarding policy transmission we offer a three-stage procedure to combine the efficient estimation of economic structure prior to EMU with current ECB monetary policy. Second, we test whether the regime change leads – before or after – EMU to structural instability. Third, we investigate the stance of monetary policy in Europe. We compare a “counterfactual” ECB reaction function based on average interest rates prior to EMU with actual ECB policy. Furthermore, we compare actual ECB policy with interest rate projections using Bundesbank reaction functions and euroland data.\"],\"language\":\"eng\",\"subjects\":[\"E52\",\"F41\",\"ddc:330\",\"European Monetary Union\",\"Monetary policy\",\"Semi-structural modelling\",\"Reaction function\",\"Taylor rule\",\"Transmission mechanism\",\"Geldpolitik\",\"Europäische Wirtschafts- und Währungsunion\",\"Transmissionsmechanismus\",\"Taylor-Regel\",\"Schätzung\"],\"creators\":[\"Clausen, Volker\",\"Hayo, Bernd\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"ZEI Bonn\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/39450\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://econstor.eu/bitstream/10419/39450/1/350397783.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econstor.eu/bitstream/10419/39450/1/350397783.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econstor.eu/bitstream/10419/39450/1/350397783.pdf\",\"id\":\"oai:RePEc:zbw:zeiwps:b092002\"},\"trust\":0.7072991}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/39450"},"target_publication_author_list":{"type":"LIST_STRING","value":["Clausen, Volker","Hayo, Bernd"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:zbw:zeiwps:b092002"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["E52","F41","ddc:330","European Monetary Union","Monetary policy","Semi-structural modelling","Reaction function","Taylor rule","Transmission mechanism","Geldpolitik","Europäische Wirtschafts- und Währungsunion","Transmissionsmechanismus","Taylor-Regel","Schätzung"]},"trust":{"type":"FLOAT","value":0.7072991},"target_publication_title":{"type":"STRING","value":"Monetary policy in the Euro area: Lessons from the first years"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/39450\",\"titles\":[\"Monetary policy in the Euro area: Lessons from the first years\"],\"abstracts\":[\"This paper investigates in a consistent semi-structural empirical framework three current issues of monetary policy in the euro area. First, regarding policy transmission we offer a three-stage procedure to combine the efficient estimation of economic structure prior to EMU with current ECB monetary policy. Second, we test whether the regime change leads – before or after – EMU to structural instability. Third, we investigate the stance of monetary policy in Europe. We compare a “counterfactual” ECB reaction function based on average interest rates prior to EMU with actual ECB policy. Furthermore, we compare actual ECB policy with interest rate projections using Bundesbank reaction functions and euroland data.\"],\"language\":\"eng\",\"subjects\":[\"E52\",\"F41\",\"ddc:330\",\"European Monetary Union\",\"Monetary policy\",\"Semi-structural modelling\",\"Reaction function\",\"Taylor rule\",\"Transmission mechanism\",\"Geldpolitik\",\"Europäische Wirtschafts- und Währungsunion\",\"Transmissionsmechanismus\",\"Taylor-Regel\",\"Schätzung\"],\"creators\":[\"Clausen, Volker\",\"Hayo, Bernd\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"ZEI Bonn\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/39450\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://repec.org/res2003/Hayo.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://repec.org/res2003/Hayo.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://repec.org/res2003/Hayo.pdf\",\"id\":\"oai:RePEc:ecj:ac2003:103\"},\"trust\":0.08743638}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/39450"},"target_publication_author_list":{"type":"LIST_STRING","value":["Clausen, Volker","Hayo, Bernd"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:ecj:ac2003:103"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["E52","F41","ddc:330","European Monetary Union","Monetary policy","Semi-structural modelling","Reaction function","Taylor rule","Transmission mechanism","Geldpolitik","Europäische Wirtschafts- und Währungsunion","Transmissionsmechanismus","Taylor-Regel","Schätzung"]},"trust":{"type":"FLOAT","value":0.08743638},"target_publication_title":{"type":"STRING","value":"Monetary policy in the Euro area: Lessons from the first years"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:econstor.eu:10419/39450\",\"titles\":[\"Monetary policy in the Euro area: Lessons from the first years\"],\"abstracts\":[\"This paper investigates in a consistent semi-structural empirical framework three current issues of monetary policy in the euro area. First, regarding policy transmission we offer a three-stage procedure to combine the efficient estimation of economic structure prior to EMU with current ECB monetary policy. Second, we test whether the regime change leads – before or after – EMU to structural instability. Third, we investigate the stance of monetary policy in Europe. We compare a “counterfactual” ECB reaction function based on average interest rates prior to EMU with actual ECB policy. Furthermore, we compare actual ECB policy with interest rate projections using Bundesbank reaction functions and euroland data.\"],\"language\":\"eng\",\"subjects\":[\"E52\",\"F41\",\"ddc:330\",\"European Monetary Union\",\"Monetary policy\",\"Semi-structural modelling\",\"Reaction function\",\"Taylor rule\",\"Transmission mechanism\",\"Geldpolitik\",\"Europäische Wirtschafts- und Währungsunion\",\"Transmissionsmechanismus\",\"Taylor-Regel\",\"Schätzung\"],\"creators\":[\"Clausen, Volker\",\"Hayo, Bernd\"],\"publicationdate\":\"2002-01-01\",\"publisher\":\"ZEI Bonn\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"EconStor\"],\"pids\":[],\"instances\":[{\"url\":\"http://hdl.handle.net/10419/39450\",\"license\":\"OPEN\",\"hostedby\":\"EconStor\",\"instancetype\":\"Research\"},{\"url\":\"http://econwpa.repec.org/eps/mac/papers/0205/0205006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://econwpa.repec.org/eps/mac/papers/0205/0205006.pdf\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://econwpa.repec.org/eps/mac/papers/0205/0205006.pdf\",\"id\":\"oai:RePEc:wpa:wuwpma:0205006\"},\"trust\":0.23715788}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"EconStor"},"target_publication_id":{"type":"STRING","value":"oai:econstor.eu:10419/39450"},"target_publication_author_list":{"type":"LIST_STRING","value":["Clausen, Volker","Hayo, Bernd"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:wpa:wuwpma:0205006"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["E52","F41","ddc:330","European Monetary Union","Monetary policy","Semi-structural modelling","Reaction function","Taylor rule","Transmission mechanism","Geldpolitik","Europäische Wirtschafts- und Währungsunion","Transmissionsmechanismus","Taylor-Regel","Schätzung"]},"trust":{"type":"FLOAT","value":0.23715788},"target_publication_title":{"type":"STRING","value":"Monetary policy in the Euro area: Lessons from the first years"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2002-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::7fea637fd6d02b8f0adf6f7dc36aed93"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2854749\",\"titles\":[\"Update on Minimally Invasive Glaucoma Surgery (MIGS) and New Implants\"],\"abstracts\":[\"Traditional glaucoma surgery has been challenged by the advent of innovative techniques and new implants in the past few years. There is an increasing demand for safer glaucoma surgery offering patients a timely surgical solution in reducing intraocular pressure (IOP) and improving their quality of life. The new procedures and devices aim to lower IOP with a higher safety profile than fistulating surgery (trabeculectomy/drainage tubes) and are collectively termed “minimally invasive glaucoma surgery (MIGS).” The main advantage of MIGS is that they are nonpenetrating and/or bleb-independent procedures, thus avoiding the major complications of fistulating surgery related to blebs and hypotony. In this review, the clinical results of the latest techniques and devices are presented by their approach, ab interno (trabeculotomy, excimer laser trabeculotomy, trabecular microbypass, suprachoroidal shunt, and intracanalicular scaffold) and ab externo (canaloplasty, Stegmann Canal Expander, suprachoroidal Gold microshunt). The drawback of MIGS is that some of these procedures produce a limited IOP reduction compared to trabeculectomy. Currently, MIGS is performed in glaucoma patients with early to moderate disease and preferably in combination with cataract surgery.\"],\"language\":\"eng\",\"subjects\":[\"Review Article\"],\"creators\":[\"Brandão, Lívia M.\",\"Grieshaber, Matthias C.\"],\"publicationdate\":\"2013-11-01\",\"publisher\":\"Hindawi Publishing Corporation\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"Journal of Ophthalmology\",\"issn\":\"2090-004X\",\"eissn\":\"2090-0058\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"10.1155/2013/705915\",\"type\":\"doi\"},{\"value\":\"PMC3863473\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC3863473\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://dx.doi.org/10.1155/2013/705915\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Ophthalmology\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://dx.doi.org/10.1155/2013/705915\",\"license\":\"OPEN\",\"hostedby\":\"Journal of Ophthalmology\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"DOAJ-Articles\",\"url\":\"http://dx.doi.org/10.1155/2013/705915\",\"id\":\"oai:doaj.org/article:4a2cdef1c5b94d54b3039a0016fe96f5\"},\"trust\":0.5957271}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2854749"},"target_publication_author_list":{"type":"LIST_STRING","value":["Brandão, Lívia M.","Grieshaber, Matthias C."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:doaj.org/article:4a2cdef1c5b94d54b3039a0016fe96f5"]},"provenance_datasource_id":{"type":"STRING","value":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Review Article"]},"trust":{"type":"FLOAT","value":0.5957271},"target_publication_title":{"type":"STRING","value":"Update on Minimally Invasive Glaucoma Surgery (MIGS) and New Implants"},"provenance_datasource_name":{"type":"STRING","value":"DOAJ-Articles"},"target_dateofacceptance":{"type":"DATE","value":"2013-11-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:gr-qc/9802017\",\"titles\":[\"Matters of Gravity, the newsletter of the APS TG on gravitation\"],\"abstracts\":[\" Contents:\\n *News:\\n Topical group news, by Jim Isenberg\\n April 1997 Joint APS/AAPT Meeting, GTG program, by Abhay Ashtekar\\n Formation of the Gravitational-Wave International Committee, by Sam Finn\\n The 1997 Xanthopoulos award, by Abhay Asthekar\\n We hear that..., by Jorge Pullin\\n *Research Briefs:\\n LIGO project update, by David Shoemaker\\n The search for frame-dragging by NS and BH\\u0027s, by Sharon Morsink\\n Gamma-ray bursts, recent developments, by Peter Meszaros\\n Status of the Binary Black hole Grand Challenge, by Richard Matzner\\n *Conference Reports:\\n Quantum gravity at GR15, by Don Marolf\\n GR Classical, by John Friedman\\n An Experimentalist\\u0027s Idiosyncratic Report on GR15, by Peter Saulson\\n Bangalore gravitational wave meeting, by Sharon Morsink\\n Bangalore quantum gravity meeting, by Domenico Giulini\\n Cleveland cosmology-topology workshop, by Neil Cornish\\n Quantum Gravity in the Southern Cone II, by Carmen Nunez\\n Baltimore AMS meeting, by Kirill Krasnov\\n\",\"Comment: 30 pages LaTeX, uses html.sty, available (now also in html!) at\\n http://vishnu.nirvana.phys.psu.edu/mog.html\"],\"language\":\"eng\",\"subjects\":[\"General Relativity and Quantum Cosmology\"],\"creators\":[\"Pullin, Jorge\"],\"publicationdate\":\"1998-02-09\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9802017\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/gr-qc/9702010\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9702010\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/gr-qc/9702010\",\"id\":\"oai:arXiv.org:gr-qc/9702010\"},\"trust\":0.0685215}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:gr-qc/9802017"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pullin, Jorge"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:gr-qc/9702010"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["General Relativity and Quantum Cosmology"]},"trust":{"type":"FLOAT","value":0.0685215},"target_publication_title":{"type":"STRING","value":"Matters of Gravity, the newsletter of the APS TG on gravitation"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1998-02-09"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:gr-qc/9802017\",\"titles\":[\"Matters of Gravity, the newsletter of the APS TG on gravitation\"],\"abstracts\":[\" Contents:\\n *News:\\n Topical group news, by Jim Isenberg\\n April 1997 Joint APS/AAPT Meeting, GTG program, by Abhay Ashtekar\\n Formation of the Gravitational-Wave International Committee, by Sam Finn\\n The 1997 Xanthopoulos award, by Abhay Asthekar\\n We hear that..., by Jorge Pullin\\n *Research Briefs:\\n LIGO project update, by David Shoemaker\\n The search for frame-dragging by NS and BH\\u0027s, by Sharon Morsink\\n Gamma-ray bursts, recent developments, by Peter Meszaros\\n Status of the Binary Black hole Grand Challenge, by Richard Matzner\\n *Conference Reports:\\n Quantum gravity at GR15, by Don Marolf\\n GR Classical, by John Friedman\\n An Experimentalist\\u0027s Idiosyncratic Report on GR15, by Peter Saulson\\n Bangalore gravitational wave meeting, by Sharon Morsink\\n Bangalore quantum gravity meeting, by Domenico Giulini\\n Cleveland cosmology-topology workshop, by Neil Cornish\\n Quantum Gravity in the Southern Cone II, by Carmen Nunez\\n Baltimore AMS meeting, by Kirill Krasnov\\n\",\"Comment: 30 pages LaTeX, uses html.sty, available (now also in html!) at\\n http://vishnu.nirvana.phys.psu.edu/mog.html\"],\"language\":\"eng\",\"subjects\":[\"General Relativity and Quantum Cosmology\"],\"creators\":[\"Pullin, Jorge\"],\"publicationdate\":\"1998-02-09\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9802017\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/gr-qc/9609008\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9609008\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/gr-qc/9609008\",\"id\":\"oai:arXiv.org:gr-qc/9609008\"},\"trust\":0.29573637}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:gr-qc/9802017"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pullin, Jorge"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:gr-qc/9609008"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["General Relativity and Quantum Cosmology"]},"trust":{"type":"FLOAT","value":0.29573637},"target_publication_title":{"type":"STRING","value":"Matters of Gravity, the newsletter of the APS TG on gravitation"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1998-02-09"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:gr-qc/9802017\",\"titles\":[\"Matters of Gravity, the newsletter of the APS TG on gravitation\"],\"abstracts\":[\" Contents:\\n *News:\\n Topical group news, by Jim Isenberg\\n April 1997 Joint APS/AAPT Meeting, GTG program, by Abhay Ashtekar\\n Formation of the Gravitational-Wave International Committee, by Sam Finn\\n The 1997 Xanthopoulos award, by Abhay Asthekar\\n We hear that..., by Jorge Pullin\\n *Research Briefs:\\n LIGO project update, by David Shoemaker\\n The search for frame-dragging by NS and BH\\u0027s, by Sharon Morsink\\n Gamma-ray bursts, recent developments, by Peter Meszaros\\n Status of the Binary Black hole Grand Challenge, by Richard Matzner\\n *Conference Reports:\\n Quantum gravity at GR15, by Don Marolf\\n GR Classical, by John Friedman\\n An Experimentalist\\u0027s Idiosyncratic Report on GR15, by Peter Saulson\\n Bangalore gravitational wave meeting, by Sharon Morsink\\n Bangalore quantum gravity meeting, by Domenico Giulini\\n Cleveland cosmology-topology workshop, by Neil Cornish\\n Quantum Gravity in the Southern Cone II, by Carmen Nunez\\n Baltimore AMS meeting, by Kirill Krasnov\\n\",\"Comment: 30 pages LaTeX, uses html.sty, available (now also in html!) at\\n http://vishnu.nirvana.phys.psu.edu/mog.html\"],\"language\":\"eng\",\"subjects\":[\"General Relativity and Quantum Cosmology\"],\"creators\":[\"Pullin, Jorge\"],\"publicationdate\":\"1998-02-09\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9802017\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/gr-qc/9709023\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9709023\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/gr-qc/9709023\",\"id\":\"oai:arXiv.org:gr-qc/9709023\"},\"trust\":0.26555175}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:gr-qc/9802017"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pullin, Jorge"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:gr-qc/9709023"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["General Relativity and Quantum Cosmology"]},"trust":{"type":"FLOAT","value":0.26555175},"target_publication_title":{"type":"STRING","value":"Matters of Gravity, the newsletter of the APS TG on gravitation"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1998-02-09"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:gr-qc/9702010\",\"titles\":[\"Matters of Gravity, the newsletter of the APS TG on gravitation\"],\"abstracts\":[\" Contents:\\n News:\\n April 1997 Joint APS/AAPT Meeting, by Beverly Berger\\n TGG News, by Jim Isenberg\\n Report from NSF, by David Berley\\n We hear that..., by Jorge Pullin\\n Research briefs:\\n GR in GPS, by Neil Ashby\\n What happens near the innermost stable circular orbit? by Doug Eardley\\n Conference reports:\\n Journees Relativistes 96, by D. Brill, M. Heusler, G. Lavrelashvili\\n TAMA Workshop, by Peter Saulson\\n Midwest gravity meeting, by Comer Duncan\\n OMNI-1 Workshop by N.S. Magalhaes, W. F. Velloso Jr and O.D. Aguiar\\n Chandra Symposium, by Robert Wald\\n Penn State Meeting, by Lee Smolin\\n Aspen Winter Conference, by Syd Meshkov\\n\",\"Comment: 25 pages LaTeX, uses html.sty, available (now also in html!) at\\n http://vishnu.nirvana.phys.psu.edu/mog.html\"],\"language\":\"eng\",\"subjects\":[\"General Relativity and Quantum Cosmology\"],\"creators\":[\"Pullin, Jorge\"],\"publicationdate\":\"1997-02-04\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9702010\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/gr-qc/9802017\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9802017\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/gr-qc/9802017\",\"id\":\"oai:arXiv.org:gr-qc/9802017\"},\"trust\":0.40516347}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:gr-qc/9702010"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pullin, Jorge"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:gr-qc/9802017"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["General Relativity and Quantum Cosmology"]},"trust":{"type":"FLOAT","value":0.40516347},"target_publication_title":{"type":"STRING","value":"Matters of Gravity, the newsletter of the APS TG on gravitation"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1997-02-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:gr-qc/9702010\",\"titles\":[\"Matters of Gravity, the newsletter of the APS TG on gravitation\"],\"abstracts\":[\" Contents:\\n News:\\n April 1997 Joint APS/AAPT Meeting, by Beverly Berger\\n TGG News, by Jim Isenberg\\n Report from NSF, by David Berley\\n We hear that..., by Jorge Pullin\\n Research briefs:\\n GR in GPS, by Neil Ashby\\n What happens near the innermost stable circular orbit? by Doug Eardley\\n Conference reports:\\n Journees Relativistes 96, by D. Brill, M. Heusler, G. Lavrelashvili\\n TAMA Workshop, by Peter Saulson\\n Midwest gravity meeting, by Comer Duncan\\n OMNI-1 Workshop by N.S. Magalhaes, W. F. Velloso Jr and O.D. Aguiar\\n Chandra Symposium, by Robert Wald\\n Penn State Meeting, by Lee Smolin\\n Aspen Winter Conference, by Syd Meshkov\\n\",\"Comment: 25 pages LaTeX, uses html.sty, available (now also in html!) at\\n http://vishnu.nirvana.phys.psu.edu/mog.html\"],\"language\":\"eng\",\"subjects\":[\"General Relativity and Quantum Cosmology\"],\"creators\":[\"Pullin, Jorge\"],\"publicationdate\":\"1997-02-04\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9702010\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/gr-qc/9609008\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9609008\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/gr-qc/9609008\",\"id\":\"oai:arXiv.org:gr-qc/9609008\"},\"trust\":0.1710999}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:gr-qc/9702010"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pullin, Jorge"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:gr-qc/9609008"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["General Relativity and Quantum Cosmology"]},"trust":{"type":"FLOAT","value":0.1710999},"target_publication_title":{"type":"STRING","value":"Matters of Gravity, the newsletter of the APS TG on gravitation"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1997-02-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:gr-qc/9702010\",\"titles\":[\"Matters of Gravity, the newsletter of the APS TG on gravitation\"],\"abstracts\":[\" Contents:\\n News:\\n April 1997 Joint APS/AAPT Meeting, by Beverly Berger\\n TGG News, by Jim Isenberg\\n Report from NSF, by David Berley\\n We hear that..., by Jorge Pullin\\n Research briefs:\\n GR in GPS, by Neil Ashby\\n What happens near the innermost stable circular orbit? by Doug Eardley\\n Conference reports:\\n Journees Relativistes 96, by D. Brill, M. Heusler, G. Lavrelashvili\\n TAMA Workshop, by Peter Saulson\\n Midwest gravity meeting, by Comer Duncan\\n OMNI-1 Workshop by N.S. Magalhaes, W. F. Velloso Jr and O.D. Aguiar\\n Chandra Symposium, by Robert Wald\\n Penn State Meeting, by Lee Smolin\\n Aspen Winter Conference, by Syd Meshkov\\n\",\"Comment: 25 pages LaTeX, uses html.sty, available (now also in html!) at\\n http://vishnu.nirvana.phys.psu.edu/mog.html\"],\"language\":\"eng\",\"subjects\":[\"General Relativity and Quantum Cosmology\"],\"creators\":[\"Pullin, Jorge\"],\"publicationdate\":\"1997-02-04\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9702010\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/gr-qc/9709023\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9709023\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/gr-qc/9709023\",\"id\":\"oai:arXiv.org:gr-qc/9709023\"},\"trust\":0.8923184}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:gr-qc/9702010"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pullin, Jorge"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:gr-qc/9709023"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["General Relativity and Quantum Cosmology"]},"trust":{"type":"FLOAT","value":0.8923184},"target_publication_title":{"type":"STRING","value":"Matters of Gravity, the newsletter of the APS TG on gravitation"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1997-02-04"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:gr-qc/9609008\",\"titles\":[\"Matters of Gravity, the newsletter of the APS TG on gravitation\"],\"abstracts\":[\" Contents:\\n APS Topical Group in Gravitation News:\\n April 1997 Joint APS/AAPT Meeting\\n Research briefs:\\n GEO600 by Karsten Danzmann\\n Black hole microstates in string theory by Gary Horowitz\\n LIGO project status by Stan Whitcomb\\n The Hamiltonian constraint of quantum gravity and loops by John Baez\\n Conference reports:\\n International conference on gravitational waves by Valeria Ferrari\\n PCGM12/KKfest by Richard Price\\n First International LISA Symposium by Robin Stebbins\\n Schroedinger Institute Workshop by Abhay Ashtekar\\n Relativistic Astrophysics at Bad Honnef by Hans-Peter Nollert\\n Intermediate binary black hole workshop by Sam Finn\\n Quantum Gravity in the Southern Cone by Rodolfo Gambini\\n Report on the Spring APS Meeting by Fred Raab and Beverly Berger\\n\",\"Comment: 24 pages LaTeX, uses html.sty, available (now also in html!) at\\n http://vishnu.nirvana.phys.psu.edu/mog.html\"],\"language\":\"eng\",\"subjects\":[\"General Relativity and Quantum Cosmology\"],\"creators\":[\"Pullin, Jorge\"],\"publicationdate\":\"1996-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9609008\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/gr-qc/9802017\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9802017\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/gr-qc/9802017\",\"id\":\"oai:arXiv.org:gr-qc/9802017\"},\"trust\":0.122466385}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:gr-qc/9609008"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pullin, Jorge"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:gr-qc/9802017"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["General Relativity and Quantum Cosmology"]},"trust":{"type":"FLOAT","value":0.122466385},"target_publication_title":{"type":"STRING","value":"Matters of Gravity, the newsletter of the APS TG on gravitation"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1996-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:gr-qc/9609008\",\"titles\":[\"Matters of Gravity, the newsletter of the APS TG on gravitation\"],\"abstracts\":[\" Contents:\\n APS Topical Group in Gravitation News:\\n April 1997 Joint APS/AAPT Meeting\\n Research briefs:\\n GEO600 by Karsten Danzmann\\n Black hole microstates in string theory by Gary Horowitz\\n LIGO project status by Stan Whitcomb\\n The Hamiltonian constraint of quantum gravity and loops by John Baez\\n Conference reports:\\n International conference on gravitational waves by Valeria Ferrari\\n PCGM12/KKfest by Richard Price\\n First International LISA Symposium by Robin Stebbins\\n Schroedinger Institute Workshop by Abhay Ashtekar\\n Relativistic Astrophysics at Bad Honnef by Hans-Peter Nollert\\n Intermediate binary black hole workshop by Sam Finn\\n Quantum Gravity in the Southern Cone by Rodolfo Gambini\\n Report on the Spring APS Meeting by Fred Raab and Beverly Berger\\n\",\"Comment: 24 pages LaTeX, uses html.sty, available (now also in html!) at\\n http://vishnu.nirvana.phys.psu.edu/mog.html\"],\"language\":\"eng\",\"subjects\":[\"General Relativity and Quantum Cosmology\"],\"creators\":[\"Pullin, Jorge\"],\"publicationdate\":\"1996-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9609008\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/gr-qc/9702010\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9702010\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/gr-qc/9702010\",\"id\":\"oai:arXiv.org:gr-qc/9702010\"},\"trust\":0.5362717}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:gr-qc/9609008"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pullin, Jorge"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:gr-qc/9702010"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["General Relativity and Quantum Cosmology"]},"trust":{"type":"FLOAT","value":0.5362717},"target_publication_title":{"type":"STRING","value":"Matters of Gravity, the newsletter of the APS TG on gravitation"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1996-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:gr-qc/9609008\",\"titles\":[\"Matters of Gravity, the newsletter of the APS TG on gravitation\"],\"abstracts\":[\" Contents:\\n APS Topical Group in Gravitation News:\\n April 1997 Joint APS/AAPT Meeting\\n Research briefs:\\n GEO600 by Karsten Danzmann\\n Black hole microstates in string theory by Gary Horowitz\\n LIGO project status by Stan Whitcomb\\n The Hamiltonian constraint of quantum gravity and loops by John Baez\\n Conference reports:\\n International conference on gravitational waves by Valeria Ferrari\\n PCGM12/KKfest by Richard Price\\n First International LISA Symposium by Robin Stebbins\\n Schroedinger Institute Workshop by Abhay Ashtekar\\n Relativistic Astrophysics at Bad Honnef by Hans-Peter Nollert\\n Intermediate binary black hole workshop by Sam Finn\\n Quantum Gravity in the Southern Cone by Rodolfo Gambini\\n Report on the Spring APS Meeting by Fred Raab and Beverly Berger\\n\",\"Comment: 24 pages LaTeX, uses html.sty, available (now also in html!) at\\n http://vishnu.nirvana.phys.psu.edu/mog.html\"],\"language\":\"eng\",\"subjects\":[\"General Relativity and Quantum Cosmology\"],\"creators\":[\"Pullin, Jorge\"],\"publicationdate\":\"1996-09-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9609008\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/gr-qc/9709023\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9709023\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/gr-qc/9709023\",\"id\":\"oai:arXiv.org:gr-qc/9709023\"},\"trust\":0.79231805}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:gr-qc/9609008"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pullin, Jorge"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:gr-qc/9709023"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["General Relativity and Quantum Cosmology"]},"trust":{"type":"FLOAT","value":0.79231805},"target_publication_title":{"type":"STRING","value":"Matters of Gravity, the newsletter of the APS TG on gravitation"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1996-09-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:gr-qc/9709023\",\"titles\":[\"Matters of Gravity, the newsletter of the APS TG on gravitation\"],\"abstracts\":[\" Contents:\\n *News:\\n April 1997 Joint APS/AAPT Meeting, by Beverly Berger\\n The physics survey and committee on gravitational physics, by Jim Hartle\\n *Research Briefs:\\n Instability of rotating stars to axial perturbations, by Sharon Morsink\\n LIGO project status, by Stan Whitcomb\\n The Search for Frame-Dragging, by Clifford Will\\n *Conference Reports:\\n Conference of the Southern African Relativity Society, by Nigel Bishop\\n II Warszaw workshop on canonical and quantum gravity, by Carlo Rovelli\\n Alpbach summer school on fundamental physics in space, by Peter Bender\\n MG8, an experimentalists\\u0027 summary, by Riley Newman and Peter Saulson\\n Amaldi Conference on Gravitational Waves, by M. Alessandra Papa\\n Santa Fe workshop on simplicial quantum gravity, by Lee Smolin\\n VII Canadian Conference on General Relativity, by David Hobill\\n\",\"Comment: 27 pages LaTeX, uses html.sty, available (now also in html!) at\\n http://vishnu.nirvana.phys.psu.edu/mog.html\"],\"language\":\"eng\",\"subjects\":[\"General Relativity and Quantum Cosmology\"],\"creators\":[\"Pullin, Jorge\"],\"publicationdate\":\"1997-09-10\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9709023\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/gr-qc/9802017\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9802017\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/gr-qc/9802017\",\"id\":\"oai:arXiv.org:gr-qc/9802017\"},\"trust\":0.19158208}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:gr-qc/9709023"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pullin, Jorge"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:gr-qc/9802017"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["General Relativity and Quantum Cosmology"]},"trust":{"type":"FLOAT","value":0.19158208},"target_publication_title":{"type":"STRING","value":"Matters of Gravity, the newsletter of the APS TG on gravitation"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1997-09-10"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:gr-qc/9709023\",\"titles\":[\"Matters of Gravity, the newsletter of the APS TG on gravitation\"],\"abstracts\":[\" Contents:\\n *News:\\n April 1997 Joint APS/AAPT Meeting, by Beverly Berger\\n The physics survey and committee on gravitational physics, by Jim Hartle\\n *Research Briefs:\\n Instability of rotating stars to axial perturbations, by Sharon Morsink\\n LIGO project status, by Stan Whitcomb\\n The Search for Frame-Dragging, by Clifford Will\\n *Conference Reports:\\n Conference of the Southern African Relativity Society, by Nigel Bishop\\n II Warszaw workshop on canonical and quantum gravity, by Carlo Rovelli\\n Alpbach summer school on fundamental physics in space, by Peter Bender\\n MG8, an experimentalists\\u0027 summary, by Riley Newman and Peter Saulson\\n Amaldi Conference on Gravitational Waves, by M. Alessandra Papa\\n Santa Fe workshop on simplicial quantum gravity, by Lee Smolin\\n VII Canadian Conference on General Relativity, by David Hobill\\n\",\"Comment: 27 pages LaTeX, uses html.sty, available (now also in html!) at\\n http://vishnu.nirvana.phys.psu.edu/mog.html\"],\"language\":\"eng\",\"subjects\":[\"General Relativity and Quantum Cosmology\"],\"creators\":[\"Pullin, Jorge\"],\"publicationdate\":\"1997-09-10\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9709023\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/gr-qc/9702010\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9702010\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/gr-qc/9702010\",\"id\":\"oai:arXiv.org:gr-qc/9702010\"},\"trust\":0.12732685}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:gr-qc/9709023"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pullin, Jorge"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:gr-qc/9702010"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["General Relativity and Quantum Cosmology"]},"trust":{"type":"FLOAT","value":0.12732685},"target_publication_title":{"type":"STRING","value":"Matters of Gravity, the newsletter of the APS TG on gravitation"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1997-09-10"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:arXiv.org:gr-qc/9709023\",\"titles\":[\"Matters of Gravity, the newsletter of the APS TG on gravitation\"],\"abstracts\":[\" Contents:\\n *News:\\n April 1997 Joint APS/AAPT Meeting, by Beverly Berger\\n The physics survey and committee on gravitational physics, by Jim Hartle\\n *Research Briefs:\\n Instability of rotating stars to axial perturbations, by Sharon Morsink\\n LIGO project status, by Stan Whitcomb\\n The Search for Frame-Dragging, by Clifford Will\\n *Conference Reports:\\n Conference of the Southern African Relativity Society, by Nigel Bishop\\n II Warszaw workshop on canonical and quantum gravity, by Carlo Rovelli\\n Alpbach summer school on fundamental physics in space, by Peter Bender\\n MG8, an experimentalists\\u0027 summary, by Riley Newman and Peter Saulson\\n Amaldi Conference on Gravitational Waves, by M. Alessandra Papa\\n Santa Fe workshop on simplicial quantum gravity, by Lee Smolin\\n VII Canadian Conference on General Relativity, by David Hobill\\n\",\"Comment: 27 pages LaTeX, uses html.sty, available (now also in html!) at\\n http://vishnu.nirvana.phys.psu.edu/mog.html\"],\"language\":\"eng\",\"subjects\":[\"General Relativity and Quantum Cosmology\"],\"creators\":[\"Pullin, Jorge\"],\"publicationdate\":\"1997-09-10\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"arXiv.org e-Print Archive\"],\"pids\":[],\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9709023\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"},{\"url\":\"http://arxiv.org/abs/gr-qc/9609008\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://arxiv.org/abs/gr-qc/9609008\",\"license\":\"OPEN\",\"hostedby\":\"arXiv.org e-Print Archive\",\"instancetype\":\"Article\"}]},\"provenance\":{\"repositoryName\":\"arXiv.org e-Print Archive\",\"url\":\"http://arxiv.org/abs/gr-qc/9609008\",\"id\":\"oai:arXiv.org:gr-qc/9609008\"},\"trust\":0.56464255}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_publication_id":{"type":"STRING","value":"oai:arXiv.org:gr-qc/9709023"},"target_publication_author_list":{"type":"LIST_STRING","value":["Pullin, Jorge"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:arXiv.org:gr-qc/9609008"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"},"target_publication_subject_list":{"type":"LIST_STRING","value":["General Relativity and Quantum Cosmology"]},"trust":{"type":"FLOAT","value":0.56464255},"target_publication_title":{"type":"STRING","value":"Matters of Gravity, the newsletter of the APS TG on gravitation"},"provenance_datasource_name":{"type":"STRING","value":"arXiv.org e-Print Archive"},"target_dateofacceptance":{"type":"DATE","value":"1997-09-10"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::6f4922f45568161a8cdf4ad2299f6d23"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:wo.uvt.nl:3750121\",\"titles\":[\"A new concept for allocation of joint costs: Stepwise reduction of costs proportional to joint savings\"],\"abstracts\":[],\"language\":\"und\",\"subjects\":[],\"creators\":[\"Reeken, A. J.\"],\"publicationdate\":\"1986-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Tilburg University Repository\"],\"pids\":[],\"instances\":[{\"url\":\"http://repository.uvt.nl/id/ir-uvt-nl:oai:wo.uvt.nl:3750121\",\"license\":\"OPEN\",\"hostedby\":\"Tilburg University Repository\",\"instancetype\":\"Internal report\"},{\"url\":\"https://pure.uvt.nl/portal/en/publications/a-new-concept-for-allocation-of-joint-costs(16a504f4-e763-4809-b936-5664eb9160e8).html\",\"license\":\"OPEN\",\"hostedby\":\"Tilburg University Repository\",\"instancetype\":\"Research\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://pure.uvt.nl/portal/en/publications/a-new-concept-for-allocation-of-joint-costs(16a504f4-e763-4809-b936-5664eb9160e8).html\",\"license\":\"OPEN\",\"hostedby\":\"Tilburg University Repository\",\"instancetype\":\"Research\"}]},\"provenance\":{\"repositoryName\":\"NARCIS\",\"url\":\"https://pure.uvt.nl/portal/en/publications/a-new-concept-for-allocation-of-joint-costs(16a504f4-e763-4809-b936-5664eb9160e8).html\",\"id\":\"uvt:oai:tilburguniversity.edu:publications/16a504f4-e763-4809-b936-5664eb9160e8\"},\"trust\":0.25260383}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Tilburg University Repository"},"target_publication_id":{"type":"STRING","value":"oai:wo.uvt.nl:3750121"},"target_publication_author_list":{"type":"LIST_STRING","value":["Reeken, A. J."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["uvt:oai:tilburguniversity.edu:publications/16a504f4-e763-4809-b936-5664eb9160e8"]},"provenance_datasource_id":{"type":"STRING","value":"10|openaire____::fdb035c8b3e0540a8d9a561a6c44f4de"},"trust":{"type":"FLOAT","value":0.25260383},"target_publication_title":{"type":"STRING","value":"A new concept for allocation of joint costs: Stepwise reduction of costs proportional to joint savings"},"provenance_datasource_name":{"type":"STRING","value":"NARCIS"},"target_dateofacceptance":{"type":"DATE","value":"1986-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::01f78be6f7cad02658508fe4616098a9"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:ineris-00972150v1\",\"titles\":[\"L\\u0027étiquetage et la classification au service de la sécurité des stockages\"],\"abstracts\":[\"En Europe, l\\u0027étiquetage des substances et préparations chimiques dangereuses apposé sur les conditionnements des produits concernés est régi sur la base d\\u0027accords communautaires depuis plus de 25 ans.II constitue d\\u0027abord et avant tout la première information, essentielle et concise, fournie à l\\u0027utilisateur, renseignant sur les dangers intrinsèques et les précautions à prendre lors de l\\u0027utilisation. Cet étiquetage se veut également (depuis les années 1980) un maillon important dans la prévention du risque induit à l\\u0027environnement, (phrases de risques R50 à R59,...). Le contenu de l\\u0027étiquetage dépend de la classification du produit au regard de classes ou catégories de dangers. En France, comme dans de nombreux pays européens ou\"],\"language\":\"fra/fre\",\"subjects\":[\"ETIQUETAGE\",\"CLASSIFICATION\",\"TRANSPORT\",\"ONU\",\"DIRECTIVES CE\",\"[SPI] Engineering Sciences\"],\"creators\":[\"Marlair, Guy\"],\"publicationdate\":\"1998-12-16\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Institut National de l\\u0027Environnement Industriel et des Risques (INERIS) ; INERIS\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal-ineris.ccsd.cnrs.fr/ineris-00972150\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal-ineris.ccsd.cnrs.fr/ineris-00972150\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-ineris.ccsd.cnrs.fr/ineris-00972150\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-ineris.ccsd.cnrs.fr/ineris-00972150\",\"id\":\"oai:hal-ineris.ccsd.cnrs.fr:ineris-00972150\"},\"trust\":0.2823115}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:ineris-00972150v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Marlair, Guy"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal-ineris.ccsd.cnrs.fr:ineris-00972150"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["ETIQUETAGE","CLASSIFICATION","TRANSPORT","ONU","DIRECTIVES CE","[SPI] Engineering Sciences"]},"trust":{"type":"FLOAT","value":0.2823115},"target_publication_title":{"type":"STRING","value":"L\u0027étiquetage et la classification au service de la sécurité des stockages"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1998-12-16"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal-ineris.ccsd.cnrs.fr:ineris-00972150\",\"titles\":[\"L\\u0027étiquetage et la classification au service de la sécurité des stockages\"],\"abstracts\":[\"En Europe, l\\u0027étiquetage des substances et préparations chimiques dangereuses apposé sur les conditionnements des produits concernés est régi sur la base d\\u0027accords communautaires depuis plus de 25 ans.II constitue d\\u0027abord et avant tout la première information, essentielle et concise, fournie à l\\u0027utilisateur, renseignant sur les dangers intrinsèques et les précautions à prendre lors de l\\u0027utilisation. Cet étiquetage se veut également (depuis les années 1980) un maillon important dans la prévention du risque induit à l\\u0027environnement, (phrases de risques R50 à R59,...). Le contenu de l\\u0027étiquetage dépend de la classification du produit au regard de classes ou catégories de dangers. En France, comme dans de nombreux pays européens ou\"],\"language\":\"fra/fre\",\"subjects\":[\"[SPI] Engineering Sciences\",\"[SPI] Sciences de l\\u0027ingénieur\",\"ETIQUETAGE\",\"CLASSIFICATION\",\"TRANSPORT\",\"ONU\",\"DIRECTIVES CE\"],\"creators\":[\"Marlair, Guy\"],\"publicationdate\":\"1998-12-16\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal-ineris.ccsd.cnrs.fr/ineris-00972150\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal-ineris.ccsd.cnrs.fr/ineris-00972150\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal-ineris.ccsd.cnrs.fr/ineris-00972150\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal-ineris.ccsd.cnrs.fr/ineris-00972150\",\"id\":\"oai:HAL:ineris-00972150v1\"},\"trust\":0.51175743}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal-ineris.ccsd.cnrs.fr:ineris-00972150"},"target_publication_author_list":{"type":"LIST_STRING","value":["Marlair, Guy"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:ineris-00972150v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SPI] Engineering Sciences","[SPI] Sciences de l\u0027ingénieur","ETIQUETAGE","CLASSIFICATION","TRANSPORT","ONU","DIRECTIVES CE"]},"trust":{"type":"FLOAT","value":0.51175743},"target_publication_title":{"type":"STRING","value":"L\u0027étiquetage et la classification au service de la sécurité des stockages"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"1998-12-16"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:hal-00608095v1\",\"titles\":[\"Local comparison of multimodal medical surfaces using a new variational splines fitting algorithm\"],\"abstracts\":[\"International audience\",\"In this paper, we propose a modified variational splines fitting (MVSF) algorithm for the reconstruction and comparison of medical surfaces. The MVSF algorithm presents the advantage to use high precise and low complex approximation of the equations of energy in the discrete temporal domain, compared to previously presented methods. It also takes into account the periodicity constraints encountered when reconstructing sphere-like shape closed surfaces. Moreover, it gives straightly the mean square error (MSE) between the original data and the reconstructed data, which is useful to quantify the approximation introduced by the reconstruction. The developed model has been successfully applied for real biomedical data; in particular for the reconstruction and comparison of the left ventricle of human heart, acquired by SPECT and ultrasound imaging modalities.\"],\"language\":\"eng\",\"subjects\":[\"Local comparison\",\"multimodal\",\"surface fitting\",\"surface reconstruction\",\"[INFO.INFO-TS] Computer Science/Signal and Image Processing\",\"[SPI.SIGNAL] Engineering Sciences/Signal and Image processing\"],\"creators\":[\"Almhdie, Ahmad\",\"Léger, Christophe\"],\"publicationdate\":\"2009-11-15\",\"publisher\":\"HAL CCSD\",\"embargoenddate\":\"\",\"contributor\":[\"Laboratoire PRISME (PRISME) ; Université d\\u0027Orléans - ENSI Bourges\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00608095\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://hal.archives-ouvertes.fr/hal-00608095\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00608095\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://hal.archives-ouvertes.fr/hal-00608095\",\"id\":\"oai:hal.archives-ouvertes.fr:hal-00608095\"},\"trust\":0.4133854}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:hal-00608095v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Almhdie, Ahmad","Léger, Christophe"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:hal.archives-ouvertes.fr:hal-00608095"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Local comparison","multimodal","surface fitting","surface reconstruction","[INFO.INFO-TS] Computer Science/Signal and Image Processing","[SPI.SIGNAL] Engineering Sciences/Signal and Image processing"]},"trust":{"type":"FLOAT","value":0.4133854},"target_publication_title":{"type":"STRING","value":"Local comparison of multimodal medical surfaces using a new variational splines fitting algorithm"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2009-11-15"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:hal.archives-ouvertes.fr:hal-00608095\",\"titles\":[\"Local comparison of multimodal medical surfaces using a new variational splines fitting algorithm\"],\"abstracts\":[\"In this paper, we propose a modified variational splines fitting (MVSF) algorithm for the reconstruction and comparison of medical surfaces. The MVSF algorithm presents the advantage to use high precise and low complex approximation of the equations of energy in the discrete temporal domain, compared to previously presented methods. It also takes into account the periodicity constraints encountered when reconstructing sphere-like shape closed surfaces. Moreover, it gives straightly the mean square error (MSE) between the original data and the reconstructed data, which is useful to quantify the approximation introduced by the reconstruction. The developed model has been successfully applied for real biomedical data; in particular for the reconstruction and comparison of the left ventricle of human heart, acquired by SPECT and ultrasound imaging modalities.\"],\"language\":\"eng\",\"subjects\":[\"[INFO:INFO_TS] Computer Science/Signal and Image Processing\",\"[INFO:INFO_TS] Informatique/Traitement du signal et de l\\u0027image\",\"[SPI:SIGNAL] Engineering Sciences/Signal and Image processing\",\"[SPI:SIGNAL] Sciences de l\\u0027ingénieur/Traitement du signal et de l\\u0027image\",\"Local comparison\",\"multimodal\",\"surface fitting\",\"surface reconstruction\"],\"creators\":[\"Almhdie, Ahmad\",\"Léger, Christophe\"],\"publicationdate\":\"2009-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://hal.archives-ouvertes.fr/hal-00608095\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://hal.archives-ouvertes.fr/hal-00608095\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://hal.archives-ouvertes.fr/hal-00608095\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://hal.archives-ouvertes.fr/hal-00608095\",\"id\":\"oai:HAL:hal-00608095v1\"},\"trust\":0.020415187}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:hal.archives-ouvertes.fr:hal-00608095"},"target_publication_author_list":{"type":"LIST_STRING","value":["Almhdie, Ahmad","Léger, Christophe"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:hal-00608095v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[INFO:INFO_TS] Computer Science/Signal and Image Processing","[INFO:INFO_TS] Informatique/Traitement du signal et de l\u0027image","[SPI:SIGNAL] Engineering Sciences/Signal and Image processing","[SPI:SIGNAL] Sciences de l\u0027ingénieur/Traitement du signal et de l\u0027image","Local comparison","multimodal","surface fitting","surface reconstruction"]},"trust":{"type":"FLOAT","value":0.020415187},"target_publication_title":{"type":"STRING","value":"Local comparison of multimodal medical surfaces using a new variational splines fitting algorithm"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2009-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:mpr:mprres:6447\",\"titles\":[\"Employer Demand for Health Services Researchers in the Year 2020.\"],\"abstracts\":[\"This article describes factors that will shape future demand for doctoral-trained health services researchers. Despite rapid growth in the overall health care sector and in funding for clinical research, inflation-adjusted funding for health services research has declined, implying little or no net growth in demand for people to lead these studies. Employers report being able to meet their demand for health services researchers by drawing on people trained in many disciplines, including those with formal training in health services research. Nevertheless, employers may have more difficulty hiring well-qualified researchers when faced with sharp increases in demand for health services research, which could be generated by recent economic stimulus legislation and future health reform legislation.\"],\"language\":\"und\",\"subjects\":[\"Health Services Researchers, HSR job market\"],\"creators\":[\"Craig Thornton\",\"Brown, Jonathan D.\"],\"publicationdate\":\"2009-09-30\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"PMC2796326\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2796326\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2796326\",\"id\":\"oai:europepmc.org:2231136\"},\"trust\":0.29132247}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:mpr:mprres:6447"},"target_publication_author_list":{"type":"LIST_STRING","value":["Craig Thornton","Brown, Jonathan D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2231136"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Health Services Researchers, HSR job market"]},"trust":{"type":"FLOAT","value":0.29132247},"target_publication_title":{"type":"STRING","value":"Employer Demand for Health Services Researchers in the Year 2020."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:mpr:mprres:6447\",\"titles\":[\"Employer Demand for Health Services Researchers in the Year 2020.\"],\"abstracts\":[\"This article describes factors that will shape future demand for doctoral-trained health services researchers. Despite rapid growth in the overall health care sector and in funding for clinical research, inflation-adjusted funding for health services research has declined, implying little or no net growth in demand for people to lead these studies. Employers report being able to meet their demand for health services researchers by drawing on people trained in many disciplines, including those with formal training in health services research. Nevertheless, employers may have more difficulty hiring well-qualified researchers when faced with sharp increases in demand for health services research, which could be generated by recent economic stimulus legislation and future health reform legislation.\"],\"language\":\"und\",\"subjects\":[\"Health Services Researchers, HSR job market\"],\"creators\":[\"Craig Thornton\",\"Brown, Jonathan D.\"],\"publicationdate\":\"2009-09-30\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"PMC2796326\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2796326\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2796326\",\"id\":\"oai:europepmc.org:2231136\"},\"trust\":0.29132247}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:mpr:mprres:6447"},"target_publication_author_list":{"type":"LIST_STRING","value":["Craig Thornton","Brown, Jonathan D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2231136"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Health Services Researchers, HSR job market"]},"trust":{"type":"FLOAT","value":0.29132247},"target_publication_title":{"type":"STRING","value":"Employer Demand for Health Services Researchers in the Year 2020."},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:mpr:mprres:6447\",\"titles\":[\"Employer Demand for Health Services Researchers in the Year 2020.\"],\"abstracts\":[\"This article describes factors that will shape future demand for doctoral-trained health services researchers. Despite rapid growth in the overall health care sector and in funding for clinical research, inflation-adjusted funding for health services research has declined, implying little or no net growth in demand for people to lead these studies. Employers report being able to meet their demand for health services researchers by drawing on people trained in many disciplines, including those with formal training in health services research. Nevertheless, employers may have more difficulty hiring well-qualified researchers when faced with sharp increases in demand for health services research, which could be generated by recent economic stimulus legislation and future health reform legislation.\"],\"language\":\"und\",\"subjects\":[\"Health Services Researchers, HSR job market\"],\"creators\":[\"Craig Thornton\",\"Brown, Jonathan D.\"],\"publicationdate\":\"2009-09-30\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"id\":\"oai:RePEc:mpr:mprres:c51f40a9433343fc9b9bf82ce6ff6e36\"},\"trust\":0.72530407}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:mpr:mprres:6447"},"target_publication_author_list":{"type":"LIST_STRING","value":["Craig Thornton","Brown, Jonathan D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:mpr:mprres:c51f40a9433343fc9b9bf82ce6ff6e36"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Health Services Researchers, HSR job market"]},"trust":{"type":"FLOAT","value":0.72530407},"target_publication_title":{"type":"STRING","value":"Employer Demand for Health Services Researchers in the Year 2020."},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2231136\",\"titles\":[\"Employer Demand for Health Services Researchers in the Year 2020\"],\"abstracts\":[\"\"],\"language\":\"eng\",\"subjects\":[\"Special Section: Health Services Research in 2020: An Assessment of the Field\\u0027s Workforce Needs\"],\"creators\":[\"Thornton, Craig\",\"Brown, Jonathan D.\"],\"publicationdate\":\"2009-12-01\",\"publisher\":\"Blackwell Science Inc\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC2796326\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2796326\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"id\":\"oai:RePEc:mpr:mprres:6447\"},\"trust\":0.46520108}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2231136"},"target_publication_author_list":{"type":"LIST_STRING","value":["Thornton, Craig","Brown, Jonathan D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:mpr:mprres:6447"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Special Section: Health Services Research in 2020: An Assessment of the Field\u0027s Workforce Needs"]},"trust":{"type":"FLOAT","value":0.46520108},"target_publication_title":{"type":"STRING","value":"Employer Demand for Health Services Researchers in the Year 2020"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2231136\",\"titles\":[\"Employer Demand for Health Services Researchers in the Year 2020\"],\"abstracts\":[\"\",\"This article describes factors that will shape future demand for doctoral-trained health services researchers. Despite rapid growth in the overall health care sector and in funding for clinical research, inflation-adjusted funding for health services research has declined, implying little or no net growth in demand for people to lead these studies. Employers report being able to meet their demand for health services researchers by drawing on people trained in many disciplines, including those with formal training in health services research. Nevertheless, employers may have more difficulty hiring well-qualified researchers when faced with sharp increases in demand for health services research, which could be generated by recent economic stimulus legislation and future health reform legislation.\"],\"language\":\"eng\",\"subjects\":[\"Special Section: Health Services Research in 2020: An Assessment of the Field\\u0027s Workforce Needs\"],\"creators\":[\"Thornton, Craig\",\"Brown, Jonathan D.\"],\"publicationdate\":\"2009-12-01\",\"publisher\":\"Blackwell Science Inc\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC2796326\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2796326\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"This article describes factors that will shape future demand for doctoral-trained health services researchers. Despite rapid growth in the overall health care sector and in funding for clinical research, inflation-adjusted funding for health services research has declined, implying little or no net growth in demand for people to lead these studies. Employers report being able to meet their demand for health services researchers by drawing on people trained in many disciplines, including those with formal training in health services research. Nevertheless, employers may have more difficulty hiring well-qualified researchers when faced with sharp increases in demand for health services research, which could be generated by recent economic stimulus legislation and future health reform legislation.\"]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"id\":\"oai:RePEc:mpr:mprres:6447\"},\"trust\":0.5321986}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2231136"},"target_publication_author_list":{"type":"LIST_STRING","value":["Thornton, Craig","Brown, Jonathan D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:mpr:mprres:6447"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Special Section: Health Services Research in 2020: An Assessment of the Field\u0027s Workforce Needs"]},"trust":{"type":"FLOAT","value":0.5321986},"target_publication_title":{"type":"STRING","value":"Employer Demand for Health Services Researchers in the Year 2020"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2231136\",\"titles\":[\"Employer Demand for Health Services Researchers in the Year 2020\"],\"abstracts\":[\"\"],\"language\":\"eng\",\"subjects\":[\"Special Section: Health Services Research in 2020: An Assessment of the Field\\u0027s Workforce Needs\"],\"creators\":[\"Thornton, Craig\",\"Brown, Jonathan D.\"],\"publicationdate\":\"2009-12-01\",\"publisher\":\"Blackwell Science Inc\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC2796326\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2796326\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"},{\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"id\":\"oai:RePEc:mpr:mprres:c51f40a9433343fc9b9bf82ce6ff6e36\"},\"trust\":0.9814939}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2231136"},"target_publication_author_list":{"type":"LIST_STRING","value":["Thornton, Craig","Brown, Jonathan D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:mpr:mprres:c51f40a9433343fc9b9bf82ce6ff6e36"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Special Section: Health Services Research in 2020: An Assessment of the Field\u0027s Workforce Needs"]},"trust":{"type":"FLOAT","value":0.9814939},"target_publication_title":{"type":"STRING","value":"Employer Demand for Health Services Researchers in the Year 2020"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/ABSTRACT","payload":"{\"publication\":{\"originalId\":\"oai:europepmc.org:2231136\",\"titles\":[\"Employer Demand for Health Services Researchers in the Year 2020\"],\"abstracts\":[\"\",\"This article describes factors that will shape future demand for doctoral-trained health services researchers. Despite rapid growth in the overall health care sector and in funding for clinical research, inflation-adjusted funding for health services research has declined, implying little or no net growth in demand for people to lead these studies. Employers report being able to meet their demand for health services researchers by drawing on people trained in many disciplines, including those with formal training in health services research. Nevertheless, employers may have more difficulty hiring well-qualified researchers when faced with sharp increases in demand for health services research, which could be generated by recent economic stimulus legislation and future health reform legislation.\"],\"language\":\"eng\",\"subjects\":[\"Special Section: Health Services Research in 2020: An Assessment of the Field\\u0027s Workforce Needs\"],\"creators\":[\"Thornton, Craig\",\"Brown, Jonathan D.\"],\"publicationdate\":\"2009-12-01\",\"publisher\":\"Blackwell Science Inc\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Europe PubMed Central\"],\"pids\":[{\"value\":\"PMC2796326\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://europepmc.org/articles/PMC2796326\",\"license\":\"OPEN\",\"hostedby\":\"Europe PubMed Central\",\"instancetype\":\"Article\"}],\"externalReferences\":[]},\"highlight\":{\"abstracts\":[\"This article describes factors that will shape future demand for doctoral-trained health services researchers. Despite rapid growth in the overall health care sector and in funding for clinical research, inflation-adjusted funding for health services research has declined, implying little or no net growth in demand for people to lead these studies. Employers report being able to meet their demand for health services researchers by drawing on people trained in many disciplines, including those with formal training in health services research. Nevertheless, employers may have more difficulty hiring well-qualified researchers when faced with sharp increases in demand for health services research, which could be generated by recent economic stimulus legislation and future health reform legislation.\"]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"id\":\"oai:RePEc:mpr:mprres:c51f40a9433343fc9b9bf82ce6ff6e36\"},\"trust\":0.6729039}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_publication_id":{"type":"STRING","value":"oai:europepmc.org:2231136"},"target_publication_author_list":{"type":"LIST_STRING","value":["Thornton, Craig","Brown, Jonathan D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:mpr:mprres:c51f40a9433343fc9b9bf82ce6ff6e36"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Special Section: Health Services Research in 2020: An Assessment of the Field\u0027s Workforce Needs"]},"trust":{"type":"FLOAT","value":0.6729039},"target_publication_title":{"type":"STRING","value":"Employer Demand for Health Services Researchers in the Year 2020"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-12-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:mpr:mprres:c51f40a9433343fc9b9bf82ce6ff6e36\",\"titles\":[\"Employer Demand for Health Services Researchers in the Year 2020\"],\"abstracts\":[\"This article describes factors that will shape future demand for doctoral-trained health services researchers. Despite rapid growth in the overall health care sector and in funding for clinical research, inflation-adjusted funding for health services research has declined, implying little or no net growth in demand for people to lead these studies. Employers report being able to meet their demand for health services researchers by drawing on people trained in many disciplines, including those with formal training in health services research. Nevertheless, employers may have more difficulty hiring well-qualified researchers when faced with sharp increases in demand for health services research, which could be generated by recent economic stimulus legislation and future health reform legislation.\"],\"language\":\"und\",\"subjects\":[\"Health Services Researchers HSR job market\"],\"creators\":[\"Craig Thornton\",\"Brown, Jonathan D.\"],\"publicationdate\":\"2009-09-30\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[],\"instances\":[{\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"},{\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}]},\"provenance\":{\"repositoryName\":\"Research Papers in Economics\",\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"id\":\"oai:RePEc:mpr:mprres:6447\"},\"trust\":0.9528746}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:mpr:mprres:c51f40a9433343fc9b9bf82ce6ff6e36"},"target_publication_author_list":{"type":"LIST_STRING","value":["Craig Thornton","Brown, Jonathan D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:RePEc:mpr:mprres:6447"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Health Services Researchers HSR job market"]},"trust":{"type":"FLOAT","value":0.9528746},"target_publication_title":{"type":"STRING","value":"Employer Demand for Health Services Researchers in the Year 2020"},"provenance_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MISSING/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:mpr:mprres:c51f40a9433343fc9b9bf82ce6ff6e36\",\"titles\":[\"Employer Demand for Health Services Researchers in the Year 2020\"],\"abstracts\":[\"This article describes factors that will shape future demand for doctoral-trained health services researchers. Despite rapid growth in the overall health care sector and in funding for clinical research, inflation-adjusted funding for health services research has declined, implying little or no net growth in demand for people to lead these studies. Employers report being able to meet their demand for health services researchers by drawing on people trained in many disciplines, including those with formal training in health services research. Nevertheless, employers may have more difficulty hiring well-qualified researchers when faced with sharp increases in demand for health services research, which could be generated by recent economic stimulus legislation and future health reform legislation.\"],\"language\":\"und\",\"subjects\":[\"Health Services Researchers HSR job market\"],\"creators\":[\"Craig Thornton\",\"Brown, Jonathan D.\"],\"publicationdate\":\"2009-09-30\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"PMC2796326\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2796326\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2796326\",\"id\":\"oai:europepmc.org:2231136\"},\"trust\":0.19809353}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:mpr:mprres:c51f40a9433343fc9b9bf82ce6ff6e36"},"target_publication_author_list":{"type":"LIST_STRING","value":["Craig Thornton","Brown, Jonathan D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2231136"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Health Services Researchers HSR job market"]},"trust":{"type":"FLOAT","value":0.19809353},"target_publication_title":{"type":"STRING","value":"Employer Demand for Health Services Researchers in the Year 2020"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/PID","payload":"{\"publication\":{\"originalId\":\"oai:RePEc:mpr:mprres:c51f40a9433343fc9b9bf82ce6ff6e36\",\"titles\":[\"Employer Demand for Health Services Researchers in the Year 2020\"],\"abstracts\":[\"This article describes factors that will shape future demand for doctoral-trained health services researchers. Despite rapid growth in the overall health care sector and in funding for clinical research, inflation-adjusted funding for health services research has declined, implying little or no net growth in demand for people to lead these studies. Employers report being able to meet their demand for health services researchers by drawing on people trained in many disciplines, including those with formal training in health services research. Nevertheless, employers may have more difficulty hiring well-qualified researchers when faced with sharp increases in demand for health services research, which could be generated by recent economic stimulus legislation and future health reform legislation.\"],\"language\":\"und\",\"subjects\":[\"Health Services Researchers HSR job market\"],\"creators\":[\"Craig Thornton\",\"Brown, Jonathan D.\"],\"publicationdate\":\"2009-09-30\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"Research Papers in Economics\"],\"pids\":[{\"value\":\"PMC2796326\",\"type\":\"pmc\"}],\"instances\":[{\"url\":\"http://www3.interscience.wiley.com/journal/122605775/abstract?CRETRY\\u003d1\\u0026SRETRY\\u003d0\",\"license\":\"OPEN\",\"hostedby\":\"Research Papers in Economics\",\"instancetype\":\"Preprint\"}],\"externalReferences\":[]},\"highlight\":{\"pids\":[{\"value\":\"PMC2796326\",\"type\":\"pmc\"}]},\"provenance\":{\"repositoryName\":\"Europe PubMed Central\",\"url\":\"http://europepmc.org/articles/PMC2796326\",\"id\":\"oai:europepmc.org:2231136\"},\"trust\":0.19809353}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"Research Papers in Economics"},"target_publication_id":{"type":"STRING","value":"oai:RePEc:mpr:mprres:c51f40a9433343fc9b9bf82ce6ff6e36"},"target_publication_author_list":{"type":"LIST_STRING","value":["Craig Thornton","Brown, Jonathan D."]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:europepmc.org:2231136"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"},"target_publication_subject_list":{"type":"LIST_STRING","value":["Health Services Researchers HSR job market"]},"trust":{"type":"FLOAT","value":0.19809353},"target_publication_title":{"type":"STRING","value":"Employer Demand for Health Services Researchers in the Year 2020"},"provenance_datasource_name":{"type":"STRING","value":"Europe PubMed Central"},"target_dateofacceptance":{"type":"DATE","value":"2009-09-30"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::5e9f92a01c986bafcabbafd145520b13"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00833801v1\",\"titles\":[\"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\\u0027étude 2007-2008\"],\"abstracts\":[\"Mise à disposition du document numérique avec l\\u0027aimable autorisation de l\\u0027éditeur\",\"International audience\",\"The research on urban atmospheres goes along with the idea to produce a knowledge that can be useful for urban planners. My presentation acts in the assumption that research should establish a typology of atmospheres if it wants to besom an instrument for planners. I will present three types of urban atmospheres that result from a research project. Discussing the conditions of the emergence of the tree types of atmospheres I will show that there are a number of environmental factors that cannot be controlled by urban planners. I conclude that a typology can nevertheless help to understand the elements that influence the appearance of urban atmospheres and therefore facilitate the communication among planners about the lived quality of urban space.\"],\"language\":\"fra/fre\",\"subjects\":[\"perception\",\"sensible\",\"architecture\",\"[SHS.ARCHI] Humanities and Social Sciences/Architecture, space management\",\"[SHS.SOCIO] Humanities and Social Sciences/Sociology\",\"[SHS.PHIL] Humanities and Social Sciences/Philosophy\"],\"creators\":[\"Blum, Élisabeth\"],\"publicationdate\":\"2008-09-10\",\"publisher\":\"A la Croisée\",\"embargoenddate\":\"\",\"contributor\":[\"University of Applied Sciences and Arts, Zurich ; University of Applied Sciences and Arts, Zurich\",\"Jean-François Augoyard\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00833801\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00833801\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00833801\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00833801\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00833801\"},\"trust\":0.47847104}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00833801v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Blum, Élisabeth"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00833801"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["perception","sensible","architecture","[SHS.ARCHI] Humanities and Social Sciences/Architecture, space management","[SHS.SOCIO] Humanities and Social Sciences/Sociology","[SHS.PHIL] Humanities and Social Sciences/Philosophy"]},"trust":{"type":"FLOAT","value":0.47847104},"target_publication_title":{"type":"STRING","value":"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\u0027étude 2007-2008"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-10"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00833801v1\",\"titles\":[\"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\\u0027étude 2007-2008\"],\"abstracts\":[\"Mise à disposition du document numérique avec l\\u0027aimable autorisation de l\\u0027éditeur\",\"International audience\",\"The research on urban atmospheres goes along with the idea to produce a knowledge that can be useful for urban planners. My presentation acts in the assumption that research should establish a typology of atmospheres if it wants to besom an instrument for planners. I will present three types of urban atmospheres that result from a research project. Discussing the conditions of the emergence of the tree types of atmospheres I will show that there are a number of environmental factors that cannot be controlled by urban planners. I conclude that a typology can nevertheless help to understand the elements that influence the appearance of urban atmospheres and therefore facilitate the communication among planners about the lived quality of urban space.\"],\"language\":\"fra/fre\",\"subjects\":[\"perception\",\"sensible\",\"architecture\",\"[SHS.ARCHI] Humanities and Social Sciences/Architecture, space management\",\"[SHS.SOCIO] Humanities and Social Sciences/Sociology\",\"[SHS.PHIL] Humanities and Social Sciences/Philosophy\"],\"creators\":[\"Blum, Élisabeth\"],\"publicationdate\":\"2008-09-10\",\"publisher\":\"A la Croisée\",\"embargoenddate\":\"\",\"contributor\":[\"University of Applied Sciences and Arts, Zurich ; University of Applied Sciences and Arts, Zurich\",\"Jean-François Augoyard\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00833801\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00838013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00838013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00838013\",\"id\":\"oai:HAL:halshs-00838013v1\"},\"trust\":0.0482682}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00833801v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Blum, Élisabeth"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00838013v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["perception","sensible","architecture","[SHS.ARCHI] Humanities and Social Sciences/Architecture, space management","[SHS.SOCIO] Humanities and Social Sciences/Sociology","[SHS.PHIL] Humanities and Social Sciences/Philosophy"]},"trust":{"type":"FLOAT","value":0.0482682},"target_publication_title":{"type":"STRING","value":"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\u0027étude 2007-2008"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-10"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00833801v1\",\"titles\":[\"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\\u0027étude 2007-2008\"],\"abstracts\":[\"Mise à disposition du document numérique avec l\\u0027aimable autorisation de l\\u0027éditeur\",\"International audience\",\"The research on urban atmospheres goes along with the idea to produce a knowledge that can be useful for urban planners. My presentation acts in the assumption that research should establish a typology of atmospheres if it wants to besom an instrument for planners. I will present three types of urban atmospheres that result from a research project. Discussing the conditions of the emergence of the tree types of atmospheres I will show that there are a number of environmental factors that cannot be controlled by urban planners. I conclude that a typology can nevertheless help to understand the elements that influence the appearance of urban atmospheres and therefore facilitate the communication among planners about the lived quality of urban space.\"],\"language\":\"fra/fre\",\"subjects\":[\"perception\",\"sensible\",\"architecture\",\"[SHS.ARCHI] Humanities and Social Sciences/Architecture, space management\",\"[SHS.SOCIO] Humanities and Social Sciences/Sociology\",\"[SHS.PHIL] Humanities and Social Sciences/Philosophy\"],\"creators\":[\"Blum, Élisabeth\"],\"publicationdate\":\"2008-09-10\",\"publisher\":\"A la Croisée\",\"embargoenddate\":\"\",\"contributor\":[\"University of Applied Sciences and Arts, Zurich ; University of Applied Sciences and Arts, Zurich\",\"Jean-François Augoyard\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00833801\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00838013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00838013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00838013\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00838013\"},\"trust\":0.4083913}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00833801v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Blum, Élisabeth"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00838013"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["perception","sensible","architecture","[SHS.ARCHI] Humanities and Social Sciences/Architecture, space management","[SHS.SOCIO] Humanities and Social Sciences/Sociology","[SHS.PHIL] Humanities and Social Sciences/Philosophy"]},"trust":{"type":"FLOAT","value":0.4083913},"target_publication_title":{"type":"STRING","value":"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\u0027étude 2007-2008"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-10"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00833801\",\"titles\":[\"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\\u0027étude 2007-2008\"],\"abstracts\":[\"The research on urban atmospheres goes along with the idea to produce a knowledge that can be useful for urban planners. My presentation acts in the assumption that research should establish a typology of atmospheres if it wants to besom an instrument for planners. I will present three types of urban atmospheres that result from a research project. Discussing the conditions of the emergence of the tree types of atmospheres I will show that there are a number of environmental factors that cannot be controlled by urban planners. I conclude that a typology can nevertheless help to understand the elements that influence the appearance of urban atmospheres and therefore facilitate the communication among planners about the lived quality of urban space.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:ARCHI] Humanities and Social Sciences/Architecture, space management\",\"[SHS:ARCHI] Sciences de l\\u0027Homme et Société/Architecture, aménagement de l\\u0027espace\",\"[SHS:SOCIO] Humanities and Social Sciences/Sociology\",\"[SHS:SOCIO] Sciences de l\\u0027Homme et Société/Sociologie\",\"[SHS:PHIL] Humanities and Social Sciences/Philosophy\",\"[SHS:PHIL] Sciences de l\\u0027Homme et Société/Philosophie\",\"architecture\",\"sensible\",\"perception\"],\"creators\":[\"Blum, Élisabeth\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00833801\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00833801\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00833801\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00833801\",\"id\":\"oai:HAL:halshs-00833801v1\"},\"trust\":0.084709585}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00833801"},"target_publication_author_list":{"type":"LIST_STRING","value":["Blum, Élisabeth"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00833801v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:ARCHI] Humanities and Social Sciences/Architecture, space management","[SHS:ARCHI] Sciences de l\u0027Homme et Société/Architecture, aménagement de l\u0027espace","[SHS:SOCIO] Humanities and Social Sciences/Sociology","[SHS:SOCIO] Sciences de l\u0027Homme et Société/Sociologie","[SHS:PHIL] Humanities and Social Sciences/Philosophy","[SHS:PHIL] Sciences de l\u0027Homme et Société/Philosophie","architecture","sensible","perception"]},"trust":{"type":"FLOAT","value":0.084709585},"target_publication_title":{"type":"STRING","value":"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\u0027étude 2007-2008"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00833801\",\"titles\":[\"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\\u0027étude 2007-2008\"],\"abstracts\":[\"The research on urban atmospheres goes along with the idea to produce a knowledge that can be useful for urban planners. My presentation acts in the assumption that research should establish a typology of atmospheres if it wants to besom an instrument for planners. I will present three types of urban atmospheres that result from a research project. Discussing the conditions of the emergence of the tree types of atmospheres I will show that there are a number of environmental factors that cannot be controlled by urban planners. I conclude that a typology can nevertheless help to understand the elements that influence the appearance of urban atmospheres and therefore facilitate the communication among planners about the lived quality of urban space.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:ARCHI] Humanities and Social Sciences/Architecture, space management\",\"[SHS:ARCHI] Sciences de l\\u0027Homme et Société/Architecture, aménagement de l\\u0027espace\",\"[SHS:SOCIO] Humanities and Social Sciences/Sociology\",\"[SHS:SOCIO] Sciences de l\\u0027Homme et Société/Sociologie\",\"[SHS:PHIL] Humanities and Social Sciences/Philosophy\",\"[SHS:PHIL] Sciences de l\\u0027Homme et Société/Philosophie\",\"architecture\",\"sensible\",\"perception\"],\"creators\":[\"Blum, Élisabeth\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00833801\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00838013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00838013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00838013\",\"id\":\"oai:HAL:halshs-00838013v1\"},\"trust\":0.4206434}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00833801"},"target_publication_author_list":{"type":"LIST_STRING","value":["Blum, Élisabeth"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00838013v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:ARCHI] Humanities and Social Sciences/Architecture, space management","[SHS:ARCHI] Sciences de l\u0027Homme et Société/Architecture, aménagement de l\u0027espace","[SHS:SOCIO] Humanities and Social Sciences/Sociology","[SHS:SOCIO] Sciences de l\u0027Homme et Société/Sociologie","[SHS:PHIL] Humanities and Social Sciences/Philosophy","[SHS:PHIL] Sciences de l\u0027Homme et Société/Philosophie","architecture","sensible","perception"]},"trust":{"type":"FLOAT","value":0.4206434},"target_publication_title":{"type":"STRING","value":"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\u0027étude 2007-2008"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:halshs.archives-ouvertes.fr:halshs-00833801\",\"titles\":[\"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\\u0027étude 2007-2008\"],\"abstracts\":[\"The research on urban atmospheres goes along with the idea to produce a knowledge that can be useful for urban planners. My presentation acts in the assumption that research should establish a typology of atmospheres if it wants to besom an instrument for planners. I will present three types of urban atmospheres that result from a research project. Discussing the conditions of the emergence of the tree types of atmospheres I will show that there are a number of environmental factors that cannot be controlled by urban planners. I conclude that a typology can nevertheless help to understand the elements that influence the appearance of urban atmospheres and therefore facilitate the communication among planners about the lived quality of urban space.\"],\"language\":\"fra/fre\",\"subjects\":[\"[SHS:ARCHI] Humanities and Social Sciences/Architecture, space management\",\"[SHS:ARCHI] Sciences de l\\u0027Homme et Société/Architecture, aménagement de l\\u0027espace\",\"[SHS:SOCIO] Humanities and Social Sciences/Sociology\",\"[SHS:SOCIO] Sciences de l\\u0027Homme et Société/Sociologie\",\"[SHS:PHIL] Humanities and Social Sciences/Philosophy\",\"[SHS:PHIL] Sciences de l\\u0027Homme et Société/Philosophie\",\"architecture\",\"sensible\",\"perception\"],\"creators\":[\"Blum, Élisabeth\"],\"publicationdate\":\"2011-01-01\",\"publisher\":\"\",\"embargoenddate\":\"\",\"contributor\":[],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00833801\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00838013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00838013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00838013\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00838013\"},\"trust\":0.035185754}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:halshs.archives-ouvertes.fr:halshs-00833801"},"target_publication_author_list":{"type":"LIST_STRING","value":["Blum, Élisabeth"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00838013"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["[SHS:ARCHI] Humanities and Social Sciences/Architecture, space management","[SHS:ARCHI] Sciences de l\u0027Homme et Société/Architecture, aménagement de l\u0027espace","[SHS:SOCIO] Humanities and Social Sciences/Sociology","[SHS:SOCIO] Sciences de l\u0027Homme et Société/Sociologie","[SHS:PHIL] Humanities and Social Sciences/Philosophy","[SHS:PHIL] Sciences de l\u0027Homme et Société/Philosophie","architecture","sensible","perception"]},"trust":{"type":"FLOAT","value":0.035185754},"target_publication_title":{"type":"STRING","value":"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\u0027étude 2007-2008"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2011-01-01"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00838013v1\",\"titles\":[\"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\\u0027étude 2007-2008\"],\"abstracts\":[\"Mise à disposition du document numérique avec l\\u0027aimable autorisation de l\\u0027éditeur\",\"International audience\",\"The research on urban atmospheres goes along with the idea to produce a knowledge that can be useful for urban planners. My presentation acts in the assumption that research should establish a typology of atmospheres if it wants to besome an instrument for planners. I will present three types of urban atmospheres that result from a research project. Discussing the conditions of the emergence of the tree types of atmospheres I will shwo that there are a number of environmental factors that cannot be controlled by urban planners. I conclude that a typology can nevertheless help to understand the elements that influence the appearance of urban atmospheres and therefore facilitate the communication among planners about the lived quality of urban space.\"],\"language\":\"fra/fre\",\"subjects\":[\"architecture\",\"sensible\",\"perception\",\"[SHS.ARCHI] Humanities and Social Sciences/Architecture, space management\",\"[SHS.SOCIO] Humanities and Social Sciences/Sociology\",\"[SHS.PHIL] Humanities and Social Sciences/Philosophy\"],\"creators\":[\"Blum, Élisabeth\"],\"publicationdate\":\"2008-09-10\",\"publisher\":\"À La Croisée\",\"embargoenddate\":\"\",\"contributor\":[\"University of Applied Sciences and Arts, Zurich ; University of Applied Sciences and Arts, Zurich\",\"Augoyard, Jean-François\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00838013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00833801\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00833801\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00833801\",\"id\":\"oai:HAL:halshs-00833801v1\"},\"trust\":0.914333}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00838013v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Blum, Élisabeth"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:HAL:halshs-00833801v1"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["architecture","sensible","perception","[SHS.ARCHI] Humanities and Social Sciences/Architecture, space management","[SHS.SOCIO] Humanities and Social Sciences/Sociology","[SHS.PHIL] Humanities and Social Sciences/Philosophy"]},"trust":{"type":"FLOAT","value":0.914333},"target_publication_title":{"type":"STRING","value":"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\u0027étude 2007-2008"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-10"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00838013v1\",\"titles\":[\"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\\u0027étude 2007-2008\"],\"abstracts\":[\"Mise à disposition du document numérique avec l\\u0027aimable autorisation de l\\u0027éditeur\",\"International audience\",\"The research on urban atmospheres goes along with the idea to produce a knowledge that can be useful for urban planners. My presentation acts in the assumption that research should establish a typology of atmospheres if it wants to besome an instrument for planners. I will present three types of urban atmospheres that result from a research project. Discussing the conditions of the emergence of the tree types of atmospheres I will shwo that there are a number of environmental factors that cannot be controlled by urban planners. I conclude that a typology can nevertheless help to understand the elements that influence the appearance of urban atmospheres and therefore facilitate the communication among planners about the lived quality of urban space.\"],\"language\":\"fra/fre\",\"subjects\":[\"architecture\",\"sensible\",\"perception\",\"[SHS.ARCHI] Humanities and Social Sciences/Architecture, space management\",\"[SHS.SOCIO] Humanities and Social Sciences/Sociology\",\"[SHS.PHIL] Humanities and Social Sciences/Philosophy\"],\"creators\":[\"Blum, Élisabeth\"],\"publicationdate\":\"2008-09-10\",\"publisher\":\"À La Croisée\",\"embargoenddate\":\"\",\"contributor\":[\"University of Applied Sciences and Arts, Zurich ; University of Applied Sciences and Arts, Zurich\",\"Augoyard, Jean-François\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00838013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00833801\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00833801\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00833801\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00833801\"},\"trust\":0.869572}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00838013v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Blum, Élisabeth"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00833801"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["architecture","sensible","perception","[SHS.ARCHI] Humanities and Social Sciences/Architecture, space management","[SHS.SOCIO] Humanities and Social Sciences/Sociology","[SHS.PHIL] Humanities and Social Sciences/Philosophy"]},"trust":{"type":"FLOAT","value":0.869572},"target_publication_title":{"type":"STRING","value":"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\u0027étude 2007-2008"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-10"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} - {"producerId":"OpenAIRE","topic":"ENRICH/MORE/OPENACCESS_VERSION","payload":"{\"publication\":{\"originalId\":\"oai:HAL:halshs-00838013v1\",\"titles\":[\"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\\u0027étude 2007-2008\"],\"abstracts\":[\"Mise à disposition du document numérique avec l\\u0027aimable autorisation de l\\u0027éditeur\",\"International audience\",\"The research on urban atmospheres goes along with the idea to produce a knowledge that can be useful for urban planners. My presentation acts in the assumption that research should establish a typology of atmospheres if it wants to besome an instrument for planners. I will present three types of urban atmospheres that result from a research project. Discussing the conditions of the emergence of the tree types of atmospheres I will shwo that there are a number of environmental factors that cannot be controlled by urban planners. I conclude that a typology can nevertheless help to understand the elements that influence the appearance of urban atmospheres and therefore facilitate the communication among planners about the lived quality of urban space.\"],\"language\":\"fra/fre\",\"subjects\":[\"architecture\",\"sensible\",\"perception\",\"[SHS.ARCHI] Humanities and Social Sciences/Architecture, space management\",\"[SHS.SOCIO] Humanities and Social Sciences/Sociology\",\"[SHS.PHIL] Humanities and Social Sciences/Philosophy\"],\"creators\":[\"Blum, Élisabeth\"],\"publicationdate\":\"2008-09-10\",\"publisher\":\"À La Croisée\",\"embargoenddate\":\"\",\"contributor\":[\"University of Applied Sciences and Arts, Zurich ; University of Applied Sciences and Arts, Zurich\",\"Augoyard, Jean-François\"],\"journal\":{\"name\":\"\",\"issn\":\"\",\"eissn\":\"\",\"lissn\":\"\"},\"collectedFrom\":[\"INRIA a CCSD electronic archive server\"],\"pids\":[],\"instances\":[{\"url\":\"https://halshs.archives-ouvertes.fr/halshs-00838013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Unknown\"},{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00838013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}],\"externalReferences\":[]},\"highlight\":{\"instances\":[{\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00838013\",\"license\":\"OPEN\",\"hostedby\":\"INRIA a CCSD electronic archive server\",\"instancetype\":\"Conference object\"}]},\"provenance\":{\"repositoryName\":\"INRIA a CCSD electronic archive server\",\"url\":\"http://halshs.archives-ouvertes.fr/halshs-00838013\",\"id\":\"oai:halshs.archives-ouvertes.fr:halshs-00838013\"},\"trust\":0.58219856}","tthDays":0,"map":{"target_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_publication_id":{"type":"STRING","value":"oai:HAL:halshs-00838013v1"},"target_publication_author_list":{"type":"LIST_STRING","value":["Blum, Élisabeth"]},"provenance_publication_id_list":{"type":"LIST_STRING","value":["oai:halshs.archives-ouvertes.fr:halshs-00838013"]},"provenance_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"},"target_publication_subject_list":{"type":"LIST_STRING","value":["architecture","sensible","perception","[SHS.ARCHI] Humanities and Social Sciences/Architecture, space management","[SHS.SOCIO] Humanities and Social Sciences/Sociology","[SHS.PHIL] Humanities and Social Sciences/Philosophy"]},"trust":{"type":"FLOAT","value":0.58219856},"target_publication_title":{"type":"STRING","value":"Lucerne laboratoire urbain (SLL) : Ambiances induites par des espaces et des objets urbains un projet d\u0027étude 2007-2008"},"provenance_datasource_name":{"type":"STRING","value":"INRIA a CCSD electronic archive server"},"target_dateofacceptance":{"type":"DATE","value":"2008-09-10"},"target_datasource_id":{"type":"STRING","value":"10|opendoar____::9766527f2b5d3e95d4a733fcfb77bd7e"}}} diff --git a/dhp-broker-application/.svn/pristine/1d/1d970a9661ad72a8f713451e1e1263a87cfd7499.svn-base b/dhp-broker-application/.svn/pristine/1d/1d970a9661ad72a8f713451e1e1263a87cfd7499.svn-base deleted file mode 100644 index f87bc080..00000000 --- a/dhp-broker-application/.svn/pristine/1d/1d970a9661ad72a8f713451e1e1263a87cfd7499.svn-base +++ /dev/null @@ -1,49 +0,0 @@ - - - - OpenAIRE - Literature Broker Service - - - - - - - - - - - - - - - - - - - - - -
- - - diff --git a/dhp-broker-application/.svn/pristine/1e/1edbdd1628d179615828b993fd89124227174094.svn-base b/dhp-broker-application/.svn/pristine/1e/1edbdd1628d179615828b993fd89124227174094.svn-base deleted file mode 100644 index 6abda848..00000000 --- a/dhp-broker-application/.svn/pristine/1e/1edbdd1628d179615828b993fd89124227174094.svn-base +++ /dev/null @@ -1,21 +0,0 @@ -package eu.dnetlib.lbs.controllers.objects; - -public class Tool { - - private final String name; - private final String url; - - public Tool(final String name, final String url) { - this.name = name; - this.url = url; - } - - public String getName() { - return this.name; - } - - public String getUrl() { - return this.url; - } - -} diff --git a/dhp-broker-application/.svn/pristine/20/2099f7a8cf6f73ae42d8d7f2f4c60dcdbb4479cf.svn-base b/dhp-broker-application/.svn/pristine/20/2099f7a8cf6f73ae42d8d7f2f4c60dcdbb4479cf.svn-base deleted file mode 100644 index b10e3e97..00000000 --- a/dhp-broker-application/.svn/pristine/20/2099f7a8cf6f73ae42d8d7f2f4c60dcdbb4479cf.svn-base +++ /dev/null @@ -1,314 +0,0 @@ -/* - AngularJS v1.5.5 - (c) 2010-2016 Google, Inc. http://angularjs.org - License: MIT -*/ -(function(v){'use strict';function O(a){return function(){var b=arguments[0],d;d="["+(a?a+":":"")+b+"] http://errors.angularjs.org/1.5.5/"+(a?a+"/":"")+b;for(b=1;b").append(a).html();try{return a[0].nodeType===Ma?P(d):d.match(/^(<[^>]+>)/)[1].replace(/^<([\w\-]+)/,function(a,b){return"<"+P(b)})}catch(c){return P(d)}} -function wc(a){try{return decodeURIComponent(a)}catch(b){}}function xc(a){var b={};q((a||"").split("&"),function(a){var c,e,f;a&&(e=a=a.replace(/\+/g,"%20"),c=a.indexOf("="),-1!==c&&(e=a.substring(0,c),f=a.substring(c+1)),e=wc(e),x(e)&&(f=x(f)?wc(f):!0,ua.call(b,e)?K(b[e])?b[e].push(f):b[e]=[b[e],f]:b[e]=f))});return b}function Rb(a){var b=[];q(a,function(a,c){K(a)?q(a,function(a){b.push(ja(c,!0)+(!0===a?"":"="+ja(a,!0)))}):b.push(ja(c,!0)+(!0===a?"":"="+ja(a,!0)))});return b.length?b.join("&"):""} -function ob(a){return ja(a,!0).replace(/%26/gi,"&").replace(/%3D/gi,"=").replace(/%2B/gi,"+")}function ja(a,b){return encodeURIComponent(a).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%3B/gi,";").replace(/%20/g,b?"%20":"+")}function de(a,b){var d,c,e=Na.length;for(c=0;c/,">"));}b=b||[];b.unshift(["$provide",function(b){b.value("$rootElement",a)}]);d.debugInfoEnabled&&b.push(["$compileProvider",function(a){a.debugInfoEnabled(!0)}]); -b.unshift("ng");c=bb(b,d.strictDi);c.invoke(["$rootScope","$rootElement","$compile","$injector",function(a,b,c,d){a.$apply(function(){b.data("$injector",d);c(b)(a)})}]);return c},e=/^NG_ENABLE_DEBUG_INFO!/,f=/^NG_DEFER_BOOTSTRAP!/;v&&e.test(v.name)&&(d.debugInfoEnabled=!0,v.name=v.name.replace(e,""));if(v&&!f.test(v.name))return c();v.name=v.name.replace(f,"");ea.resumeBootstrap=function(a){q(a,function(a){b.push(a)});return c()};E(ea.resumeDeferredBootstrap)&&ea.resumeDeferredBootstrap()}function fe(){v.name= -"NG_ENABLE_DEBUG_INFO!"+v.name;v.location.reload()}function ge(a){a=ea.element(a).injector();if(!a)throw Aa("test");return a.get("$$testability")}function zc(a,b){b=b||"_";return a.replace(he,function(a,c){return(c?b:"")+a.toLowerCase()})}function ie(){var a;if(!Ac){var b=pb();(Z=y(b)?v.jQuery:b?v[b]:void 0)&&Z.fn.on?(B=Z,R(Z.fn,{scope:Oa.scope,isolateScope:Oa.isolateScope,controller:Oa.controller,injector:Oa.injector,inheritedData:Oa.inheritedData}),a=Z.cleanData,Z.cleanData=function(b){for(var c, -e=0,f;null!=(f=b[e]);e++)(c=Z._data(f,"events"))&&c.$destroy&&Z(f).triggerHandler("$destroy");a(b)}):B=U;ea.element=B;Ac=!0}}function qb(a,b,d){if(!a)throw Aa("areq",b||"?",d||"required");return a}function Pa(a,b,d){d&&K(a)&&(a=a[a.length-1]);qb(E(a),b,"not a function, got "+(a&&"object"===typeof a?a.constructor.name||"Object":typeof a));return a}function Qa(a,b){if("hasOwnProperty"===a)throw Aa("badname",b);}function Bc(a,b,d){if(!b)return a;b=b.split(".");for(var c,e=a,f=b.length,g=0;g")+c[2];for(c=c[0];c--;)d=d.lastChild;f=$a(f,d.childNodes);d=e.firstChild;d.textContent=""}else f.push(b.createTextNode(a));e.textContent="";e.innerHTML="";q(f,function(a){e.appendChild(a)}); -return e}function Mc(a,b){var d=a.parentNode;d&&d.replaceChild(b,a);b.appendChild(a)}function U(a){if(a instanceof U)return a;var b;F(a)&&(a=V(a),b=!0);if(!(this instanceof U)){if(b&&"<"!=a.charAt(0))throw Ub("nosel");return new U(a)}if(b){b=v.document;var d;a=(d=Mf.exec(a))?[b.createElement(d[1])]:(d=Lc(a,b))?d.childNodes:[]}Nc(this,a)}function Vb(a){return a.cloneNode(!0)}function ub(a,b){b||db(a);if(a.querySelectorAll)for(var d=a.querySelectorAll("*"),c=0,e=d.length;c=Ca?!1:"function"===typeof a&&/^(?:class\s|constructor\()/.test(Function.prototype.toString.call(a));return d?(c.unshift(null),new (Function.prototype.bind.apply(a,c))):a.apply(b,c)},instantiate:function(a,b,c){var d=K(a)?a[a.length-1]:a;a=e(a,b,c);a.unshift(null);return new (Function.prototype.bind.apply(d, -a))},get:d,annotate:bb.$$annotate,has:function(b){return m.hasOwnProperty(b+"Provider")||a.hasOwnProperty(b)}}}b=!0===b;var k={},l=[],n=new Ra([],!0),m={$provide:{provider:d(c),factory:d(f),service:d(function(a,b){return f(a,["$injector",function(a){return a.instantiate(b)}])}),value:d(function(a,b){return f(a,da(b),!1)}),constant:d(function(a,b){Qa(a,"constant");m[a]=b;N[a]=b}),decorator:function(a,b){var c=r.get(a+"Provider"),d=c.$get;c.$get=function(){var a=w.invoke(d,c);return w.invoke(b,null, -{$delegate:a})}}}},r=m.$injector=h(m,function(a,b){ea.isString(b)&&l.push(b);throw Ga("unpr",l.join(" <- "));}),N={},M=h(N,function(a,b){var c=r.get(a+"Provider",b);return w.invoke(c.$get,c,void 0,a)}),w=M;m.$injectorProvider={$get:da(M)};var p=g(a),w=M.get("$injector");w.strictDi=b;q(p,function(a){a&&w.invoke(a)});return w}function We(){var a=!0;this.disableAutoScrolling=function(){a=!1};this.$get=["$window","$location","$rootScope",function(b,d,c){function e(a){var b=null;Array.prototype.some.call(a, -function(a){if("a"===va(a))return b=a,!0});return b}function f(a){if(a){a.scrollIntoView();var c;c=g.yOffset;E(c)?c=c():Ob(c)?(c=c[0],c="fixed"!==b.getComputedStyle(c).position?0:c.getBoundingClientRect().bottom):Q(c)||(c=0);c&&(a=a.getBoundingClientRect().top,b.scrollBy(0,a-c))}else b.scrollTo(0,0)}function g(a){a=F(a)?a:d.hash();var b;a?(b=h.getElementById(a))?f(b):(b=e(h.getElementsByName(a)))?f(b):"top"===a&&f(null):f(null)}var h=b.document;a&&c.$watch(function(){return d.hash()},function(a,b){a=== -b&&""===a||Of(function(){c.$evalAsync(g)})});return g}]}function fb(a,b){if(!a&&!b)return"";if(!a)return b;if(!b)return a;K(a)&&(a=a.join(" "));K(b)&&(b=b.join(" "));return a+" "+b}function Xf(a){F(a)&&(a=a.split(" "));var b=T();q(a,function(a){a.length&&(b[a]=!0)});return b}function Ha(a){return G(a)?a:{}}function Yf(a,b,d,c){function e(a){try{a.apply(null,za.call(arguments,1))}finally{if(M--,0===M)for(;w.length;)try{w.pop()()}catch(b){d.error(b)}}}function f(){u=null;g();h()}function g(){p=I(); -p=y(p)?null:p;pa(p,L)&&(p=L);L=p}function h(){if(t!==k.url()||H!==p)t=k.url(),H=p,q(J,function(a){a(k.url(),p)})}var k=this,l=a.location,n=a.history,m=a.setTimeout,r=a.clearTimeout,N={};k.isMock=!1;var M=0,w=[];k.$$completeOutstandingRequest=e;k.$$incOutstandingRequestCount=function(){M++};k.notifyWhenNoOutstandingRequests=function(a){0===M?a():w.push(a)};var p,H,t=l.href,z=b.find("base"),u=null,I=c.history?function(){try{return n.state}catch(a){}}:C;g();H=p;k.url=function(b,d,e){y(e)&&(e=null);l!== -a.location&&(l=a.location);n!==a.history&&(n=a.history);if(b){var f=H===e;if(t===b&&(!c.history||f))return k;var h=t&&Ia(t)===Ia(b);t=b;H=e;if(!c.history||h&&f){if(!h||u)u=b;d?l.replace(b):h?(d=l,e=b.indexOf("#"),e=-1===e?"":b.substr(e),d.hash=e):l.href=b;l.href!==b&&(u=b)}else n[d?"replaceState":"pushState"](e,"",b),g(),H=p;return k}return u||l.href.replace(/%27/g,"'")};k.state=function(){return p};var J=[],D=!1,L=null;k.onUrlChange=function(b){if(!D){if(c.history)B(a).on("popstate",f);B(a).on("hashchange", -f);D=!0}J.push(b);return b};k.$$applicationDestroyed=function(){B(a).off("hashchange popstate",f)};k.$$checkUrlChange=h;k.baseHref=function(){var a=z.attr("href");return a?a.replace(/^(https?\:)?\/\/[^\/]*/,""):""};k.defer=function(a,b){var c;M++;c=m(function(){delete N[c];e(a)},b||0);N[c]=!0;return c};k.defer.cancel=function(a){return N[a]?(delete N[a],r(a),e(C),!0):!1}}function cf(){this.$get=["$window","$log","$sniffer","$document",function(a,b,d,c){return new Yf(a,c,b,d)}]}function df(){this.$get= -function(){function a(a,c){function e(a){a!=m&&(r?r==a&&(r=a.n):r=a,f(a.n,a.p),f(a,m),m=a,m.n=null)}function f(a,b){a!=b&&(a&&(a.p=b),b&&(b.n=a))}if(a in b)throw O("$cacheFactory")("iid",a);var g=0,h=R({},c,{id:a}),k=T(),l=c&&c.capacity||Number.MAX_VALUE,n=T(),m=null,r=null;return b[a]={put:function(a,b){if(!y(b)){if(ll&&this.remove(r.key);return b}},get:function(a){if(l";b=na.firstChild.attributes;var d=b[0];b.removeNamedItem(d.name);d.value=c;a.attributes.setNamedItem(d)}function A(a,b){try{a.addClass(b)}catch(c){}}function ba(a,b,c,d,e){a instanceof B||(a=B(a));for(var f=/\S+/,g=0,h=a.length;g").append(a).html())):c?Oa.clone.call(a):a;if(g)for(var h in g)d.data("$"+h+"Controller",g[h].instance);ba.$$addScopeInfo(d,b);c&&c(d,b);l&&l(b,d,d,f);return d}}function s(a,b,c,d,e,f){function g(a, -c,d,e){var f,k,l,m,n,t,p;if(r)for(p=Array(c.length),m=0;mA.priority)break;if(v=A.scope)A.templateUrl||(G(v)?(W("new/isolated scope",D||r,A,z),D=A):W("new/isolated scope",D,A,z)),r=r||A;M=A.name;if(!ka&&(A.replace&&(A.templateUrl||A.template)||A.transclude&&!A.$$tlb)){for(v=F+1;ka=a[v++];)if(ka.transclude&&!ka.$$tlb||ka.replace&&(ka.templateUrl||ka.template)){C=!0;break}ka=!0}!A.templateUrl&&A.controller&&(v=A.controller,I=I||T(),W("'"+M+"' controller",I[M],A,z),I[M]=A);if(v=A.transclude)if(u=!0,A.$$tlb||(W("transclusion",w,A,z),w=A),"element"==v)H= -!0,t=A.priority,$=z,z=d.$$element=B(ba.$$createComment(M,d[M])),b=z[0],da(f,za.call($,0),b),$[0].$$parentNode=$[0].parentNode,s=Yb(C,$,e,t,g&&g.name,{nonTlbTranscludeDirective:w});else{var la=T();$=B(Vb(b)).contents();if(G(v)){$=[];var Y=T(),X=T();q(v,function(a,b){var c="?"===a.charAt(0);a=c?a.substring(1):a;Y[a]=b;la[b]=null;X[b]=c});q(z.contents(),function(a){var b=Y[xa(va(a))];b?(X[b]=!0,la[b]=la[b]||[],la[b].push(a)):$.push(a)});q(X,function(a,b){if(!a)throw ga("reqslot",b);});for(var Z in la)la[Z]&& -(la[Z]=Yb(C,la[Z],e))}z.empty();s=Yb(C,$,e,void 0,void 0,{needsNewScope:A.$$isolateScope||A.$$newScope});s.$$slots=la}if(A.template)if(L=!0,W("template",J,A,z),J=A,v=E(A.template)?A.template(z,d):A.template,v=ta(v),A.replace){g=A;$=Tb.test(v)?Yc(ca(A.templateNamespace,V(v))):[];b=$[0];if(1!=$.length||1!==b.nodeType)throw ga("tplrt",M,"");da(f,z,b);Ba={$attr:{}};v=x(b,[],Ba);var ea=a.splice(F+1,a.length-(F+1));(D||r)&&Zc(v,D,r);a=a.concat(v).concat(ea);U(d,Ba);Ba=a.length}else z.html(v);if(A.templateUrl)L= -!0,W("template",J,A,z),J=A,A.replace&&(g=A),n=aa(a.splice(F,a.length-F),z,d,f,u&&s,h,k,{controllerDirectives:I,newScopeDirective:r!==A&&r,newIsolateScopeDirective:D,templateDirective:J,nonTlbTranscludeDirective:w}),Ba=a.length;else if(A.compile)try{Sa=A.compile(z,d,s),E(Sa)?m(null,Sa,P,Q):Sa&&m(Sa.pre,Sa.post,P,Q)}catch(fa){c(fa,wa(z))}A.terminal&&(n.terminal=!0,t=Math.max(t,A.priority))}n.scope=r&&!0===r.scope;n.transcludeOnThisElement=u;n.templateOnThisElement=L;n.transclude=s;l.hasElementTranscludeDirective= -H;return n}function gb(a,b,c,d){var e;if(F(b)){var f=b.match(k);b=b.substring(f[0].length);var g=f[1]||f[3],f="?"===f[2];"^^"===g?c=c.parent():e=(e=d&&d[b])&&e.instance;if(!e){var h="$"+b+"Controller";e=g?c.inheritedData(h):c.data(h)}if(!e&&!f)throw ga("ctreq",b,a);}else if(K(b))for(e=[],g=0,f=b.length;gn.priority)&&-1!=n.restrict.indexOf(g)){l&&(n=Pb(n,{$$start:l,$$end:m}));if(!n.$$bindings){var I= -n,D=n,A=n.name,J={isolateScope:null,bindToController:null};G(D.scope)&&(!0===D.bindToController?(J.bindToController=d(D.scope,A,!0),J.isolateScope={}):J.isolateScope=d(D.scope,A,!1));G(D.bindToController)&&(J.bindToController=d(D.bindToController,A,!0));if(G(J.bindToController)){var w=D.controller,z=D.controllerAs;if(!w)throw ga("noctrl",A);if(!Uc(w,z))throw ga("noident",A);}var u=I.$$bindings=J;G(u.isolateScope)&&(n.$$isolateBindings=u.isolateScope)}b.push(n);k=n}}catch(L){c(L)}}return k}function Q(b){if(e.hasOwnProperty(b))for(var c= -a.get(b+"Directive"),d=0,f=c.length;d"+b+"";return c.childNodes[0].childNodes;default:return b}}function ea(a,b){if("srcdoc"==b)return I.HTML;var c=va(a);if("xlinkHref"==b||"form"==c&&"action"==b||"img"!=c&&("src"==b||"ngSrc"==b))return I.RESOURCE_URL}function fa(a,c,d,e,f){var g=ea(a,e);f=h[e]||f;var k=b(d,!0,g,f);if(k){if("multiple"===e&&"select"===va(a))throw ga("selmulti",wa(a));c.push({priority:100,compile:function(){return{pre:function(a, -c,h){c=h.$$observers||(h.$$observers=T());if(l.test(e))throw ga("nodomevents");var m=h[e];m!==d&&(k=m&&b(m,!0,g,f),d=m);k&&(h[e]=k(a),(c[e]||(c[e]=[])).$$inter=!0,(h.$$observers&&h.$$observers[e].$$scope||a).$watch(k,function(a,b){"class"===e&&a!=b?h.$updateClass(a,b):h.$set(e,a)}))}}}})}}function da(a,b,c){var d=b[0],e=b.length,f=d.parentNode,g,h;if(a)for(g=0,h=a.length;g=b)return a;for(;b--;)8===a[b].nodeType&&Zf.call(a,b,1);return a}function Uc(a, -b){if(b&&F(b))return b;if(F(a)){var d=bd.exec(a);if(d)return d[3]}}function ef(){var a={},b=!1;this.has=function(b){return a.hasOwnProperty(b)};this.register=function(b,c){Qa(b,"controller");G(b)?R(a,b):a[b]=c};this.allowGlobals=function(){b=!0};this.$get=["$injector","$window",function(d,c){function e(a,b,c,d){if(!a||!G(a.$scope))throw O("$controller")("noscp",d,b);a.$scope[b]=c}return function(f,g,h,k){var l,n,m;h=!0===h;k&&F(k)&&(m=k);if(F(f)){k=f.match(bd);if(!k)throw $f("ctrlfmt",f);n=k[1];m= -m||k[3];f=a.hasOwnProperty(n)?a[n]:Bc(g.$scope,n,!0)||(b?Bc(c,n,!0):void 0);Pa(f,n,!0)}if(h)return h=(K(f)?f[f.length-1]:f).prototype,l=Object.create(h||null),m&&e(g,m,l,n||f.name),R(function(){var a=d.invoke(f,l,g,n);a!==l&&(G(a)||E(a))&&(l=a,m&&e(g,m,l,n||f.name));return l},{instance:l,identifier:m});l=d.instantiate(f,g,n);m&&e(g,m,l,n||f.name);return l}}]}function ff(){this.$get=["$window",function(a){return B(a.document)}]}function gf(){this.$get=["$log",function(a){return function(b,d){a.error.apply(a, -arguments)}}]}function $b(a){return G(a)?fa(a)?a.toISOString():ab(a):a}function mf(){this.$get=function(){return function(a){if(!a)return"";var b=[];pc(a,function(a,c){null===a||y(a)||(K(a)?q(a,function(a){b.push(ja(c)+"="+ja($b(a)))}):b.push(ja(c)+"="+ja($b(a))))});return b.join("&")}}}function nf(){this.$get=function(){return function(a){function b(a,e,f){null===a||y(a)||(K(a)?q(a,function(a,c){b(a,e+"["+(G(a)?c:"")+"]")}):G(a)&&!fa(a)?pc(a,function(a,c){b(a,e+(f?"":"[")+c+(f?"":"]"))}):d.push(ja(e)+ -"="+ja($b(a))))}if(!a)return"";var d=[];b(a,"",!0);return d.join("&")}}}function ac(a,b){if(F(a)){var d=a.replace(ag,"").trim();if(d){var c=b("Content-Type");(c=c&&0===c.indexOf(cd))||(c=(c=d.match(bg))&&cg[c[0]].test(d));c&&(a=uc(d))}}return a}function dd(a){var b=T(),d;F(a)?q(a.split("\n"),function(a){d=a.indexOf(":");var e=P(V(a.substr(0,d)));a=V(a.substr(d+1));e&&(b[e]=b[e]?b[e]+", "+a:a)}):G(a)&&q(a,function(a,d){var f=P(d),g=V(a);f&&(b[f]=b[f]?b[f]+", "+g:g)});return b}function ed(a){var b; -return function(d){b||(b=dd(a));return d?(d=b[P(d)],void 0===d&&(d=null),d):b}}function fd(a,b,d,c){if(E(c))return c(a,b,d);q(c,function(c){a=c(a,b,d)});return a}function lf(){var a=this.defaults={transformResponse:[ac],transformRequest:[function(a){return G(a)&&"[object File]"!==ma.call(a)&&"[object Blob]"!==ma.call(a)&&"[object FormData]"!==ma.call(a)?ab(a):a}],headers:{common:{Accept:"application/json, text/plain, */*"},post:ha(bc),put:ha(bc),patch:ha(bc)},xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN", -paramSerializer:"$httpParamSerializer"},b=!1;this.useApplyAsync=function(a){return x(a)?(b=!!a,this):b};var d=!0;this.useLegacyPromiseExtensions=function(a){return x(a)?(d=!!a,this):d};var c=this.interceptors=[];this.$get=["$httpBackend","$$cookieReader","$cacheFactory","$rootScope","$q","$injector",function(e,f,g,h,k,l){function n(b){function c(a){var b=R({},a);b.data=fd(a.data,a.headers,a.status,f.transformResponse);a=a.status;return 200<=a&&300>a?b:k.reject(b)}function e(a,b){var c,d={};q(a,function(a, -e){E(a)?(c=a(b),null!=c&&(d[e]=c)):d[e]=a});return d}if(!G(b))throw O("$http")("badreq",b);if(!F(b.url))throw O("$http")("badreq",b.url);var f=R({method:"get",transformRequest:a.transformRequest,transformResponse:a.transformResponse,paramSerializer:a.paramSerializer},b);f.headers=function(b){var c=a.headers,d=R({},b.headers),f,g,h,c=R({},c.common,c[P(b.method)]);a:for(f in c){g=P(f);for(h in d)if(P(h)===g)continue a;d[f]=c[f]}return e(d,ha(b))}(b);f.method=sb(f.method);f.paramSerializer=F(f.paramSerializer)? -l.get(f.paramSerializer):f.paramSerializer;var g=[function(b){var d=b.headers,e=fd(b.data,ed(d),void 0,b.transformRequest);y(e)&&q(d,function(a,b){"content-type"===P(b)&&delete d[b]});y(b.withCredentials)&&!y(a.withCredentials)&&(b.withCredentials=a.withCredentials);return m(b,e).then(c,c)},void 0],h=k.when(f);for(q(M,function(a){(a.request||a.requestError)&&g.unshift(a.request,a.requestError);(a.response||a.responseError)&&g.push(a.response,a.responseError)});g.length;){b=g.shift();var n=g.shift(), -h=h.then(b,n)}d?(h.success=function(a){Pa(a,"fn");h.then(function(b){a(b.data,b.status,b.headers,f)});return h},h.error=function(a){Pa(a,"fn");h.then(null,function(b){a(b.data,b.status,b.headers,f)});return h}):(h.success=gd("success"),h.error=gd("error"));return h}function m(c,d){function g(a){if(a){var c={};q(a,function(a,d){c[d]=function(c){function d(){a(c)}b?h.$applyAsync(d):h.$$phase?d():h.$apply(d)}});return c}}function l(a,c,d,e){function f(){m(c,a,d,e)}L&&(200<=a&&300>a?L.put(A,[a,c,dd(d), -e]):L.remove(A));b?h.$applyAsync(f):(f(),h.$$phase||h.$apply())}function m(a,b,d,e){b=-1<=b?b:0;(200<=b&&300>b?J.resolve:J.reject)({data:a,status:b,headers:ed(d),config:c,statusText:e})}function u(a){m(a.data,a.status,ha(a.headers()),a.statusText)}function I(){var a=n.pendingRequests.indexOf(c);-1!==a&&n.pendingRequests.splice(a,1)}var J=k.defer(),D=J.promise,L,S,M=c.headers,A=r(c.url,c.paramSerializer(c.params));n.pendingRequests.push(c);D.then(I,I);!c.cache&&!a.cache||!1===c.cache||"GET"!==c.method&& -"JSONP"!==c.method||(L=G(c.cache)?c.cache:G(a.cache)?a.cache:N);L&&(S=L.get(A),x(S)?S&&E(S.then)?S.then(u,u):K(S)?m(S[1],S[0],ha(S[2]),S[3]):m(S,200,{},"OK"):L.put(A,D));y(S)&&((S=hd(c.url)?f()[c.xsrfCookieName||a.xsrfCookieName]:void 0)&&(M[c.xsrfHeaderName||a.xsrfHeaderName]=S),e(c.method,A,d,l,M,c.timeout,c.withCredentials,c.responseType,g(c.eventHandlers),g(c.uploadEventHandlers)));return D}function r(a,b){0=l&&(t.resolve(p), -w(z.$$intervalId),delete g[z.$$intervalId]);H||a.$apply()},k);g[z.$$intervalId]=t;return z}var g={};f.cancel=function(a){return a&&a.$$intervalId in g?(g[a.$$intervalId].reject("canceled"),b.clearInterval(a.$$intervalId),delete g[a.$$intervalId],!0):!1};return f}]}function cc(a){a=a.split("/");for(var b=a.length;b--;)a[b]=ob(a[b]);return a.join("/")}function id(a,b){var d=ra(a);b.$$protocol=d.protocol;b.$$host=d.hostname;b.$$port=X(d.port)||eg[d.protocol]||null}function jd(a,b){var d="/"!==a.charAt(0); -d&&(a="/"+a);var c=ra(a);b.$$path=decodeURIComponent(d&&"/"===c.pathname.charAt(0)?c.pathname.substring(1):c.pathname);b.$$search=xc(c.search);b.$$hash=decodeURIComponent(c.hash);b.$$path&&"/"!=b.$$path.charAt(0)&&(b.$$path="/"+b.$$path)}function na(a,b){if(0===b.indexOf(a))return b.substr(a.length)}function Ia(a){var b=a.indexOf("#");return-1==b?a:a.substr(0,b)}function hb(a){return a.replace(/(#.+)|#$/,"$1")}function dc(a,b,d){this.$$html5=!0;d=d||"";id(a,this);this.$$parse=function(a){var d=na(b, -a);if(!F(d))throw Eb("ipthprfx",a,b);jd(d,this);this.$$path||(this.$$path="/");this.$$compose()};this.$$compose=function(){var a=Rb(this.$$search),d=this.$$hash?"#"+ob(this.$$hash):"";this.$$url=cc(this.$$path)+(a?"?"+a:"")+d;this.$$absUrl=b+this.$$url.substr(1)};this.$$parseLinkUrl=function(c,e){if(e&&"#"===e[0])return this.hash(e.slice(1)),!0;var f,g;x(f=na(a,c))?(g=f,g=x(f=na(d,f))?b+(na("/",f)||f):a+g):x(f=na(b,c))?g=b+f:b==c+"/"&&(g=b);g&&this.$$parse(g);return!!g}}function ec(a,b,d){id(a,this); -this.$$parse=function(c){var e=na(a,c)||na(b,c),f;y(e)||"#"!==e.charAt(0)?this.$$html5?f=e:(f="",y(e)&&(a=c,this.replace())):(f=na(d,e),y(f)&&(f=e));jd(f,this);c=this.$$path;var e=a,g=/^\/[A-Z]:(\/.*)/;0===f.indexOf(e)&&(f=f.replace(e,""));g.exec(f)||(c=(f=g.exec(c))?f[1]:c);this.$$path=c;this.$$compose()};this.$$compose=function(){var b=Rb(this.$$search),e=this.$$hash?"#"+ob(this.$$hash):"";this.$$url=cc(this.$$path)+(b?"?"+b:"")+e;this.$$absUrl=a+(this.$$url?d+this.$$url:"")};this.$$parseLinkUrl= -function(b,d){return Ia(a)==Ia(b)?(this.$$parse(b),!0):!1}}function kd(a,b,d){this.$$html5=!0;ec.apply(this,arguments);this.$$parseLinkUrl=function(c,e){if(e&&"#"===e[0])return this.hash(e.slice(1)),!0;var f,g;a==Ia(c)?f=c:(g=na(b,c))?f=a+d+g:b===c+"/"&&(f=b);f&&this.$$parse(f);return!!f};this.$$compose=function(){var b=Rb(this.$$search),e=this.$$hash?"#"+ob(this.$$hash):"";this.$$url=cc(this.$$path)+(b?"?"+b:"")+e;this.$$absUrl=a+d+this.$$url}}function Fb(a){return function(){return this[a]}}function ld(a, -b){return function(d){if(y(d))return this[a];this[a]=b(d);this.$$compose();return this}}function qf(){var a="",b={enabled:!1,requireBase:!0,rewriteLinks:!0};this.hashPrefix=function(b){return x(b)?(a=b,this):a};this.html5Mode=function(a){return Da(a)?(b.enabled=a,this):G(a)?(Da(a.enabled)&&(b.enabled=a.enabled),Da(a.requireBase)&&(b.requireBase=a.requireBase),Da(a.rewriteLinks)&&(b.rewriteLinks=a.rewriteLinks),this):b};this.$get=["$rootScope","$browser","$sniffer","$rootElement","$window",function(d, -c,e,f,g){function h(a,b,d){var e=l.url(),f=l.$$state;try{c.url(a,b,d),l.$$state=c.state()}catch(g){throw l.url(e),l.$$state=f,g;}}function k(a,b){d.$broadcast("$locationChangeSuccess",l.absUrl(),a,l.$$state,b)}var l,n;n=c.baseHref();var m=c.url(),r;if(b.enabled){if(!n&&b.requireBase)throw Eb("nobase");r=m.substring(0,m.indexOf("/",m.indexOf("//")+2))+(n||"/");n=e.history?dc:kd}else r=Ia(m),n=ec;var N=r.substr(0,Ia(r).lastIndexOf("/")+1);l=new n(r,N,"#"+a);l.$$parseLinkUrl(m,m);l.$$state=c.state(); -var q=/^\s*(javascript|mailto):/i;f.on("click",function(a){if(b.rewriteLinks&&!a.ctrlKey&&!a.metaKey&&!a.shiftKey&&2!=a.which&&2!=a.button){for(var e=B(a.target);"a"!==va(e[0]);)if(e[0]===f[0]||!(e=e.parent())[0])return;var h=e.prop("href"),k=e.attr("href")||e.attr("xlink:href");G(h)&&"[object SVGAnimatedString]"===h.toString()&&(h=ra(h.animVal).href);q.test(h)||!h||e.attr("target")||a.isDefaultPrevented()||!l.$$parseLinkUrl(h,k)||(a.preventDefault(),l.absUrl()!=c.url()&&(d.$apply(),g.angular["ff-684208-preventDefault"]= -!0))}});hb(l.absUrl())!=hb(m)&&c.url(l.absUrl(),!0);var w=!0;c.onUrlChange(function(a,b){y(na(N,a))?g.location.href=a:(d.$evalAsync(function(){var c=l.absUrl(),e=l.$$state,f;a=hb(a);l.$$parse(a);l.$$state=b;f=d.$broadcast("$locationChangeStart",a,c,b,e).defaultPrevented;l.absUrl()===a&&(f?(l.$$parse(c),l.$$state=e,h(c,!1,e)):(w=!1,k(c,e)))}),d.$$phase||d.$digest())});d.$watch(function(){var a=hb(c.url()),b=hb(l.absUrl()),f=c.state(),g=l.$$replace,m=a!==b||l.$$html5&&e.history&&f!==l.$$state;if(w|| -m)w=!1,d.$evalAsync(function(){var b=l.absUrl(),c=d.$broadcast("$locationChangeStart",b,a,l.$$state,f).defaultPrevented;l.absUrl()===b&&(c?(l.$$parse(a),l.$$state=f):(m&&h(b,g,f===l.$$state?null:l.$$state),k(a,f)))});l.$$replace=!1});return l}]}function rf(){var a=!0,b=this;this.debugEnabled=function(b){return x(b)?(a=b,this):a};this.$get=["$window",function(d){function c(a){a instanceof Error&&(a.stack?a=a.message&&-1===a.stack.indexOf(a.message)?"Error: "+a.message+"\n"+a.stack:a.stack:a.sourceURL&& -(a=a.message+"\n"+a.sourceURL+":"+a.line));return a}function e(a){var b=d.console||{},e=b[a]||b.log||C;a=!1;try{a=!!e.apply}catch(k){}return a?function(){var a=[];q(arguments,function(b){a.push(c(b))});return e.apply(b,a)}:function(a,b){e(a,null==b?"":b)}}return{log:e("log"),info:e("info"),warn:e("warn"),error:e("error"),debug:function(){var c=e("debug");return function(){a&&c.apply(b,arguments)}}()}}]}function Ta(a,b){if("__defineGetter__"===a||"__defineSetter__"===a||"__lookupGetter__"===a||"__lookupSetter__"=== -a||"__proto__"===a)throw ca("isecfld",b);return a}function fg(a){return a+""}function sa(a,b){if(a){if(a.constructor===a)throw ca("isecfn",b);if(a.window===a)throw ca("isecwindow",b);if(a.children&&(a.nodeName||a.prop&&a.attr&&a.find))throw ca("isecdom",b);if(a===Object)throw ca("isecobj",b);}return a}function md(a,b){if(a){if(a.constructor===a)throw ca("isecfn",b);if(a===gg||a===hg||a===ig)throw ca("isecff",b);}}function Gb(a,b){if(a&&(a===(0).constructor||a===(!1).constructor||a==="".constructor|| -a==={}.constructor||a===[].constructor||a===Function.constructor))throw ca("isecaf",b);}function jg(a,b){return"undefined"!==typeof a?a:b}function nd(a,b){return"undefined"===typeof a?b:"undefined"===typeof b?a:a+b}function aa(a,b){var d,c;switch(a.type){case s.Program:d=!0;q(a.body,function(a){aa(a.expression,b);d=d&&a.expression.constant});a.constant=d;break;case s.Literal:a.constant=!0;a.toWatch=[];break;case s.UnaryExpression:aa(a.argument,b);a.constant=a.argument.constant;a.toWatch=a.argument.toWatch; -break;case s.BinaryExpression:aa(a.left,b);aa(a.right,b);a.constant=a.left.constant&&a.right.constant;a.toWatch=a.left.toWatch.concat(a.right.toWatch);break;case s.LogicalExpression:aa(a.left,b);aa(a.right,b);a.constant=a.left.constant&&a.right.constant;a.toWatch=a.constant?[]:[a];break;case s.ConditionalExpression:aa(a.test,b);aa(a.alternate,b);aa(a.consequent,b);a.constant=a.test.constant&&a.alternate.constant&&a.consequent.constant;a.toWatch=a.constant?[]:[a];break;case s.Identifier:a.constant= -!1;a.toWatch=[a];break;case s.MemberExpression:aa(a.object,b);a.computed&&aa(a.property,b);a.constant=a.object.constant&&(!a.computed||a.property.constant);a.toWatch=[a];break;case s.CallExpression:d=a.filter?!b(a.callee.name).$stateful:!1;c=[];q(a.arguments,function(a){aa(a,b);d=d&&a.constant;a.constant||c.push.apply(c,a.toWatch)});a.constant=d;a.toWatch=a.filter&&!b(a.callee.name).$stateful?c:[a];break;case s.AssignmentExpression:aa(a.left,b);aa(a.right,b);a.constant=a.left.constant&&a.right.constant; -a.toWatch=[a];break;case s.ArrayExpression:d=!0;c=[];q(a.elements,function(a){aa(a,b);d=d&&a.constant;a.constant||c.push.apply(c,a.toWatch)});a.constant=d;a.toWatch=c;break;case s.ObjectExpression:d=!0;c=[];q(a.properties,function(a){aa(a.value,b);d=d&&a.value.constant;a.value.constant||c.push.apply(c,a.value.toWatch)});a.constant=d;a.toWatch=c;break;case s.ThisExpression:a.constant=!1;a.toWatch=[];break;case s.LocalsExpression:a.constant=!1,a.toWatch=[]}}function od(a){if(1==a.length){a=a[0].expression; -var b=a.toWatch;return 1!==b.length?b:b[0]!==a?b:void 0}}function pd(a){return a.type===s.Identifier||a.type===s.MemberExpression}function qd(a){if(1===a.body.length&&pd(a.body[0].expression))return{type:s.AssignmentExpression,left:a.body[0].expression,right:{type:s.NGValueParameter},operator:"="}}function rd(a){return 0===a.body.length||1===a.body.length&&(a.body[0].expression.type===s.Literal||a.body[0].expression.type===s.ArrayExpression||a.body[0].expression.type===s.ObjectExpression)}function sd(a, -b){this.astBuilder=a;this.$filter=b}function td(a,b){this.astBuilder=a;this.$filter=b}function Hb(a){return"constructor"==a}function fc(a){return E(a.valueOf)?a.valueOf():kg.call(a)}function sf(){var a=T(),b=T(),d={"true":!0,"false":!1,"null":null,undefined:void 0},c,e;this.addLiteral=function(a,b){d[a]=b};this.setIdentifierFns=function(a,b){c=a;e=b;return this};this.$get=["$filter",function(f){function g(c,d,e){var g,k,D;e=e||H;switch(typeof c){case "string":D=c=c.trim();var q=e?b:a;g=q[D];if(!g){":"=== -c.charAt(0)&&":"===c.charAt(1)&&(k=!0,c=c.substring(2));g=e?p:w;var S=new gc(g);g=(new hc(S,f,g)).parse(c);g.constant?g.$$watchDelegate=r:k?g.$$watchDelegate=g.literal?m:n:g.inputs&&(g.$$watchDelegate=l);e&&(g=h(g));q[D]=g}return N(g,d);case "function":return N(c,d);default:return N(C,d)}}function h(a){function b(c,d,e,f){var g=H;H=!0;try{return a(c,d,e,f)}finally{H=g}}if(!a)return a;b.$$watchDelegate=a.$$watchDelegate;b.assign=h(a.assign);b.constant=a.constant;b.literal=a.literal;for(var c=0;a.inputs&& -c=this.promise.$$state.status&&d&&d.length&&a(function(){for(var a,e,f=0,g=d.length;f -a)for(b in l++,f)ua.call(e,b)||(t--,delete f[b])}else f!==e&&(f=e,l++);return l}}c.$stateful=!0;var d=this,e,f,h,k=1N&&(y=4-N,x[y]||(x[y]=[]),x[y].push({msg:E(a.exp)?"fn: "+(a.exp.name||a.exp.toString()):a.exp,newVal:g,oldVal:k}));else if(a===c){q=!1;break a}}catch(F){f(F)}if(!(r=u.$$watchersCount&& -u.$$childHead||u!==this&&u.$$nextSibling))for(;u!==this&&!(r=u.$$nextSibling);)u=u.$parent}while(u=r);if((q||t.length)&&!N--)throw H.$$phase=null,d("infdig",b,x);}while(q||t.length);for(H.$$phase=null;z.length;)try{z.shift()()}catch(B){f(B)}},$destroy:function(){if(!this.$$destroyed){var a=this.$parent;this.$broadcast("$destroy");this.$$destroyed=!0;this===H&&h.$$applicationDestroyed();r(this,-this.$$watchersCount);for(var b in this.$$listenerCount)N(this,this.$$listenerCount[b],b);a&&a.$$childHead== -this&&(a.$$childHead=this.$$nextSibling);a&&a.$$childTail==this&&(a.$$childTail=this.$$prevSibling);this.$$prevSibling&&(this.$$prevSibling.$$nextSibling=this.$$nextSibling);this.$$nextSibling&&(this.$$nextSibling.$$prevSibling=this.$$prevSibling);this.$destroy=this.$digest=this.$apply=this.$evalAsync=this.$applyAsync=C;this.$on=this.$watch=this.$watchGroup=function(){return C};this.$$listeners={};this.$$nextSibling=null;l(this)}},$eval:function(a,b){return g(a)(this,b)},$evalAsync:function(a,b){H.$$phase|| -t.length||h.defer(function(){t.length&&H.$digest()});t.push({scope:this,expression:g(a),locals:b})},$$postDigest:function(a){z.push(a)},$apply:function(a){try{m("$apply");try{return this.$eval(a)}finally{H.$$phase=null}}catch(b){f(b)}finally{try{H.$digest()}catch(c){throw f(c),c;}}},$applyAsync:function(a){function b(){c.$eval(a)}var c=this;a&&u.push(b);a=g(a);p()},$on:function(a,b){var c=this.$$listeners[a];c||(this.$$listeners[a]=c=[]);c.push(b);var d=this;do d.$$listenerCount[a]||(d.$$listenerCount[a]= -0),d.$$listenerCount[a]++;while(d=d.$parent);var e=this;return function(){var d=c.indexOf(b);-1!==d&&(c[d]=null,N(e,1,a))}},$emit:function(a,b){var c=[],d,e=this,g=!1,h={name:a,targetScope:e,stopPropagation:function(){g=!0},preventDefault:function(){h.defaultPrevented=!0},defaultPrevented:!1},k=$a([h],arguments,1),l,n;do{d=e.$$listeners[a]||c;h.currentScope=e;l=0;for(n=d.length;lCa)throw ta("iequirks");var c=ha(oa);c.isEnabled=function(){return a};c.trustAs=d.trustAs;c.getTrusted=d.getTrusted;c.valueOf=d.valueOf;a||(c.trustAs=c.getTrusted=function(a,b){return b}, -c.valueOf=Xa);c.parseAs=function(a,d){var e=b(d);return e.literal&&e.constant?e:b(d,function(b){return c.getTrusted(a,b)})};var e=c.parseAs,f=c.getTrusted,g=c.trustAs;q(oa,function(a,b){var d=P(b);c[cb("parse_as_"+d)]=function(b){return e(a,b)};c[cb("get_trusted_"+d)]=function(b){return f(a,b)};c[cb("trust_as_"+d)]=function(b){return g(a,b)}});return c}]}function yf(){this.$get=["$window","$document",function(a,b){var d={},c=!(a.chrome&&a.chrome.app&&a.chrome.app.runtime)&&a.history&&a.history.pushState, -e=X((/android (\d+)/.exec(P((a.navigator||{}).userAgent))||[])[1]),f=/Boxee/i.test((a.navigator||{}).userAgent),g=b[0]||{},h,k=/^(Moz|webkit|ms)(?=[A-Z])/,l=g.body&&g.body.style,n=!1,m=!1;if(l){for(var r in l)if(n=k.exec(r)){h=n[0];h=h.substr(0,1).toUpperCase()+h.substr(1);break}h||(h="WebkitOpacity"in l&&"webkit");n=!!("transition"in l||h+"Transition"in l);m=!!("animation"in l||h+"Animation"in l);!e||n&&m||(n=F(l.webkitTransition),m=F(l.webkitAnimation))}return{history:!(!c||4>e||f),hasEvent:function(a){if("input"=== -a&&11>=Ca)return!1;if(y(d[a])){var b=g.createElement("div");d[a]="on"+a in b}return d[a]},csp:Ea(),vendorPrefix:h,transitions:n,animations:m,android:e}}]}function Af(){var a;this.httpOptions=function(b){return b?(a=b,this):a};this.$get=["$templateCache","$http","$q","$sce",function(b,d,c,e){function f(g,h){f.totalPendingRequests++;F(g)&&b.get(g)||(g=e.getTrustedResourceUrl(g));var k=d.defaults&&d.defaults.transformResponse;K(k)?k=k.filter(function(a){return a!==ac}):k===ac&&(k=null);return d.get(g, -R({cache:b,transformResponse:k},a))["finally"](function(){f.totalPendingRequests--}).then(function(a){b.put(g,a.data);return a.data},function(a){if(!h)throw mg("tpload",g,a.status,a.statusText);return c.reject(a)})}f.totalPendingRequests=0;return f}]}function Bf(){this.$get=["$rootScope","$browser","$location",function(a,b,d){return{findBindings:function(a,b,d){a=a.getElementsByClassName("ng-binding");var g=[];q(a,function(a){var c=ea.element(a).data("$binding");c&&q(c,function(c){d?(new RegExp("(^|\\s)"+ -vd(b)+"(\\s|\\||$)")).test(c)&&g.push(a):-1!=c.indexOf(b)&&g.push(a)})});return g},findModels:function(a,b,d){for(var g=["ng-","data-ng-","ng\\:"],h=0;hc&&(c=e),c+=+a.slice(e+1),a=a.substring(0,e)):0>c&&(c=a.length);for(e=0;a.charAt(e)==jc;e++);if(e==(g=a.length))d=[0],c=1;else{for(g--;a.charAt(g)==jc;)g--;c-=e;d=[];for(f=0;e<=g;e++,f++)d[f]=+a.charAt(e)}c>Fd&&(d=d.splice(0,Fd-1),b=c-1,c=1);return{d:d,e:b,i:c}}function ug(a,b,d,c){var e=a.d,f=e.length-a.i;b=y(b)?Math.min(Math.max(d,f),c):+b;d=b+a.i;c=e[d];if(0d-1){for(c=0;c>d;c--)e.unshift(0),a.i++;e.unshift(1);a.i++}else e[d-1]++;for(;fh;)k.unshift(0),h++;0=b.lgSize&&h.unshift(k.splice(-b.lgSize).join(""));k.length>b.gSize;)h.unshift(k.splice(-b.gSize).join(""));k.length&&h.unshift(k.join(""));k=h.join(d);f.length&&(k+=c+f.join(""));e&&(k+="e+"+e)}return 0>a&&!g?b.negPre+k+b.negSuf:b.posPre+k+b.posSuf}function Ib(a,b,d,c){var e="";if(0>a||c&&0>=a)c?a=-a+1:(a=-a,e="-");for(a=""+a;a.length-d)f+=d;0===f&&-12==d&&(f=12);return Ib(f,b,c,e)}}function ib(a,b,d){return function(c,e){var f=c["get"+a](),g=sb((d?"STANDALONE":"")+(b?"SHORT":"")+a);return e[g][f]}}function Gd(a){var b=(new Date(a,0,1)).getDay();return new Date(a,0,(4>=b?5:12)-b)}function Hd(a){return function(b){var d=Gd(b.getFullYear());b=+new Date(b.getFullYear(),b.getMonth(),b.getDate()+(4-b.getDay()))-+d;b=1+Math.round(b/6048E5);return Ib(b,a)}}function kc(a,b){return 0>=a.getFullYear()? -b.ERAS[0]:b.ERAS[1]}function Ad(a){function b(a){var b;if(b=a.match(d)){a=new Date(0);var f=0,g=0,h=b[8]?a.setUTCFullYear:a.setFullYear,k=b[8]?a.setUTCHours:a.setHours;b[9]&&(f=X(b[9]+b[10]),g=X(b[9]+b[11]));h.call(a,X(b[1]),X(b[2])-1,X(b[3]));f=X(b[4]||0)-f;g=X(b[5]||0)-g;h=X(b[6]||0);b=Math.round(1E3*parseFloat("0."+(b[7]||0)));k.call(a,f,g,h,b)}return a}var d=/^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/;return function(c,d,f){var g="",h= -[],k,l;d=d||"mediumDate";d=a.DATETIME_FORMATS[d]||d;F(c)&&(c=vg.test(c)?X(c):b(c));Q(c)&&(c=new Date(c));if(!fa(c)||!isFinite(c.getTime()))return c;for(;d;)(l=wg.exec(d))?(h=$a(h,l,1),d=h.pop()):(h.push(d),d=null);var n=c.getTimezoneOffset();f&&(n=vc(f,n),c=Qb(c,f,!0));q(h,function(b){k=xg[b];g+=k?k(c,a.DATETIME_FORMATS,n):"''"===b?"'":b.replace(/(^'|'$)/g,"").replace(/''/g,"'")});return g}}function og(){return function(a,b){y(b)&&(b=2);return ab(a,b)}}function pg(){return function(a,b,d){b=Infinity=== -Math.abs(Number(b))?Number(b):X(b);if(isNaN(b))return a;Q(a)&&(a=a.toString());if(!K(a)&&!F(a))return a;d=!d||isNaN(d)?0:X(d);d=0>d?Math.max(0,a.length+d):d;return 0<=b?a.slice(d,d+b):0===d?a.slice(b,a.length):a.slice(Math.max(0,d+b),d)}}function Cd(a){function b(b,d){d=d?-1:1;return b.map(function(b){var c=1,h=Xa;if(E(b))h=b;else if(F(b)){if("+"==b.charAt(0)||"-"==b.charAt(0))c="-"==b.charAt(0)?-1:1,b=b.substring(1);if(""!==b&&(h=a(b),h.constant))var k=h(),h=function(a){return a[k]}}return{get:h, -descending:c*d}})}function d(a){switch(typeof a){case "number":case "boolean":case "string":return!0;default:return!1}}return function(a,e,f){if(null==a)return a;if(!ya(a))throw O("orderBy")("notarray",a);K(e)||(e=[e]);0===e.length&&(e=["+"]);var g=b(e,f);g.push({get:function(){return{}},descending:f?-1:1});a=Array.prototype.map.call(a,function(a,b){return{value:a,predicateValues:g.map(function(c){var e=c.get(a);c=typeof e;if(null===e)c="string",e="null";else if("string"===c)e=e.toLowerCase();else if("object"=== -c)a:{if("function"===typeof e.valueOf&&(e=e.valueOf(),d(e)))break a;if(rc(e)&&(e=e.toString(),d(e)))break a;e=b}return{value:e,type:c}})}});a.sort(function(a,b){for(var c=0,d=0,e=g.length;db||37<=b&&40>=b||n(a,this,this.value)});if(e.hasEvent("paste"))b.on("paste cut",n)}b.on("change",l);if(Kd[g]&&c.$$hasNativeValidators&&g===d.type)b.on("keydown wheel mousedown",function(a){if(!k){var b=this.validity,c=b.badInput,d=b.typeMismatch;k=f.defer(function(){k=null;b.badInput===c&&b.typeMismatch===d||l(a)})}});c.$render=function(){var a=c.$isEmpty(c.$viewValue)?"":c.$viewValue;b.val()!==a&&b.val(a)}}function Lb(a,b){return function(d,c){var e,f;if(fa(d))return d;if(F(d)){'"'==d.charAt(0)&& -'"'==d.charAt(d.length-1)&&(d=d.substring(1,d.length-1));if(yg.test(d))return new Date(d);a.lastIndex=0;if(e=a.exec(d))return e.shift(),f=c?{yyyy:c.getFullYear(),MM:c.getMonth()+1,dd:c.getDate(),HH:c.getHours(),mm:c.getMinutes(),ss:c.getSeconds(),sss:c.getMilliseconds()/1E3}:{yyyy:1970,MM:1,dd:1,HH:0,mm:0,ss:0,sss:0},q(e,function(a,c){c= -w};g.$observe("min",function(a){w=r(a);h.$validate()})}if(x(g.max)||g.ngMax){var p;h.$validators.max=function(a){return!m(a)||y(p)||d(a)<=p};g.$observe("max",function(a){p=r(a);h.$validate()})}}}function Ld(a,b,d,c){(c.$$hasNativeValidators=G(b[0].validity))&&c.$parsers.push(function(a){var c=b.prop("validity")||{};return c.badInput||c.typeMismatch?void 0:a})}function Md(a,b,d,c,e){if(x(c)){a=a(c);if(!a.constant)throw lb("constexpr",d,c);return a(b)}return e}function mc(a,b){a="ngClass"+a;return["$animate", -function(d){function c(a,b){var c=[],d=0;a:for(;d(?:<\/\1>|)$/,Tb=/<|&#?\w+;/,Kf=/<([\w:-]+)/,Lf=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi, -ia={option:[1,'"],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ia.optgroup=ia.option;ia.tbody=ia.tfoot=ia.colgroup=ia.caption=ia.thead;ia.th=ia.td;var Sf=v.Node.prototype.contains||function(a){return!!(this.compareDocumentPosition(a)&16)},Oa=U.prototype={ready:function(a){function b(){d||(d=!0,a())}var d=!1;"complete"=== -v.document.readyState?v.setTimeout(b):(this.on("DOMContentLoaded",b),U(v).on("load",b))},toString:function(){var a=[];q(this,function(b){a.push(""+b)});return"["+a.join(", ")+"]"},eq:function(a){return 0<=a?B(this[a]):B(this[this.length+a])},length:0,push:Ag,sort:[].sort,splice:[].splice},Cb={};q("multiple selected checked disabled readOnly required open".split(" "),function(a){Cb[P(a)]=a});var Sc={};q("input select option textarea button form details".split(" "),function(a){Sc[a]=!0});var ad={ngMinlength:"minlength", -ngMaxlength:"maxlength",ngMin:"min",ngMax:"max",ngPattern:"pattern"};q({data:Wb,removeData:db,hasData:function(a){for(var b in eb[a.ng339])return!0;return!1},cleanData:function(a){for(var b=0,d=a.length;b/,Vf=/^[^\(]*\(\s*([^\)]*)\)/m,Bg=/,/,Cg=/^\s*(_?)(\S+?)\1\s*$/,Tf=/((\/\/.*$)|(\/\*[\s\S]*?\*\/))/mg,Ga=O("$injector");bb.$$annotate=function(a,b,d){var c;if("function"===typeof a){if(!(c=a.$inject)){c=[];if(a.length){if(b)throw F(d)&&d||(d=a.name||Wf(a)),Ga("strictdi",d); -b=Tc(a);q(b[1].split(Bg),function(a){a.replace(Cg,function(a,b,d){c.push(d)})})}a.$inject=c}}else K(a)?(b=a.length-1,Pa(a[b],"fn"),c=a.slice(0,b)):Pa(a,"fn",!0);return c};var Qd=O("$animate"),Ze=function(){this.$get=C},$e=function(){var a=new Ra,b=[];this.$get=["$$AnimateRunner","$rootScope",function(d,c){function e(a,b,c){var d=!1;b&&(b=F(b)?b.split(" "):K(b)?b:[],q(b,function(b){b&&(d=!0,a[b]=c)}));return d}function f(){q(b,function(b){var c=a.get(b);if(c){var d=Xf(b.attr("class")),e="",f="";q(c, -function(a,b){a!==!!d[b]&&(a?e+=(e.length?" ":"")+b:f+=(f.length?" ":"")+b)});q(b,function(a){e&&zb(a,e);f&&yb(a,f)});a.remove(b)}});b.length=0}return{enabled:C,on:C,off:C,pin:C,push:function(g,h,k,l){l&&l();k=k||{};k.from&&g.css(k.from);k.to&&g.css(k.to);if(k.addClass||k.removeClass)if(h=k.addClass,l=k.removeClass,k=a.get(g)||{},h=e(k,h,!0),l=e(k,l,!1),h||l)a.put(g,k),b.push(g),1===b.length&&c.$$postDigest(f);g=new d;g.complete();return g}}}]},Xe=["$provide",function(a){var b=this;this.$$registeredAnimations= -Object.create(null);this.register=function(d,c){if(d&&"."!==d.charAt(0))throw Qd("notcsel",d);var e=d+"-animation";b.$$registeredAnimations[d.substr(1)]=e;a.factory(e,c)};this.classNameFilter=function(a){if(1===arguments.length&&(this.$$classNameFilter=a instanceof RegExp?a:null)&&/(\s+|\/)ng-animate(\s+|\/)/.test(this.$$classNameFilter.toString()))throw Qd("nongcls","ng-animate");return this.$$classNameFilter};this.$get=["$$animateQueue",function(a){function b(a,c,d){if(d){var h;a:{for(h=0;h <= >= && || ! = |".split(" "),function(a){Mb[a]=!0});var Gg={n:"\n",f:"\f",r:"\r", -t:"\t",v:"\v","'":"'",'"':'"'},gc=function(a){this.options=a};gc.prototype={constructor:gc,lex:function(a){this.text=a;this.index=0;for(this.tokens=[];this.index=a&&"string"===typeof a},isWhitespace:function(a){return" "===a||"\r"===a|| -"\t"===a||"\n"===a||"\v"===a||"\u00a0"===a},isIdentifierStart:function(a){return this.options.isIdentifierStart?this.options.isIdentifierStart(a,this.codePointAt(a)):this.isValidIdentifierStart(a)},isValidIdentifierStart:function(a){return"a"<=a&&"z">=a||"A"<=a&&"Z">=a||"_"===a||"$"===a},isIdentifierContinue:function(a){return this.options.isIdentifierContinue?this.options.isIdentifierContinue(a,this.codePointAt(a)):this.isValidIdentifierContinue(a)},isValidIdentifierContinue:function(a,b){return this.isValidIdentifierStart(a, -b)||this.isNumber(a)},codePointAt:function(a){return 1===a.length?a.charCodeAt(0):(a.charCodeAt(0)<<10)+a.charCodeAt(1)-56613888},peekMultichar:function(){var a=this.text.charAt(this.index),b=this.peek();if(!b)return a;var d=a.charCodeAt(0),c=b.charCodeAt(0);return 55296<=d&&56319>=d&&56320<=c&&57343>=c?a+b:a},isExpOperator:function(a){return"-"===a||"+"===a||this.isNumber(a)},throwError:function(a,b,d){d=d||this.index;b=x(b)?"s "+b+"-"+this.index+" ["+this.text.substring(b,d)+"]":" "+d;throw ca("lexerr", -a,b,this.text);},readNumber:function(){for(var a="",b=this.index;this.index","<=",">=");)a={type:s.BinaryExpression,operator:b.text,left:a,right:this.additive()};return a},additive:function(){for(var a=this.multiplicative(), -b;b=this.expect("+","-");)a={type:s.BinaryExpression,operator:b.text,left:a,right:this.multiplicative()};return a},multiplicative:function(){for(var a=this.unary(),b;b=this.expect("*","/","%");)a={type:s.BinaryExpression,operator:b.text,left:a,right:this.unary()};return a},unary:function(){var a;return(a=this.expect("+","-","!"))?{type:s.UnaryExpression,operator:a.text,prefix:!0,argument:this.unary()}:this.primary()},primary:function(){var a;this.expect("(")?(a=this.filterChain(),this.consume(")")): -this.expect("[")?a=this.arrayDeclaration():this.expect("{")?a=this.object():this.selfReferential.hasOwnProperty(this.peek().text)?a=qa(this.selfReferential[this.consume().text]):this.options.literals.hasOwnProperty(this.peek().text)?a={type:s.Literal,value:this.options.literals[this.consume().text]}:this.peek().identifier?a=this.identifier():this.peek().constant?a=this.constant():this.throwError("not a primary expression",this.peek());for(var b;b=this.expect("(","[",".");)"("===b.text?(a={type:s.CallExpression, -callee:a,arguments:this.parseArguments()},this.consume(")")):"["===b.text?(a={type:s.MemberExpression,object:a,property:this.expression(),computed:!0},this.consume("]")):"."===b.text?a={type:s.MemberExpression,object:a,property:this.identifier(),computed:!1}:this.throwError("IMPOSSIBLE");return a},filter:function(a){a=[a];for(var b={type:s.CallExpression,callee:this.identifier(),arguments:a,filter:!0};this.expect(":");)a.push(this.expression());return b},parseArguments:function(){var a=[];if(")"!== -this.peekToken().text){do a.push(this.expression());while(this.expect(","))}return a},identifier:function(){var a=this.consume();a.identifier||this.throwError("is not a valid identifier",a);return{type:s.Identifier,name:a.text}},constant:function(){return{type:s.Literal,value:this.consume().value}},arrayDeclaration:function(){var a=[];if("]"!==this.peekToken().text){do{if(this.peek("]"))break;a.push(this.expression())}while(this.expect(","))}this.consume("]");return{type:s.ArrayExpression,elements:a}}, -object:function(){var a=[],b;if("}"!==this.peekToken().text){do{if(this.peek("}"))break;b={type:s.Property,kind:"init"};this.peek().constant?b.key=this.constant():this.peek().identifier?b.key=this.identifier():this.throwError("invalid key",this.peek());this.consume(":");b.value=this.expression();a.push(b)}while(this.expect(","))}this.consume("}");return{type:s.ObjectExpression,properties:a}},throwError:function(a,b){throw ca("syntax",b.text,a,b.index+1,this.text,this.text.substring(b.index));},consume:function(a){if(0=== -this.tokens.length)throw ca("ueoe",this.text);var b=this.expect(a);b||this.throwError("is unexpected, expecting ["+a+"]",this.peek());return b},peekToken:function(){if(0===this.tokens.length)throw ca("ueoe",this.text);return this.tokens[0]},peek:function(a,b,d,c){return this.peekAhead(0,a,b,d,c)},peekAhead:function(a,b,d,c,e){if(this.tokens.length>a){a=this.tokens[a];var f=a.text;if(f===b||f===d||f===c||f===e||!(b||d||c||e))return a}return!1},expect:function(a,b,d,c){return(a=this.peek(a,b,d,c))? -(this.tokens.shift(),a):!1},selfReferential:{"this":{type:s.ThisExpression},$locals:{type:s.LocalsExpression}}};sd.prototype={compile:function(a,b){var d=this,c=this.astBuilder.ast(a);this.state={nextId:0,filters:{},expensiveChecks:b,fn:{vars:[],body:[],own:{}},assign:{vars:[],body:[],own:{}},inputs:[]};aa(c,d.$filter);var e="",f;this.stage="assign";if(f=qd(c))this.state.computing="assign",e=this.nextId(),this.recurse(f,e),this.return_(e),e="fn.assign="+this.generateFunction("assign","s,v,l");f=od(c.body); -d.stage="inputs";q(f,function(a,b){var c="fn"+b;d.state[c]={vars:[],body:[],own:{}};d.state.computing=c;var e=d.nextId();d.recurse(a,e);d.return_(e);d.state.inputs.push(c);a.watchId=b});this.state.computing="fn";this.stage="main";this.recurse(c);e='"'+this.USE+" "+this.STRICT+'";\n'+this.filterPrefix()+"var fn="+this.generateFunction("fn","s,l,a,i")+e+this.watchFns()+"return fn;";e=(new Function("$filter","ensureSafeMemberName","ensureSafeObject","ensureSafeFunction","getStringValue","ensureSafeAssignContext", -"ifDefined","plus","text",e))(this.$filter,Ta,sa,md,fg,Gb,jg,nd,a);this.state=this.stage=void 0;e.literal=rd(c);e.constant=c.constant;return e},USE:"use",STRICT:"strict",watchFns:function(){var a=[],b=this.state.inputs,d=this;q(b,function(b){a.push("var "+b+"="+d.generateFunction(b,"s"))});b.length&&a.push("fn.inputs=["+b.join(",")+"];");return a.join("")},generateFunction:function(a,b){return"function("+b+"){"+this.varsPrefix(a)+this.body(a)+"};"},filterPrefix:function(){var a=[],b=this;q(this.state.filters, -function(d,c){a.push(d+"=$filter("+b.escape(c)+")")});return a.length?"var "+a.join(",")+";":""},varsPrefix:function(a){return this.state[a].vars.length?"var "+this.state[a].vars.join(",")+";":""},body:function(a){return this.state[a].body.join("")},recurse:function(a,b,d,c,e,f){var g,h,k=this,l,n;c=c||C;if(!f&&x(a.watchId))b=b||this.nextId(),this.if_("i",this.lazyAssign(b,this.computedMember("i",a.watchId)),this.lazyRecurse(a,b,d,c,e,!0));else switch(a.type){case s.Program:q(a.body,function(b,c){k.recurse(b.expression, -void 0,void 0,function(a){h=a});c!==a.body.length-1?k.current().body.push(h,";"):k.return_(h)});break;case s.Literal:n=this.escape(a.value);this.assign(b,n);c(n);break;case s.UnaryExpression:this.recurse(a.argument,void 0,void 0,function(a){h=a});n=a.operator+"("+this.ifDefined(h,0)+")";this.assign(b,n);c(n);break;case s.BinaryExpression:this.recurse(a.left,void 0,void 0,function(a){g=a});this.recurse(a.right,void 0,void 0,function(a){h=a});n="+"===a.operator?this.plus(g,h):"-"===a.operator?this.ifDefined(g, -0)+a.operator+this.ifDefined(h,0):"("+g+")"+a.operator+"("+h+")";this.assign(b,n);c(n);break;case s.LogicalExpression:b=b||this.nextId();k.recurse(a.left,b);k.if_("&&"===a.operator?b:k.not(b),k.lazyRecurse(a.right,b));c(b);break;case s.ConditionalExpression:b=b||this.nextId();k.recurse(a.test,b);k.if_(b,k.lazyRecurse(a.alternate,b),k.lazyRecurse(a.consequent,b));c(b);break;case s.Identifier:b=b||this.nextId();d&&(d.context="inputs"===k.stage?"s":this.assign(this.nextId(),this.getHasOwnProperty("l", -a.name)+"?l:s"),d.computed=!1,d.name=a.name);Ta(a.name);k.if_("inputs"===k.stage||k.not(k.getHasOwnProperty("l",a.name)),function(){k.if_("inputs"===k.stage||"s",function(){e&&1!==e&&k.if_(k.not(k.nonComputedMember("s",a.name)),k.lazyAssign(k.nonComputedMember("s",a.name),"{}"));k.assign(b,k.nonComputedMember("s",a.name))})},b&&k.lazyAssign(b,k.nonComputedMember("l",a.name)));(k.state.expensiveChecks||Hb(a.name))&&k.addEnsureSafeObject(b);c(b);break;case s.MemberExpression:g=d&&(d.context=this.nextId())|| -this.nextId();b=b||this.nextId();k.recurse(a.object,g,void 0,function(){k.if_(k.notNull(g),function(){e&&1!==e&&k.addEnsureSafeAssignContext(g);if(a.computed)h=k.nextId(),k.recurse(a.property,h),k.getStringValue(h),k.addEnsureSafeMemberName(h),e&&1!==e&&k.if_(k.not(k.computedMember(g,h)),k.lazyAssign(k.computedMember(g,h),"{}")),n=k.ensureSafeObject(k.computedMember(g,h)),k.assign(b,n),d&&(d.computed=!0,d.name=h);else{Ta(a.property.name);e&&1!==e&&k.if_(k.not(k.nonComputedMember(g,a.property.name)), -k.lazyAssign(k.nonComputedMember(g,a.property.name),"{}"));n=k.nonComputedMember(g,a.property.name);if(k.state.expensiveChecks||Hb(a.property.name))n=k.ensureSafeObject(n);k.assign(b,n);d&&(d.computed=!1,d.name=a.property.name)}},function(){k.assign(b,"undefined")});c(b)},!!e);break;case s.CallExpression:b=b||this.nextId();a.filter?(h=k.filter(a.callee.name),l=[],q(a.arguments,function(a){var b=k.nextId();k.recurse(a,b);l.push(b)}),n=h+"("+l.join(",")+")",k.assign(b,n),c(b)):(h=k.nextId(),g={},l= -[],k.recurse(a.callee,h,g,function(){k.if_(k.notNull(h),function(){k.addEnsureSafeFunction(h);q(a.arguments,function(a){k.recurse(a,k.nextId(),void 0,function(a){l.push(k.ensureSafeObject(a))})});g.name?(k.state.expensiveChecks||k.addEnsureSafeObject(g.context),n=k.member(g.context,g.name,g.computed)+"("+l.join(",")+")"):n=h+"("+l.join(",")+")";n=k.ensureSafeObject(n);k.assign(b,n)},function(){k.assign(b,"undefined")});c(b)}));break;case s.AssignmentExpression:h=this.nextId();g={};if(!pd(a.left))throw ca("lval"); -this.recurse(a.left,void 0,g,function(){k.if_(k.notNull(g.context),function(){k.recurse(a.right,h);k.addEnsureSafeObject(k.member(g.context,g.name,g.computed));k.addEnsureSafeAssignContext(g.context);n=k.member(g.context,g.name,g.computed)+a.operator+h;k.assign(b,n);c(b||n)})},1);break;case s.ArrayExpression:l=[];q(a.elements,function(a){k.recurse(a,k.nextId(),void 0,function(a){l.push(a)})});n="["+l.join(",")+"]";this.assign(b,n);c(n);break;case s.ObjectExpression:l=[];q(a.properties,function(a){k.recurse(a.value, -k.nextId(),void 0,function(b){l.push(k.escape(a.key.type===s.Identifier?a.key.name:""+a.key.value)+":"+b)})});n="{"+l.join(",")+"}";this.assign(b,n);c(n);break;case s.ThisExpression:this.assign(b,"s");c("s");break;case s.LocalsExpression:this.assign(b,"l");c("l");break;case s.NGValueParameter:this.assign(b,"v"),c("v")}},getHasOwnProperty:function(a,b){var d=a+"."+b,c=this.current().own;c.hasOwnProperty(d)||(c[d]=this.nextId(!1,a+"&&("+this.escape(b)+" in "+a+")"));return c[d]},assign:function(a,b){if(a)return this.current().body.push(a, -"=",b,";"),a},filter:function(a){this.state.filters.hasOwnProperty(a)||(this.state.filters[a]=this.nextId(!0));return this.state.filters[a]},ifDefined:function(a,b){return"ifDefined("+a+","+this.escape(b)+")"},plus:function(a,b){return"plus("+a+","+b+")"},return_:function(a){this.current().body.push("return ",a,";")},if_:function(a,b,d){if(!0===a)b();else{var c=this.current().body;c.push("if(",a,"){");b();c.push("}");d&&(c.push("else{"),d(),c.push("}"))}},not:function(a){return"!("+a+")"},notNull:function(a){return a+ -"!=null"},nonComputedMember:function(a,b){var d=/[^$_a-zA-Z0-9]/g;return/[$_a-zA-Z][$_a-zA-Z0-9]*/.test(b)?a+"."+b:a+'["'+b.replace(d,this.stringEscapeFn)+'"]'},computedMember:function(a,b){return a+"["+b+"]"},member:function(a,b,d){return d?this.computedMember(a,b):this.nonComputedMember(a,b)},addEnsureSafeObject:function(a){this.current().body.push(this.ensureSafeObject(a),";")},addEnsureSafeMemberName:function(a){this.current().body.push(this.ensureSafeMemberName(a),";")},addEnsureSafeFunction:function(a){this.current().body.push(this.ensureSafeFunction(a), -";")},addEnsureSafeAssignContext:function(a){this.current().body.push(this.ensureSafeAssignContext(a),";")},ensureSafeObject:function(a){return"ensureSafeObject("+a+",text)"},ensureSafeMemberName:function(a){return"ensureSafeMemberName("+a+",text)"},ensureSafeFunction:function(a){return"ensureSafeFunction("+a+",text)"},getStringValue:function(a){this.assign(a,"getStringValue("+a+")")},ensureSafeAssignContext:function(a){return"ensureSafeAssignContext("+a+",text)"},lazyRecurse:function(a,b,d,c,e,f){var g= -this;return function(){g.recurse(a,b,d,c,e,f)}},lazyAssign:function(a,b){var d=this;return function(){d.assign(a,b)}},stringEscapeRegex:/[^ a-zA-Z0-9]/g,stringEscapeFn:function(a){return"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)},escape:function(a){if(F(a))return"'"+a.replace(this.stringEscapeRegex,this.stringEscapeFn)+"'";if(Q(a))return a.toString();if(!0===a)return"true";if(!1===a)return"false";if(null===a)return"null";if("undefined"===typeof a)return"undefined";throw ca("esc");},nextId:function(a, -b){var d="v"+this.state.nextId++;a||this.current().vars.push(d+(b?"="+b:""));return d},current:function(){return this.state[this.state.computing]}};td.prototype={compile:function(a,b){var d=this,c=this.astBuilder.ast(a);this.expression=a;this.expensiveChecks=b;aa(c,d.$filter);var e,f;if(e=qd(c))f=this.recurse(e);e=od(c.body);var g;e&&(g=[],q(e,function(a,b){var c=d.recurse(a);a.input=c;g.push(c);a.watchId=b}));var h=[];q(c.body,function(a){h.push(d.recurse(a.expression))});e=0===c.body.length?C:1=== -c.body.length?h[0]:function(a,b){var c;q(h,function(d){c=d(a,b)});return c};f&&(e.assign=function(a,b,c){return f(a,c,b)});g&&(e.inputs=g);e.literal=rd(c);e.constant=c.constant;return e},recurse:function(a,b,d){var c,e,f=this,g;if(a.input)return this.inputs(a.input,a.watchId);switch(a.type){case s.Literal:return this.value(a.value,b);case s.UnaryExpression:return e=this.recurse(a.argument),this["unary"+a.operator](e,b);case s.BinaryExpression:return c=this.recurse(a.left),e=this.recurse(a.right), -this["binary"+a.operator](c,e,b);case s.LogicalExpression:return c=this.recurse(a.left),e=this.recurse(a.right),this["binary"+a.operator](c,e,b);case s.ConditionalExpression:return this["ternary?:"](this.recurse(a.test),this.recurse(a.alternate),this.recurse(a.consequent),b);case s.Identifier:return Ta(a.name,f.expression),f.identifier(a.name,f.expensiveChecks||Hb(a.name),b,d,f.expression);case s.MemberExpression:return c=this.recurse(a.object,!1,!!d),a.computed||(Ta(a.property.name,f.expression), -e=a.property.name),a.computed&&(e=this.recurse(a.property)),a.computed?this.computedMember(c,e,b,d,f.expression):this.nonComputedMember(c,e,f.expensiveChecks,b,d,f.expression);case s.CallExpression:return g=[],q(a.arguments,function(a){g.push(f.recurse(a))}),a.filter&&(e=this.$filter(a.callee.name)),a.filter||(e=this.recurse(a.callee,!0)),a.filter?function(a,c,d,f){for(var m=[],r=0;r":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)>b(c,e,f,g);return d?{value:c}:c}},"binary<=":function(a,b,d){return function(c,e,f,g){c=a(c,e,f, -g)<=b(c,e,f,g);return d?{value:c}:c}},"binary>=":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)>=b(c,e,f,g);return d?{value:c}:c}},"binary&&":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)&&b(c,e,f,g);return d?{value:c}:c}},"binary||":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)||b(c,e,f,g);return d?{value:c}:c}},"ternary?:":function(a,b,d,c){return function(e,f,g,h){e=a(e,f,g,h)?b(e,f,g,h):d(e,f,g,h);return c?{value:e}:e}},value:function(a,b){return function(){return b?{context:void 0, -name:void 0,value:a}:a}},identifier:function(a,b,d,c,e){return function(f,g,h,k){f=g&&a in g?g:f;c&&1!==c&&f&&!f[a]&&(f[a]={});g=f?f[a]:void 0;b&&sa(g,e);return d?{context:f,name:a,value:g}:g}},computedMember:function(a,b,d,c,e){return function(f,g,h,k){var l=a(f,g,h,k),n,m;null!=l&&(n=b(f,g,h,k),n+="",Ta(n,e),c&&1!==c&&(Gb(l),l&&!l[n]&&(l[n]={})),m=l[n],sa(m,e));return d?{context:l,name:n,value:m}:m}},nonComputedMember:function(a,b,d,c,e,f){return function(g,h,k,l){g=a(g,h,k,l);e&&1!==e&&(Gb(g), -g&&!g[b]&&(g[b]={}));h=null!=g?g[b]:void 0;(d||Hb(b))&&sa(h,f);return c?{context:g,name:b,value:h}:h}},inputs:function(a,b){return function(d,c,e,f){return f?f[b]:a(d,c,e)}}};var hc=function(a,b,d){this.lexer=a;this.$filter=b;this.options=d;this.ast=new s(a,d);this.astCompiler=d.csp?new td(this.ast,b):new sd(this.ast,b)};hc.prototype={constructor:hc,parse:function(a){return this.astCompiler.compile(a,this.options.expensiveChecks)}};var kg=Object.prototype.valueOf,ta=O("$sce"),oa={HTML:"html",CSS:"css", -URL:"url",RESOURCE_URL:"resourceUrl",JS:"js"},mg=O("$compile"),Y=v.document.createElement("a"),xd=ra(v.location.href);yd.$inject=["$document"];Jc.$inject=["$provide"];var Fd=22,Ed=".",jc="0";zd.$inject=["$locale"];Bd.$inject=["$locale"];var xg={yyyy:W("FullYear",4,0,!1,!0),yy:W("FullYear",2,0,!0,!0),y:W("FullYear",1,0,!1,!0),MMMM:ib("Month"),MMM:ib("Month",!0),MM:W("Month",2,1),M:W("Month",1,1),LLLL:ib("Month",!1,!0),dd:W("Date",2),d:W("Date",1),HH:W("Hours",2),H:W("Hours",1),hh:W("Hours",2,-12), -h:W("Hours",1,-12),mm:W("Minutes",2),m:W("Minutes",1),ss:W("Seconds",2),s:W("Seconds",1),sss:W("Milliseconds",3),EEEE:ib("Day"),EEE:ib("Day",!0),a:function(a,b){return 12>a.getHours()?b.AMPMS[0]:b.AMPMS[1]},Z:function(a,b,d){a=-1*d;return a=(0<=a?"+":"")+(Ib(Math[0=a.getFullYear()?b.ERANAMES[0]:b.ERANAMES[1]}},wg=/((?:[^yMLdHhmsaZEwG']+)|(?:'(?:[^']|'')*')|(?:E+|y+|M+|L+|d+|H+|h+|m+|s+|a|Z|G+|w+))(.*)/, -vg=/^\-?\d+$/;Ad.$inject=["$locale"];var qg=da(P),rg=da(sb);Cd.$inject=["$parse"];var ne=da({restrict:"E",compile:function(a,b){if(!b.href&&!b.xlinkHref)return function(a,b){if("a"===b[0].nodeName.toLowerCase()){var e="[object SVGAnimatedString]"===ma.call(b.prop("href"))?"xlink:href":"href";b.on("click",function(a){b.attr(e)||a.preventDefault()})}}}}),tb={};q(Cb,function(a,b){function d(a,d,e){a.$watch(e[c],function(a){e.$set(b,!!a)})}if("multiple"!=a){var c=xa("ng-"+b),e=d;"checked"===a&&(e=function(a, -b,e){e.ngModel!==e[c]&&d(a,b,e)});tb[c]=function(){return{restrict:"A",priority:100,link:e}}}});q(ad,function(a,b){tb[b]=function(){return{priority:100,link:function(a,c,e){if("ngPattern"===b&&"/"==e.ngPattern.charAt(0)&&(c=e.ngPattern.match(zg))){e.$set("ngPattern",new RegExp(c[1],c[2]));return}a.$watch(e[b],function(a){e.$set(b,a)})}}}});q(["src","srcset","href"],function(a){var b=xa("ng-"+a);tb[b]=function(){return{priority:99,link:function(d,c,e){var f=a,g=a;"href"===a&&"[object SVGAnimatedString]"=== -ma.call(c.prop("href"))&&(g="xlinkHref",e.$attr[g]="xlink:href",f=null);e.$observe(b,function(b){b?(e.$set(g,b),Ca&&f&&c.prop(f,e[g])):"href"===a&&e.$set(g,null)})}}}});var Jb={$addControl:C,$$renameControl:function(a,b){a.$name=b},$removeControl:C,$setValidity:C,$setDirty:C,$setPristine:C,$setSubmitted:C};Id.$inject=["$element","$attrs","$scope","$animate","$interpolate"];var Rd=function(a){return["$timeout","$parse",function(b,d){function c(a){return""===a?d('this[""]').assign:d(a).assign||C}return{name:"form", -restrict:a?"EAC":"E",require:["form","^^?form"],controller:Id,compile:function(d,f){d.addClass(Ua).addClass(mb);var g=f.name?"name":a&&f.ngForm?"ngForm":!1;return{pre:function(a,d,e,f){var m=f[0];if(!("action"in e)){var r=function(b){a.$apply(function(){m.$commitViewValue();m.$setSubmitted()});b.preventDefault()};d[0].addEventListener("submit",r,!1);d.on("$destroy",function(){b(function(){d[0].removeEventListener("submit",r,!1)},0,!1)})}(f[1]||m.$$parentForm).$addControl(m);var q=g?c(m.$name):C;g&& -(q(a,m),e.$observe(g,function(b){m.$name!==b&&(q(a,void 0),m.$$parentForm.$$renameControl(m,b),q=c(m.$name),q(a,m))}));d.on("$destroy",function(){m.$$parentForm.$removeControl(m);q(a,void 0);R(m,Jb)})}}}}}]},oe=Rd(),Be=Rd(!0),yg=/^\d{4,}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+(?:[+-][0-2]\d:[0-5]\d|Z)$/,Hg=/^[a-z][a-z\d.+-]*:\/*(?:[^:@]+(?::[^@]+)?@)?(?:[^\s:/?#]+|\[[a-f\d:]+\])(?::\d+)?(?:\/[^?#]*)?(?:\?[^#]*)?(?:#.*)?$/i,Ig=/^[a-z0-9!#$%&'*+\/=?^_`{|}~.-]+@[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/i, -Jg=/^\s*(\-|\+)?(\d+|(\d*(\.\d*)))([eE][+-]?\d+)?\s*$/,Sd=/^(\d{4,})-(\d{2})-(\d{2})$/,Td=/^(\d{4,})-(\d\d)-(\d\d)T(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/,nc=/^(\d{4,})-W(\d\d)$/,Ud=/^(\d{4,})-(\d\d)$/,Vd=/^(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/,Kd=T();q(["date","datetime-local","month","time","week"],function(a){Kd[a]=!0});var Wd={text:function(a,b,d,c,e,f){jb(a,b,d,c,e,f);lc(c)},date:kb("date",Sd,Lb(Sd,["yyyy","MM","dd"]),"yyyy-MM-dd"),"datetime-local":kb("datetimelocal",Td,Lb(Td,"yyyy MM dd HH mm ss sss".split(" ")), -"yyyy-MM-ddTHH:mm:ss.sss"),time:kb("time",Vd,Lb(Vd,["HH","mm","ss","sss"]),"HH:mm:ss.sss"),week:kb("week",nc,function(a,b){if(fa(a))return a;if(F(a)){nc.lastIndex=0;var d=nc.exec(a);if(d){var c=+d[1],e=+d[2],f=d=0,g=0,h=0,k=Gd(c),e=7*(e-1);b&&(d=b.getHours(),f=b.getMinutes(),g=b.getSeconds(),h=b.getMilliseconds());return new Date(c,0,k.getDate()+e,d,f,g,h)}}return NaN},"yyyy-Www"),month:kb("month",Ud,Lb(Ud,["yyyy","MM"]),"yyyy-MM"),number:function(a,b,d,c,e,f){Ld(a,b,d,c);jb(a,b,d,c,e,f);c.$$parserName= -"number";c.$parsers.push(function(a){if(c.$isEmpty(a))return null;if(Jg.test(a))return parseFloat(a)});c.$formatters.push(function(a){if(!c.$isEmpty(a)){if(!Q(a))throw lb("numfmt",a);a=a.toString()}return a});if(x(d.min)||d.ngMin){var g;c.$validators.min=function(a){return c.$isEmpty(a)||y(g)||a>=g};d.$observe("min",function(a){x(a)&&!Q(a)&&(a=parseFloat(a,10));g=Q(a)&&!isNaN(a)?a:void 0;c.$validate()})}if(x(d.max)||d.ngMax){var h;c.$validators.max=function(a){return c.$isEmpty(a)||y(h)||a<=h};d.$observe("max", -function(a){x(a)&&!Q(a)&&(a=parseFloat(a,10));h=Q(a)&&!isNaN(a)?a:void 0;c.$validate()})}},url:function(a,b,d,c,e,f){jb(a,b,d,c,e,f);lc(c);c.$$parserName="url";c.$validators.url=function(a,b){var d=a||b;return c.$isEmpty(d)||Hg.test(d)}},email:function(a,b,d,c,e,f){jb(a,b,d,c,e,f);lc(c);c.$$parserName="email";c.$validators.email=function(a,b){var d=a||b;return c.$isEmpty(d)||Ig.test(d)}},radio:function(a,b,d,c){y(d.name)&&b.attr("name",++nb);b.on("click",function(a){b[0].checked&&c.$setViewValue(d.value, -a&&a.type)});c.$render=function(){b[0].checked=d.value==c.$viewValue};d.$observe("value",c.$render)},checkbox:function(a,b,d,c,e,f,g,h){var k=Md(h,a,"ngTrueValue",d.ngTrueValue,!0),l=Md(h,a,"ngFalseValue",d.ngFalseValue,!1);b.on("click",function(a){c.$setViewValue(b[0].checked,a&&a.type)});c.$render=function(){b[0].checked=c.$viewValue};c.$isEmpty=function(a){return!1===a};c.$formatters.push(function(a){return pa(a,k)});c.$parsers.push(function(a){return a?k:l})},hidden:C,button:C,submit:C,reset:C, -file:C},Dc=["$browser","$sniffer","$filter","$parse",function(a,b,d,c){return{restrict:"E",require:["?ngModel"],link:{pre:function(e,f,g,h){h[0]&&(Wd[P(g.type)]||Wd.text)(e,f,g,h[0],b,a,d,c)}}}}],Kg=/^(true|false|\d+)$/,Te=function(){return{restrict:"A",priority:100,compile:function(a,b){return Kg.test(b.ngValue)?function(a,b,e){e.$set("value",a.$eval(e.ngValue))}:function(a,b,e){a.$watch(e.ngValue,function(a){e.$set("value",a)})}}}},te=["$compile",function(a){return{restrict:"AC",compile:function(b){a.$$addBindingClass(b); -return function(b,c,e){a.$$addBindingInfo(c,e.ngBind);c=c[0];b.$watch(e.ngBind,function(a){c.textContent=y(a)?"":a})}}}}],ve=["$interpolate","$compile",function(a,b){return{compile:function(d){b.$$addBindingClass(d);return function(c,d,f){c=a(d.attr(f.$attr.ngBindTemplate));b.$$addBindingInfo(d,c.expressions);d=d[0];f.$observe("ngBindTemplate",function(a){d.textContent=y(a)?"":a})}}}}],ue=["$sce","$parse","$compile",function(a,b,d){return{restrict:"A",compile:function(c,e){var f=b(e.ngBindHtml),g= -b(e.ngBindHtml,function(a){return(a||"").toString()});d.$$addBindingClass(c);return function(b,c,e){d.$$addBindingInfo(c,e.ngBindHtml);b.$watch(g,function(){c.html(a.getTrustedHtml(f(b))||"")})}}}}],Se=da({restrict:"A",require:"ngModel",link:function(a,b,d,c){c.$viewChangeListeners.push(function(){a.$eval(d.ngChange)})}}),we=mc("",!0),ye=mc("Odd",0),xe=mc("Even",1),ze=La({compile:function(a,b){b.$set("ngCloak",void 0);a.removeClass("ng-cloak")}}),Ae=[function(){return{restrict:"A",scope:!0,controller:"@", -priority:500}}],Ic={},Lg={blur:!0,focus:!0};q("click dblclick mousedown mouseup mouseover mouseout mousemove mouseenter mouseleave keydown keyup keypress submit focus blur copy cut paste".split(" "),function(a){var b=xa("ng-"+a);Ic[b]=["$parse","$rootScope",function(d,c){return{restrict:"A",compile:function(e,f){var g=d(f[b],null,!0);return function(b,d){d.on(a,function(d){var e=function(){g(b,{$event:d})};Lg[a]&&c.$$phase?b.$evalAsync(e):b.$apply(e)})}}}}]});var De=["$animate","$compile",function(a, -b){return{multiElement:!0,transclude:"element",priority:600,terminal:!0,restrict:"A",$$tlb:!0,link:function(d,c,e,f,g){var h,k,l;d.$watch(e.ngIf,function(d){d?k||g(function(d,f){k=f;d[d.length++]=b.$$createComment("end ngIf",e.ngIf);h={clone:d};a.enter(d,c.parent(),c)}):(l&&(l.remove(),l=null),k&&(k.$destroy(),k=null),h&&(l=rb(h.clone),a.leave(l).then(function(){l=null}),h=null))})}}}],Ee=["$templateRequest","$anchorScroll","$animate",function(a,b,d){return{restrict:"ECA",priority:400,terminal:!0, -transclude:"element",controller:ea.noop,compile:function(c,e){var f=e.ngInclude||e.src,g=e.onload||"",h=e.autoscroll;return function(c,e,n,m,r){var q=0,s,w,p,y=function(){w&&(w.remove(),w=null);s&&(s.$destroy(),s=null);p&&(d.leave(p).then(function(){w=null}),w=p,p=null)};c.$watch(f,function(f){var n=function(){!x(h)||h&&!c.$eval(h)||b()},u=++q;f?(a(f,!0).then(function(a){if(!c.$$destroyed&&u===q){var b=c.$new();m.template=a;a=r(b,function(a){y();d.enter(a,null,e).then(n)});s=b;p=a;s.$emit("$includeContentLoaded", -f);c.$eval(g)}},function(){c.$$destroyed||u!==q||(y(),c.$emit("$includeContentError",f))}),c.$emit("$includeContentRequested",f)):(y(),m.template=null)})}}}}],Ve=["$compile",function(a){return{restrict:"ECA",priority:-400,require:"ngInclude",link:function(b,d,c,e){ma.call(d[0]).match(/SVG/)?(d.empty(),a(Lc(e.template,v.document).childNodes)(b,function(a){d.append(a)},{futureParentElement:d})):(d.html(e.template),a(d.contents())(b))}}}],Fe=La({priority:450,compile:function(){return{pre:function(a, -b,d){a.$eval(d.ngInit)}}}}),Re=function(){return{restrict:"A",priority:100,require:"ngModel",link:function(a,b,d,c){var e=b.attr(d.$attr.ngList)||", ",f="false"!==d.ngTrim,g=f?V(e):e;c.$parsers.push(function(a){if(!y(a)){var b=[];a&&q(a.split(g),function(a){a&&b.push(f?V(a):a)});return b}});c.$formatters.push(function(a){if(K(a))return a.join(e)});c.$isEmpty=function(a){return!a||!a.length}}}},mb="ng-valid",Nd="ng-invalid",Ua="ng-pristine",Kb="ng-dirty",Pd="ng-pending",lb=O("ngModel"),Mg=["$scope", -"$exceptionHandler","$attrs","$element","$parse","$animate","$timeout","$rootScope","$q","$interpolate",function(a,b,d,c,e,f,g,h,k,l){this.$modelValue=this.$viewValue=Number.NaN;this.$$rawModelValue=void 0;this.$validators={};this.$asyncValidators={};this.$parsers=[];this.$formatters=[];this.$viewChangeListeners=[];this.$untouched=!0;this.$touched=!1;this.$pristine=!0;this.$dirty=!1;this.$valid=!0;this.$invalid=!1;this.$error={};this.$$success={};this.$pending=void 0;this.$name=l(d.name||"",!1)(a); -this.$$parentForm=Jb;var n=e(d.ngModel),m=n.assign,r=n,s=m,v=null,w,p=this;this.$$setOptions=function(a){if((p.$options=a)&&a.getterSetter){var b=e(d.ngModel+"()"),f=e(d.ngModel+"($$$p)");r=function(a){var c=n(a);E(c)&&(c=b(a));return c};s=function(a,b){E(n(a))?f(a,{$$$p:b}):m(a,b)}}else if(!n.assign)throw lb("nonassign",d.ngModel,wa(c));};this.$render=C;this.$isEmpty=function(a){return y(a)||""===a||null===a||a!==a};this.$$updateEmptyClasses=function(a){p.$isEmpty(a)?(f.removeClass(c,"ng-not-empty"), -f.addClass(c,"ng-empty")):(f.removeClass(c,"ng-empty"),f.addClass(c,"ng-not-empty"))};var H=0;Jd({ctrl:this,$element:c,set:function(a,b){a[b]=!0},unset:function(a,b){delete a[b]},$animate:f});this.$setPristine=function(){p.$dirty=!1;p.$pristine=!0;f.removeClass(c,Kb);f.addClass(c,Ua)};this.$setDirty=function(){p.$dirty=!0;p.$pristine=!1;f.removeClass(c,Ua);f.addClass(c,Kb);p.$$parentForm.$setDirty()};this.$setUntouched=function(){p.$touched=!1;p.$untouched=!0;f.setClass(c,"ng-untouched","ng-touched")}; -this.$setTouched=function(){p.$touched=!0;p.$untouched=!1;f.setClass(c,"ng-touched","ng-untouched")};this.$rollbackViewValue=function(){g.cancel(v);p.$viewValue=p.$$lastCommittedViewValue;p.$render()};this.$validate=function(){if(!Q(p.$modelValue)||!isNaN(p.$modelValue)){var a=p.$$rawModelValue,b=p.$valid,c=p.$modelValue,d=p.$options&&p.$options.allowInvalid;p.$$runValidators(a,p.$$lastCommittedViewValue,function(e){d||b===e||(p.$modelValue=e?a:void 0,p.$modelValue!==c&&p.$$writeModelToScope())})}}; -this.$$runValidators=function(a,b,c){function d(){var c=!0;q(p.$validators,function(d,e){var g=d(a,b);c=c&&g;f(e,g)});return c?!0:(q(p.$asyncValidators,function(a,b){f(b,null)}),!1)}function e(){var c=[],d=!0;q(p.$asyncValidators,function(e,g){var h=e(a,b);if(!h||!E(h.then))throw lb("nopromise",h);f(g,void 0);c.push(h.then(function(){f(g,!0)},function(){d=!1;f(g,!1)}))});c.length?k.all(c).then(function(){g(d)},C):g(!0)}function f(a,b){h===H&&p.$setValidity(a,b)}function g(a){h===H&&c(a)}H++;var h= -H;(function(){var a=p.$$parserName||"parse";if(y(w))f(a,null);else return w||(q(p.$validators,function(a,b){f(b,null)}),q(p.$asyncValidators,function(a,b){f(b,null)})),f(a,w),w;return!0})()?d()?e():g(!1):g(!1)};this.$commitViewValue=function(){var a=p.$viewValue;g.cancel(v);if(p.$$lastCommittedViewValue!==a||""===a&&p.$$hasNativeValidators)p.$$updateEmptyClasses(a),p.$$lastCommittedViewValue=a,p.$pristine&&this.$setDirty(),this.$$parseAndValidate()};this.$$parseAndValidate=function(){var b=p.$$lastCommittedViewValue; -if(w=y(b)?void 0:!0)for(var c=0;ce||c.$isEmpty(b)||b.length<=e}}}}},Gc=function(){return{restrict:"A",require:"?ngModel",link:function(a,b,d,c){if(c){var e=0;d.$observe("minlength",function(a){e=X(a)||0;c.$validate()});c.$validators.minlength=function(a,b){return c.$isEmpty(b)||b.length>=e}}}}};v.angular.bootstrap?v.console&&console.log("WARNING: Tried to load angular more than once."):(ie(),ke(ea),ea.module("ngLocale",[],["$provide",function(a){function b(a){a+= -"";var b=a.indexOf(".");return-1==b?0:a.length-b-1}a.value("$locale",{DATETIME_FORMATS:{AMPMS:["AM","PM"],DAY:"Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "),ERANAMES:["Before Christ","Anno Domini"],ERAS:["BC","AD"],FIRSTDAYOFWEEK:6,MONTH:"January February March April May June July August September October November December".split(" "),SHORTDAY:"Sun Mon Tue Wed Thu Fri Sat".split(" "),SHORTMONTH:"Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),STANDALONEMONTH:"January February March April May June July August September October November December".split(" "), -WEEKENDRANGE:[5,6],fullDate:"EEEE, MMMM d, y",longDate:"MMMM d, y",medium:"MMM d, y h:mm:ss a",mediumDate:"MMM d, y",mediumTime:"h:mm:ss a","short":"M/d/yy h:mm a",shortDate:"M/d/yy",shortTime:"h:mm a"},NUMBER_FORMATS:{CURRENCY_SYM:"$",DECIMAL_SEP:".",GROUP_SEP:",",PATTERNS:[{gSize:3,lgSize:3,maxFrac:3,minFrac:0,minInt:1,negPre:"-",negSuf:"",posPre:"",posSuf:""},{gSize:3,lgSize:3,maxFrac:2,minFrac:2,minInt:1,negPre:"-\u00a4",negSuf:"",posPre:"\u00a4",posSuf:""}]},id:"en-us",localeID:"en_US",pluralCat:function(a, -c){var e=a|0,f=c;void 0===f&&(f=Math.min(b(a),3));Math.pow(10,f);return 1==e&&0==f?"one":"other"}})}]),B(v.document).ready(function(){ee(v.document,yc)}))})(window);!window.angular.$$csp().noInlineStyle&&window.angular.element(document.head).prepend(''); -//# sourceMappingURL=angular.min.js.map diff --git a/dhp-broker-application/.svn/pristine/21/21524255ca00347f464b04c8ff42c37a94fe092a.svn-base b/dhp-broker-application/.svn/pristine/21/21524255ca00347f464b04c8ff42c37a94fe092a.svn-base deleted file mode 100644 index 35f1d977..00000000 --- a/dhp-broker-application/.svn/pristine/21/21524255ca00347f464b04c8ff42c37a94fe092a.svn-base +++ /dev/null @@ -1,238 +0,0 @@ - - - 4.0.0 - - eu.dnetlib - literatureBrokerService - 0.0.1-SNAPSHOT - jar - - literatureBrokerService - Literature Broker Service - - - org.springframework.boot - spring-boot-starter-parent - 2.3.0.M4 - - - - UTF-8 - UTF-8 - 1.8 - 5.2.0.Final - 0.2.0 - - - - - - - org.springframework.boot - spring-boot-starter-web - - - - org.springframework.boot - spring-boot-configuration-processor - - - - org.springframework.boot - spring-boot-starter-amqp - - - - org.springframework.boot - spring-boot-starter-data-elasticsearch - - - - org.springframework.boot - spring-boot-starter-data-jpa - - - org.hibernate - hibernate-entitymanager - - - - - - org.springframework.boot - spring-boot-starter-test - test - - - - - com.h2database - h2 - - - - - javax.validation - validation-api - - - - org.apache.commons - commons-lang3 - - - - commons-codec - commons-codec - - - - commons-io - commons-io - 2.5 - - - - - javax.mail - mail - 1.4.7 - - - - - com.google.code.gson - gson - - - - - - io.springfox - springfox-swagger2 - 2.4.0 - - - - io.springfox - springfox-swagger-ui - 2.4.0 - - - - - eu.dnetlib - dnet-openaire-broker-common - [1.0.0-SNAPSHOT, 2.0.0) - - - - org.antlr - stringtemplate - 3.2.1 - - - - - io.prometheus - simpleclient_spring_boot - ${prometheus.version} - - - org.springframework - spring-web - - - - - io.prometheus - simpleclient_hotspot - ${prometheus.version} - - - io.prometheus - simpleclient_servlet - ${prometheus.version} - - - io.prometheus - simpleclient_spring_web - 0.3.0 - - - - - junit - junit - test - - - - org.mockito - mockito-all - 1.10.19 - test - - - - - - - org.springframework.boot - spring-boot-maven-plugin - - true - - - - - - - - dnet-deps - dnet-dependencies - http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps - default - - - dnet45-snapshots - D-Net 45 Snapshots - http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-snapshots - default - - true - - - false - - - - dnet45-releases - D-Net 45 Releases - http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-releases - default - - false - - - true - - - - spring-milestone - Spring Milestone Repository - https://repo.spring.io/milestone - - - - - - spring-milestone - Spring Milestone Repository - https://repo.spring.io/milestone - - - - diff --git a/dhp-broker-application/.svn/pristine/22/220dad6750fba4898e10b8d9b78ca46f4f774544.svn-base b/dhp-broker-application/.svn/pristine/22/220dad6750fba4898e10b8d9b78ca46f4f774544.svn-base deleted file mode 100644 index dad4f0af..00000000 --- a/dhp-broker-application/.svn/pristine/22/220dad6750fba4898e10b8d9b78ca46f4f774544.svn-base +++ /dev/null @@ -1,5 +0,0 @@ -/*! jQuery v1.12.3 | (c) jQuery Foundation | jquery.org/license */ -!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="1.12.3",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return e.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a){return n.each(this,a)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor()},push:g,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(n.isPlainObject(c)||(b=n.isArray(c)))?(b?(b=!1,f=a&&n.isArray(a)?a:[]):f=a&&n.isPlainObject(a)?a:{},g[d]=n.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray||function(a){return"array"===n.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){var b=a&&a.toString();return!n.isArray(a)&&b-parseFloat(b)+1>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!k.call(a,"constructor")&&!k.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(!l.ownFirst)for(b in a)return k.call(a,b);for(b in a);return void 0===b||k.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?i[j.call(a)]||"object":typeof a},globalEval:function(b){b&&n.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b){var c,d=0;if(s(a)){for(c=a.length;c>d;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):g.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(h)return h.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,g=0,h=[];if(s(a))for(d=a.length;d>g;g++)e=b(a[g],g,c),null!=e&&h.push(e);else for(g in a)e=b(a[g],g,c),null!=e&&h.push(e);return f.apply([],h)},guid:1,proxy:function(a,b){var c,d,f;return"string"==typeof b&&(f=a[b],b=a,a=f),n.isFunction(a)?(c=e.call(arguments,2),d=function(){return a.apply(b||this,c.concat(e.call(arguments)))},d.guid=a.guid=a.guid||n.guid++,d):void 0},now:function(){return+new Date},support:l}),"function"==typeof Symbol&&(n.fn[Symbol.iterator]=c[Symbol.iterator]),n.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(a,b){i["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=!!a&&"length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ga(),z=ga(),A=ga(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+M+"))|)"+L+"*\\]",O=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+N+")*)|.*)\\)|)",P=new RegExp(L+"+","g"),Q=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),R=new RegExp("^"+L+"*,"+L+"*"),S=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),T=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),U=new RegExp(O),V=new RegExp("^"+M+"$"),W={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,$=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,_=/[+~]/,aa=/'|\\/g,ba=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),ca=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},da=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(ea){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fa(a,b,d,e){var f,h,j,k,l,o,r,s,w=b&&b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==x&&9!==x&&11!==x)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==x&&(o=$.exec(a)))if(f=o[1]){if(9===x){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&&(j=w.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&&c.getElementsByClassName&&b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==x)w=b,s=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(aa,"\\$&"):b.setAttribute("id",k=u),r=g(a),h=r.length,l=V.test(k)?"#"+k:"[id='"+k+"']";while(h--)r[h]=l+" "+qa(r[h]);s=r.join(","),w=_.test(a)&&oa(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(Q,"$1"),b,d,e)}function ga(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ha(a){return a[u]=!0,a}function ia(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ja(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function ka(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function la(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function na(a){return ha(function(b){return b=+b,ha(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function oa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=fa.support={},f=fa.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fa.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ia(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ia(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ia(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return"undefined"!=typeof b.getElementsByClassName&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&&(ia(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ia(function(a){var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ia(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",O)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ka(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ka(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},fa.matches=function(a,b){return fa(a,null,null,b)},fa.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(T,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fa(b,n,null,[a]).length>0},fa.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fa.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fa.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fa.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fa.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fa.selectors={cacheLength:50,createPseudo:ha,match:W,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||"").replace(ba,ca),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fa.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fa.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&U.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ba,ca).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fa.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(P," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fa.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ha(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ha(function(a){var b=[],c=[],d=h(a.replace(Q,"$1"));return d[u]?ha(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ha(function(a){return function(b){return fa(a,b).length>0}}),contains:ha(function(a){return a=a.replace(ba,ca),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ha(function(a){return V.test(a||"")||fa.error("unsupported lang: "+a),a=a.replace(ba,ca).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Y.test(a.nodeName)},input:function(a){return X.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:na(function(){return[0]}),last:na(function(a,b){return[b-1]}),eq:na(function(a,b,c){return[0>c?c+b:c]}),even:na(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:na(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:na(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:na(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function ra(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j,k=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(j=b[u]||(b[u]={}),i=j[b.uniqueID]||(j[b.uniqueID]={}),(h=i[d])&&h[0]===w&&h[1]===f)return k[2]=h[2];if(i[d]=k,k[2]=a(b,c,g))return!0}}}function sa(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ta(a,b,c){for(var d=0,e=b.length;e>d;d++)fa(a,b[d],c);return c}function ua(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(c&&!c(f,d,e)||(g.push(f),j&&b.push(h)));return g}function va(a,b,c,d,e,f){return d&&!d[u]&&(d=va(d)),e&&!e[u]&&(e=va(e,f)),ha(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ta(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ua(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ua(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ua(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function wa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ra(function(a){return a===b},h,!0),l=ra(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[ra(sa(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return va(i>1&&sa(m),i>1&&qa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(Q,"$1"),c,e>i&&wa(a.slice(i,e)),f>e&&wa(a=a.slice(e)),f>e&&qa(a))}m.push(c)}return sa(m)}function xa(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=F.call(i));u=ua(u)}H.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&fa.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ha(f):f}return h=fa.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xa(e,d)),f.selector=a}return f},i=fa.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&&oa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qa(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&&oa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ia(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ia(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ja("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ia(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ja("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ia(function(a){return null==a.getAttribute("disabled")})||ja(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fa}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},v=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},w=n.expr.match.needsContext,x=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,y=/^.[^:#\[\.,]*$/;function z(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return n.inArray(a,b)>-1!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;e>b;b++)if(n.contains(d[b],this))return!0}));for(b=0;e>b;b++)n.find(a,d[b],c);return c=this.pushStack(e>1?n.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(z(this,a||[],!1))},not:function(a){return this.pushStack(z(this,a||[],!0))},is:function(a){return!!z(this,"string"==typeof a&&w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=n.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||A,"string"==typeof a){if(e="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:B.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&&n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}if(f=d.getElementById(e[2]),f&&f.parentNode){if(f.id!==e[2])return A.find(a);this.length=1,this[0]=f}return this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof c.ready?c.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};C.prototype=n.fn,A=n(d);var D=/^(?:parents|prev(?:Until|All))/,E={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a){var b,c=n(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(n.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=w.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?n.inArray(this[0],n(a)):n.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function F(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return u(a,"parentNode")},parentsUntil:function(a,b,c){return u(a,"parentNode",c)},next:function(a){return F(a,"nextSibling")},prev:function(a){return F(a,"previousSibling")},nextAll:function(a){return u(a,"nextSibling")},prevAll:function(a){return u(a,"previousSibling")},nextUntil:function(a,b,c){return u(a,"nextSibling",c)},prevUntil:function(a,b,c){return u(a,"previousSibling",c)},siblings:function(a){return v((a.parentNode||{}).firstChild,a)},children:function(a){return v(a.firstChild)},contents:function(a){return n.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(E[a]||(e=n.uniqueSort(e)),D.test(a)&&(e=e.reverse())),this.pushStack(e)}});var G=/\S+/g;function H(a){var b={};return n.each(a.match(G)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?H(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),h>=c&&h--}),this},has:function(a){return a?n.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=!0,c||j.disable(),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&&n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?e.call(arguments):d,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(d>1)for(i=new Array(d),j=new Array(d),k=new Array(d);d>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().progress(h(b,j,i)).done(h(b,k,c)).fail(g.reject):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(d,[n]),n.fn.triggerHandler&&(n(d).triggerHandler("ready"),n(d).off("ready"))))}});function J(){d.addEventListener?(d.removeEventListener("DOMContentLoaded",K),a.removeEventListener("load",K)):(d.detachEvent("onreadystatechange",K),a.detachEvent("onload",K))}function K(){(d.addEventListener||"load"===a.event.type||"complete"===d.readyState)&&(J(),n.ready())}n.ready.promise=function(b){if(!I)if(I=n.Deferred(),"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll)a.setTimeout(n.ready);else if(d.addEventListener)d.addEventListener("DOMContentLoaded",K),a.addEventListener("load",K);else{d.attachEvent("onreadystatechange",K),a.attachEvent("onload",K);var c=!1;try{c=null==a.frameElement&&d.documentElement}catch(e){}c&&c.doScroll&&!function f(){if(!n.isReady){try{c.doScroll("left")}catch(b){return a.setTimeout(f,50)}J(),n.ready()}}()}return I.promise(b)},n.ready.promise();var L;for(L in n(l))break;l.ownFirst="0"===L,l.inlineBlockNeedsLayout=!1,n(function(){var a,b,c,e;c=d.getElementsByTagName("body")[0],c&&c.style&&(b=d.createElement("div"),e=d.createElement("div"),e.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(e).appendChild(b),"undefined"!=typeof b.style.zoom&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",l.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(e))}),function(){var a=d.createElement("div");l.deleteExpando=!0;try{delete a.test}catch(b){l.deleteExpando=!1}a=null}();var M=function(a){var b=n.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b},N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(O,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}n.data(a,b,c)}else c=void 0; -}return c}function Q(a){var b;for(b in a)if(("data"!==b||!n.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function R(a,b,d,e){if(M(a)){var f,g,h=n.expando,i=a.nodeType,j=i?n.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||n.guid++:h),j[k]||(j[k]=i?{}:{toJSON:n.noop}),"object"!=typeof b&&"function"!=typeof b||(e?j[k]=n.extend(j[k],b):j[k].data=n.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[n.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[n.camelCase(b)])):f=g,f}}function S(a,b,c){if(M(a)){var d,e,f=a.nodeType,g=f?n.cache:a,h=f?a[n.expando]:n.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){n.isArray(b)?b=b.concat(n.map(b,n.camelCase)):b in d?b=[b]:(b=n.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!Q(d):!n.isEmptyObject(d))return}(c||(delete g[h].data,Q(g[h])))&&(f?n.cleanData([a],!0):l.deleteExpando||g!=g.window?delete g[h]:g[h]=void 0)}}}n.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?n.cache[a[n.expando]]:a[n.expando],!!a&&!Q(a)},data:function(a,b,c){return R(a,b,c)},removeData:function(a,b){return S(a,b)},_data:function(a,b,c){return R(a,b,c,!0)},_removeData:function(a,b){return S(a,b,!0)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=n.data(f),1===f.nodeType&&!n._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));n._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){n.data(this,a)}):arguments.length>1?this.each(function(){n.data(this,a,b)}):f?P(f,a,n.data(f,a)):void 0},removeData:function(a){return this.each(function(){n.removeData(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=n._data(a,b),c&&(!d||n.isArray(c)?d=n._data(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return n._data(a,c)||n._data(a,c,{empty:n.Callbacks("once memory").add(function(){n._removeData(a,b+"queue"),n._removeData(a,c)})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},Z=/^(?:checkbox|radio)$/i,$=/<([\w:-]+)/,_=/^$|\/(?:java|ecma)script/i,aa=/^\s+/,ba="abbr|article|aside|audio|bdi|canvas|data|datalist|details|dialog|figcaption|figure|footer|header|hgroup|main|mark|meter|nav|output|picture|progress|section|summary|template|time|video";function ca(a){var b=ba.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}!function(){var a=d.createElement("div"),b=d.createDocumentFragment(),c=d.createElement("input");a.innerHTML="
a",l.leadingWhitespace=3===a.firstChild.nodeType,l.tbody=!a.getElementsByTagName("tbody").length,l.htmlSerialize=!!a.getElementsByTagName("link").length,l.html5Clone="<:nav>"!==d.createElement("nav").cloneNode(!0).outerHTML,c.type="checkbox",c.checked=!0,b.appendChild(c),l.appendChecked=c.checked,a.innerHTML="",l.noCloneChecked=!!a.cloneNode(!0).lastChild.defaultValue,b.appendChild(a),c=d.createElement("input"),c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),a.appendChild(c),l.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked,l.noCloneEvent=!!a.addEventListener,a[n.expando]=1,l.attributes=!a.getAttribute(n.expando)}();var da={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:l.htmlSerialize?[0,"",""]:[1,"X
","
"]};da.optgroup=da.option,da.tbody=da.tfoot=da.colgroup=da.caption=da.thead,da.th=da.td;function ea(a,b){var c,d,e=0,f="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||n.nodeName(d,b)?f.push(d):n.merge(f,ea(d,b));return void 0===b||b&&n.nodeName(a,b)?n.merge([a],f):f}function fa(a,b){for(var c,d=0;null!=(c=a[d]);d++)n._data(c,"globalEval",!b||n._data(b[d],"globalEval"))}var ga=/<|&#?\w+;/,ha=/r;r++)if(g=a[r],g||0===g)if("object"===n.type(g))n.merge(q,g.nodeType?[g]:g);else if(ga.test(g)){i=i||p.appendChild(b.createElement("div")),j=($.exec(g)||["",""])[1].toLowerCase(),m=da[j]||da._default,i.innerHTML=m[1]+n.htmlPrefilter(g)+m[2],f=m[0];while(f--)i=i.lastChild;if(!l.leadingWhitespace&&aa.test(g)&&q.push(b.createTextNode(aa.exec(g)[0])),!l.tbody){g="table"!==j||ha.test(g)?""!==m[1]||ha.test(g)?0:i:i.firstChild,f=g&&g.childNodes.length;while(f--)n.nodeName(k=g.childNodes[f],"tbody")&&!k.childNodes.length&&g.removeChild(k)}n.merge(q,i.childNodes),i.textContent="";while(i.firstChild)i.removeChild(i.firstChild);i=p.lastChild}else q.push(b.createTextNode(g));i&&p.removeChild(i),l.appendChecked||n.grep(ea(q,"input"),ia),r=0;while(g=q[r++])if(d&&n.inArray(g,d)>-1)e&&e.push(g);else if(h=n.contains(g.ownerDocument,g),i=ea(p.appendChild(g),"script"),h&&fa(i),c){f=0;while(g=i[f++])_.test(g.type||"")&&c.push(g)}return i=null,p}!function(){var b,c,e=d.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(l[b]=c in a)||(e.setAttribute(c,"t"),l[b]=e.attributes[c].expando===!1);e=null}();var ka=/^(?:input|select|textarea)$/i,la=/^key/,ma=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,na=/^(?:focusinfocus|focusoutblur)$/,oa=/^([^.]*)(?:\.(.+)|)/;function pa(){return!0}function qa(){return!1}function ra(){try{return d.activeElement}catch(a){}}function sa(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)sa(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=qa;else if(!e)return a;return 1===f&&(g=e,e=function(a){return n().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=n.guid++)),a.each(function(){n.event.add(this,b,e,d,c)})}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=n.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return"undefined"==typeof n||a&&n.event.triggered===a.type?void 0:n.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(G)||[""],h=b.length;while(h--)f=oa.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=n.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=n.event.special[o]||{},l=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},i),(m=g[o])||(m=g[o]=[],m.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,l):m.push(l),n.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n.hasData(a)&&n._data(a);if(r&&(k=r.events)){b=(b||"").match(G)||[""],j=b.length;while(j--)if(h=oa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=m.length;while(f--)g=m[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(m.splice(f,1),g.selector&&m.delegateCount--,l.remove&&l.remove.call(a,g));i&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(k)&&(delete r.handle,n._removeData(a,"events"))}},trigger:function(b,c,e,f){var g,h,i,j,l,m,o,p=[e||d],q=k.call(b,"type")?b.type:b,r=k.call(b,"namespace")?b.namespace.split("."):[];if(i=m=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!na.test(q+n.event.triggered)&&(q.indexOf(".")>-1&&(r=q.split("."),q=r.shift(),r.sort()),h=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=r.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:n.makeArray(c,[b]),l=n.event.special[q]||{},f||!l.trigger||l.trigger.apply(e,c)!==!1)){if(!f&&!l.noBubble&&!n.isWindow(e)){for(j=l.delegateType||q,na.test(j+q)||(i=i.parentNode);i;i=i.parentNode)p.push(i),m=i;m===(e.ownerDocument||d)&&p.push(m.defaultView||m.parentWindow||a)}o=0;while((i=p[o++])&&!b.isPropagationStopped())b.type=o>1?j:l.bindType||q,g=(n._data(i,"events")||{})[b.type]&&n._data(i,"handle"),g&&g.apply(i,c),g=h&&i[h],g&&g.apply&&M(i)&&(b.result=g.apply(i,c),b.result===!1&&b.preventDefault());if(b.type=q,!f&&!b.isDefaultPrevented()&&(!l._default||l._default.apply(p.pop(),c)===!1)&&M(e)&&h&&e[q]&&!n.isWindow(e)){m=e[h],m&&(e[h]=null),n.event.triggered=q;try{e[q]()}catch(s){}n.event.triggered=void 0,m&&(e[h]=m)}return b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,d,f,g,h=[],i=e.call(arguments),j=(n._data(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())a.rnamespace&&!a.rnamespace.test(g.namespace)||(a.handleObj=g,a.data=g.data,d=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==d&&(a.result=d)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&("click"!==a.type||isNaN(a.button)||a.button<1))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>-1:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]","i"),va=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,wa=/\s*$/g,Aa=ca(d),Ba=Aa.appendChild(d.createElement("div"));function Ca(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function Da(a){return a.type=(null!==n.find.attr(a,"type"))+"/"+a.type,a}function Ea(a){var b=ya.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Fa(a,b){if(1===b.nodeType&&n.hasData(a)){var c,d,e,f=n._data(a),g=n._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)n.event.add(b,c,h[c][d])}g.data&&(g.data=n.extend({},g.data))}}function Ga(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!l.noCloneEvent&&b[n.expando]){e=n._data(b);for(d in e.events)n.removeEvent(b,d,e.handle);b.removeAttribute(n.expando)}"script"===c&&b.text!==a.text?(Da(b).text=a.text,Ea(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),l.html5Clone&&a.innerHTML&&!n.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&Z.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:"input"!==c&&"textarea"!==c||(b.defaultValue=a.defaultValue)}}function Ha(a,b,c,d){b=f.apply([],b);var e,g,h,i,j,k,m=0,o=a.length,p=o-1,q=b[0],r=n.isFunction(q);if(r||o>1&&"string"==typeof q&&!l.checkClone&&xa.test(q))return a.each(function(e){var f=a.eq(e);r&&(b[0]=q.call(this,e,f.html())),Ha(f,b,c,d)});if(o&&(k=ja(b,a[0].ownerDocument,!1,a,d),e=k.firstChild,1===k.childNodes.length&&(k=e),e||d)){for(i=n.map(ea(k,"script"),Da),h=i.length;o>m;m++)g=k,m!==p&&(g=n.clone(g,!0,!0),h&&n.merge(i,ea(g,"script"))),c.call(a[m],g,m);if(h)for(j=i[i.length-1].ownerDocument,n.map(i,Ea),m=0;h>m;m++)g=i[m],_.test(g.type||"")&&!n._data(g,"globalEval")&&n.contains(j,g)&&(g.src?n._evalUrl&&n._evalUrl(g.src):n.globalEval((g.text||g.textContent||g.innerHTML||"").replace(za,"")));k=e=null}return a}function Ia(a,b,c){for(var d,e=b?n.filter(b,a):a,f=0;null!=(d=e[f]);f++)c||1!==d.nodeType||n.cleanData(ea(d)),d.parentNode&&(c&&n.contains(d.ownerDocument,d)&&fa(ea(d,"script")),d.parentNode.removeChild(d));return a}n.extend({htmlPrefilter:function(a){return a.replace(va,"<$1>")},clone:function(a,b,c){var d,e,f,g,h,i=n.contains(a.ownerDocument,a);if(l.html5Clone||n.isXMLDoc(a)||!ua.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(Ba.innerHTML=a.outerHTML,Ba.removeChild(f=Ba.firstChild)),!(l.noCloneEvent&&l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(d=ea(f),h=ea(a),g=0;null!=(e=h[g]);++g)d[g]&&Ga(e,d[g]);if(b)if(c)for(h=h||ea(a),d=d||ea(f),g=0;null!=(e=h[g]);g++)Fa(e,d[g]);else Fa(a,f);return d=ea(f,"script"),d.length>0&&fa(d,!i&&ea(a,"script")),d=h=e=null,f},cleanData:function(a,b){for(var d,e,f,g,h=0,i=n.expando,j=n.cache,k=l.attributes,m=n.event.special;null!=(d=a[h]);h++)if((b||M(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)m[e]?n.event.remove(d,e):n.removeEvent(d,e,g.handle);j[f]&&(delete j[f],k||"undefined"==typeof d.removeAttribute?d[i]=void 0:d.removeAttribute(i),c.push(f))}}}),n.fn.extend({domManip:Ha,detach:function(a){return Ia(this,a,!0)},remove:function(a){return Ia(this,a)},text:function(a){return Y(this,function(a){return void 0===a?n.text(this):this.empty().append((this[0]&&this[0].ownerDocument||d).createTextNode(a))},null,a,arguments.length)},append:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.appendChild(a)}})},prepend:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&n.cleanData(ea(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&n.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return Y(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(ta,""):void 0;if("string"==typeof a&&!wa.test(a)&&(l.htmlSerialize||!ua.test(a))&&(l.leadingWhitespace||!aa.test(a))&&!da[($.exec(a)||["",""])[1].toLowerCase()]){a=n.htmlPrefilter(a);try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ea(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=[];return Ha(this,arguments,function(b){var c=this.parentNode;n.inArray(this,a)<0&&(n.cleanData(ea(this)),c&&c.replaceChild(b,this))},a)}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=0,e=[],f=n(a),h=f.length-1;h>=d;d++)c=d===h?this:this.clone(!0),n(f[d])[b](c),g.apply(e,c.get());return this.pushStack(e)}});var Ja,Ka={HTML:"block",BODY:"block"};function La(a,b){var c=n(b.createElement(a)).appendTo(b.body),d=n.css(c[0],"display");return c.detach(),d}function Ma(a){var b=d,c=Ka[a];return c||(c=La(a,b),"none"!==c&&c||(Ja=(Ja||n("